Remove spell-checker

This commit is contained in:
Thomas Hughes 2020-06-26 08:35:36 -05:00
parent 910901a3bb
commit 063e48d9c4
No known key found for this signature in database
GPG key ID: B2D8646423EF5814
17 changed files with 0 additions and 347 deletions

View file

@ -1,7 +0,0 @@
musl
nvq
rdoc
setuptools
uninstall
wget
WORKDIR

View file

@ -1 +0,0 @@
alnum

View file

@ -1,3 +0,0 @@
noqa
toc
todo

View file

@ -1,48 +0,0 @@
abcd
bangbang
bento
bullettrain
busstop
cn
couplekiss
dango
dvd
facepunch
feelsgood
finnadie
fuelpump
gb
goberserk
godmode
gua
hankey
heartpulse
hocho
hurtrealbad
icecream
inbox
iphone
izakaya
jp
keycap
mega
minidisc
moyai
neckbeard
octocat
oden
ramen
ru
scorpius
shipit
snowboarder
tada
tanabata
thumbsdown
thumbsup
tophat
trollface
tshirt
uk
vhs
zzz

View file

@ -1,2 +0,0 @@
configcheck
nohup

View file

@ -1,2 +0,0 @@
args
pid

View file

@ -1 +0,0 @@
initialconfig

View file

@ -1,2 +0,0 @@
ldapconfig
openldap

View file

@ -1,8 +0,0 @@
cov
eslintcache
jscoverage
jspm
nyc
tgz
typings
wscript

View file

@ -1,7 +0,0 @@
cw
Mstrict
printenv
rcfile
tf
tolower
whoami

View file

@ -1,8 +0,0 @@
Autobots
basemap
cas
cn
crt
rsa
tlsv
tmp

View file

@ -1,4 +0,0 @@
dotcom
identicons
oauth
timezone

View file

@ -1,158 +0,0 @@
admiralawkbar
ansible
api
apk
aws
baz
beardofedu
certs
changeset
codebase
CODEOWNERS
coffeelint
coffeescript
collectd
concat
config
configs
css
dest
devops
dirname
dockerfile
dockerfilelint
dockerfilelintrc
dotenv
elif
emails
entrypoint
Errorf
eslint
eslintrc
filetype
func
gcc
getenv
ghe
GHES
ghl
github
globals
golang
golangci
Google
gpg
gql
Grafana
graphql
grep
homepage
hookshot
hostname
hostvars
http
https
hubot
idp
ip
Jani
javascript
jq
json
jsonlint
jwiebalk
JWT
ldap
len
lfs
libxml
linted
linting
loadbalancer
localhost
loglevel
markdownlint
millis
mkdir
nodejs
NONINFRINGEMENT
noproxy
noreply
npm
ntp
opensource
opensourcefriday
perl
plugin
posix
pprint
Prego
prettyjson
Println
probot
px
py
pylint
rb
readlines
README
regex
regexp
resqued
rgba
rien
Rubo
rubocop
saml
screenshots
shellcheck
signup
smtp
snmp
socio
splunk
src
ssh
ssl
sso
stackoverflow
stacktraces
standardjs
stringify
stylelint
stylelintrc
subdomain
subfolders
sudo
sys
syslog
taz
terraform
tflint
tileserver
tls
typeof
ubuntu
udp
uid
undef
uniq
uri
url
urlencode
username
usr
utils
Vape
vnd
webhook
wiki
wildcards
workflow
xml
xmllint
yaml
yamllint
yml
yq
zkoppert

View file

@ -1,2 +0,0 @@
^\.github/linters/
^TEMPLATES/\.\S*

View file

@ -1,39 +0,0 @@
cdxml
changelog
chmod
Dockerhub
EOL
GPR
IAm
icu
jre
kotlin
krb
ktlint
libgcc
libintl
libssl
libstdc
linux
lttng
microsoft
ncurses
nq
openjdk
php
powershell
println
psd
psm
psrc
pssc
psscriptanalyzer
pwsh
rcu
rhc
ry
terminfo
tzdata
userspace
xargs
zlib

View file

@ -1,7 +0,0 @@
https?:\S*
# ignore long runs of a single character:
([A-Za-z])\1{3,}
# Any CLI args (-xzf -aef)
\ -\w+\b
# Hex colors (dummy group to not be treated as comment)
(?:#)([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})

View file

@ -1,48 +0,0 @@
---
####################
## Check spelling ##
####################
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
name: Spell checking
#############################
# Start the job on all push #
#############################
on:
push:
branches-ignore:
- 'master'
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Spell checking
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2
#############################
# Run check spelling action #
#############################
- name: Check spelling
uses: check-spelling/check-spelling@0.0.16-alpha
with:
bucket: .github/actions
project: spelling
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}