Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cspell: disable progress and convert config to YAML #2924

Merged
merged 1 commit into from Feb 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
68 changes: 0 additions & 68 deletions cspell.json

This file was deleted.

59 changes: 59 additions & 0 deletions cspell.yml
@@ -0,0 +1,59 @@
language: en
ignorePaths:
# Copied from '.gitignore', please keep it in sync.
- .eslintcache
- node_modules
- coverage
- npmDist
- denoDist
- npm
- deno

# Excluded from spelling check
- cspell.yml
- package.json
- package-lock.json
- tsconfig.json
- benchmark/github-schema.graphql
- benchmark/github-schema.json
overrides:
- filename: '**/docs/APIReference-*.md'
ignoreRegExpList: ['/href="[^"]*"/']

words:
- graphiql
- sublinks
- subcommand
- transpilation
- instanceof
- flowtype
- noconcurrent

# Different names used inside tests
- Skywalker
- Leia
- Wilhuff
- Tarkin
- Artoo
- Threepio
- Odie
- Odie's
- Damerau
- Alderaan
- Tatooine
- astromech

# TODO: contribute upstream
- deno
- codecov

# TODO: remove bellow words
- QLID # GraphQLID
- QLJS # GraphQLJS
- iface
- Reqs
- ORing
- FXXX
- XXXF
- bfnrt
- wrds
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -36,7 +36,7 @@
"testonly:cover": "nyc npm run testonly",
"prettier": "prettier --write --list-different .",
"prettier:check": "prettier --check .",
"check:spelling": "cspell '**/*'",
"check:spelling": "cspell --no-progress '**/*'",
"check:integrations": "mocha --full-trace integrationTests/*-test.js",
"build:npm": "node resources/build-npm.js",
"build:deno": "node resources/build-deno.js",
Expand Down