Skip to content

Commit b90bc84

Browse files
committed
🚨 lint(.vscode/settings.json): adding repo specific words to workspace cSpell.words array
added flagged words that are specific to the repository and are correctly spelt acronyms or file names
1 parent 7ce4a3f commit b90bc84

File tree

3 files changed

+33
-17
lines changed

3 files changed

+33
-17
lines changed

.vscode/settings.json

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,41 @@
11
{
22
"cSpell.words": [
33
"ACDMRTUXB",
4+
"applypatch",
5+
"auditchecklist",
46
"automerge",
57
"bento",
8+
"branchnamingconventions",
9+
"bunx",
610
"cacache",
711
"commitlint",
812
"compat",
913
"debendabot",
1014
"depcheckrc",
15+
"devdeps",
16+
"directorystructuredocument",
17+
"errorswarningsresolutions",
1118
"esdoc",
1219
"esdocs",
20+
"extractfilescopes",
21+
"fileswithgitmojis",
22+
"genericcommitmessages",
1323
"gitmoji",
1424
"gitmojis",
25+
"gitmojisemver",
1526
"iname",
27+
"Jebarpg",
28+
"lockb",
1629
"modclean",
30+
"outdir",
1731
"oxlint",
32+
"packagejsondocument",
1833
"quickfix",
1934
"shieldio",
2035
"Shortcode",
2136
"snyk",
22-
"upgradeps"
37+
"upgradeps",
38+
"wslview"
2339
],
2440
"spellright.language": ["en"],
2541
"spellright.documentTypes": ["latex", "plaintext"]

package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -142,23 +142,23 @@
142142
".eslintignore",
143143
".eslintrc.json",
144144
".gitignore",
145-
".prettierignore",
146145
".prettierrc.json",
146+
".prettierignore",
147147
"license",
148-
"readme-api.md",
149148
"readme.md",
150149
"commit-template.hbs",
151150
"commitlint.config.ts",
152-
"default-template.hbs",
151+
"readme-api.md",
153152
"jest.config.json",
153+
"default-template.hbs",
154154
"package-lock.json",
155155
"package.json",
156156
"release.config.ts",
157157
"renovate.json",
158158
"tsconfig.json",
159159
"typedoc.json",
160-
".vscode/settings.json",
161160
"public/.gitkeep",
161+
".vscode/settings.json",
162162
"repo_management_files/auditchecklist.md",
163163
"repo_management_files/branchnamingconventions.md",
164164
"repo_management_files/cz-emoji-template-extract.js",
@@ -168,20 +168,20 @@
168168
"repo_management_files/errorswarningsresolutions.md",
169169
"repo_management_files/extractfilescopes.js",
170170
"repo_management_files/fileswithgitmojis.md",
171-
"repo_management_files/gitmojisemver-extract.js",
172171
"repo_management_files/genericcommitmessages.md",
172+
"repo_management_files/gitmojisemver-extract.js",
173+
"repo_management_files/issues.sh",
173174
"repo_management_files/labels.sh",
174175
"repo_management_files/packagejsondocument.md",
175176
"repo_management_files/usefultipsandtricks.md",
176-
"repo_management_files/issues.sh",
177177
".github/dependabot.yml",
178178
".github/workflows/build.yml",
179-
".github/workflows/depcheck.yml",
180-
".github/workflows/lint.yml",
181179
".github/workflows/docs.yml",
180+
".github/workflows/lint.yml",
182181
".github/workflows/pr.yml",
183182
".github/workflows/release.yml",
184183
".github/workflows/test.yml",
184+
".github/workflows/depcheck.yml",
185185
".husky/commit-msg",
186186
".husky/pre-commit",
187187
".husky/prepare-commit-msg",
@@ -191,35 +191,35 @@
191191
".husky/_/h",
192192
".husky/_/post-applypatch",
193193
".husky/_/post-checkout",
194-
".husky/_/post-commit",
195-
".husky/_/post-merge",
196194
".husky/_/post-rewrite",
195+
".husky/_/post-commit",
197196
".husky/_/pre-applypatch",
198197
".husky/_/pre-auto-gc",
198+
".husky/_/post-merge",
199199
".husky/_/pre-commit",
200200
".husky/_/pre-push",
201201
".husky/_/pre-rebase",
202202
".husky/_/prepare-commit-msg",
203203
"src/app.ts",
204204
"src/bin/.gitkeep",
205-
"src/controllers/.gitkeep",
206205
"src/configs/.gitkeep",
207-
"src/middleware/.gitkeep",
208-
"src/models/.gitkeep",
206+
"src/controllers/.gitkeep",
209207
"src/plugins/.gitkeep",
210208
"src/routes/.gitkeep",
209+
"src/middleware/.gitkeep",
211210
"src/utils/.gitkeep",
212211
"src/views/.gitkeep",
212+
"src/models/.gitkeep",
213213
"test/.gitkeep",
214214
"test/app.test.ts",
215215
"test/bin/.gitkeep",
216216
"test/configs/.gitkeep",
217217
"test/middleware/.gitkeep",
218+
"test/controllers/.gitkeep",
218219
"test/models/.gitkeep",
219220
"test/plugins/.gitkeep",
220-
"test/controllers/.gitkeep",
221-
"test/routes/.gitkeep",
222221
"test/utils/.gitkeep",
222+
"test/routes/.gitkeep",
223223
"test/views/.gitkeep"
224224
],
225225
"questions": {

repo_management_files/auditChecklist.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ NOTE: You can click `file/paths` to open that file and referenced arrays to open
3333
- [ ] [`repo_management_files/branchNamingConventions.md`](./branchNamingConventions.md) Make sure the reference to [`package.json 'validate-branch-name'`](../package.json#L128) is still on the correct line number in the link, both here and in the `branchNamingConventions` file.
3434
- [ ] [`.depcheckrc.json`](../.depcheckrc.json)
3535
- [ ] Check to make sure all the listed [`ignores`](../.depcheckrc.json#L2) still are valid or need removing. Do this by checking your [`package.json 'dependencies'`](../package.json#L224) and [`package.json 'devDependencies'`](../package.json#L229) to see if they still exist in your projects dependencies.
36-
- [ ] [`commitlint.config.ts`](../commitlint.config.ts)
36+
- [ ] [`commitlint.config.ts`](../commitlint.config.ts)
3737
- [ ] Make sure the [`commitlint.config.ts 'typeEnum'`](../commitlint.config.ts#L32) is updated with the output of the [`repo_management_files/cz-type-extract.js`](./cz-type-extract.js) script.
3838
- [ ] [`package.json 'keywords'`](../package.json#L5)
3939
- [ ] Make sure the 'keywords' is still reflective of your project.

0 commit comments

Comments
 (0)