Skip to content

Commit 4e314be

Browse files
cspell: disable progress and convert config to YAML (#2924)
1 parent 8168a9a commit 4e314be

File tree

3 files changed

+60
-69
lines changed

3 files changed

+60
-69
lines changed

cspell.json

Lines changed: 0 additions & 68 deletions
This file was deleted.

cspell.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
language: en
2+
ignorePaths:
3+
# Copied from '.gitignore', please keep it in sync.
4+
- .eslintcache
5+
- node_modules
6+
- coverage
7+
- npmDist
8+
- denoDist
9+
- npm
10+
- deno
11+
12+
# Excluded from spelling check
13+
- cspell.yml
14+
- package.json
15+
- package-lock.json
16+
- tsconfig.json
17+
- benchmark/github-schema.graphql
18+
- benchmark/github-schema.json
19+
overrides:
20+
- filename: '**/docs/APIReference-*.md'
21+
ignoreRegExpList: ['/href="[^"]*"/']
22+
23+
words:
24+
- graphiql
25+
- sublinks
26+
- subcommand
27+
- transpilation
28+
- instanceof
29+
- flowtype
30+
- noconcurrent
31+
32+
# Different names used inside tests
33+
- Skywalker
34+
- Leia
35+
- Wilhuff
36+
- Tarkin
37+
- Artoo
38+
- Threepio
39+
- Odie
40+
- Odie's
41+
- Damerau
42+
- Alderaan
43+
- Tatooine
44+
- astromech
45+
46+
# TODO: contribute upstream
47+
- deno
48+
- codecov
49+
50+
# TODO: remove bellow words
51+
- QLID # GraphQLID
52+
- QLJS # GraphQLJS
53+
- iface
54+
- Reqs
55+
- ORing
56+
- FXXX
57+
- XXXF
58+
- bfnrt
59+
- wrds

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"testonly:cover": "nyc npm run testonly",
3737
"prettier": "prettier --write --list-different .",
3838
"prettier:check": "prettier --check .",
39-
"check:spelling": "cspell '**/*'",
39+
"check:spelling": "cspell --no-progress '**/*'",
4040
"check:integrations": "mocha --full-trace integrationTests/*-test.js",
4141
"build:npm": "node resources/build-npm.js",
4242
"build:deno": "node resources/build-deno.js",

0 commit comments

Comments
 (0)