Skip to content

Commit 8d79053

Browse files
committed
🔧 config(.depcheckrc.json): added two devDependencies to ignore
ignoring two devDependencies typedoc-plugin-extras and gitmoji-parser-opts
1 parent 999b432 commit 8d79053

File tree

4 files changed

+21
-20
lines changed

4 files changed

+21
-20
lines changed

Diff for: .depcheckrc.json

+2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
22
"ignores": [
3+
"gitmoji-parser-opts",
34
"jest-snapshot",
45
"quick-lint-js",
56
"prettier-plugin-organize-imports",
67
"typedoc",
78
"typedoc-plugin-coverage",
9+
"typedoc-plugin-extras",
810
"@semantic-release/changelog",
911
"@semantic-release/git",
1012
"@semantic-release/github",

Diff for: .github/workflows/depcheck.yml

-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@ jobs:
3232

3333
- name: 🔍🔗 Check Project Unused Dependencies
3434
run: bun run depcheck:ci
35-
#Need to run dependency-version-badge and edit the readme file here as well.

Diff for: .github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232

3333
- name: 🏗️ 📝 Build Project Documentation
3434
run: bun run docs
35-
#Need to run dependency-version-badge and edit the readme file here as well.
35+
#TODO: Need to run dependency-version-badge and edit the readme file here as well.

Diff for: package.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -140,80 +140,80 @@
140140
".eslintignore",
141141
".eslintrc.json",
142142
".gitignore",
143-
".prettierignore",
144143
".prettierrc.json",
145-
"license",
144+
".prettierignore",
146145
"readme-api.md",
147146
"readme.md",
148147
"commit-template.hbs",
149148
"commitlint.config.ts",
149+
"license",
150150
"default-template.hbs",
151151
"emojitypescommitmessages.txt",
152152
"jest.config.json",
153153
"package-lock.json",
154154
"package.json",
155155
"release.config.ts",
156156
"renovate.json",
157-
"tsconfig.json",
158157
"typedoc.json",
158+
"tsconfig.json",
159159
".vscode/settings.json",
160160
"public/.gitkeep",
161161
"repo_management_files/branchnamingconventions.md",
162+
"repo_management_files/cz-emoji-type-extract.js",
162163
"repo_management_files/cz-type-extract.js",
163164
"repo_management_files/directorystructuredocument.md",
164165
"repo_management_files/extractfilescopes.js",
165-
"repo_management_files/cz-emoji-type-extract.js",
166-
"repo_management_files/gitmojisemver-extract.js",
167166
"repo_management_files/genericcommitmessages.md",
167+
"repo_management_files/gitmojisemver-extract.js",
168+
"repo_management_files/issues.sh",
168169
"repo_management_files/labels.sh",
169170
"repo_management_files/packagejsondocument.md",
170-
"repo_management_files/issues.sh",
171171
".github/dependabot.yml",
172172
".github/workflows/build.yml",
173173
".github/workflows/depcheck.yml",
174174
".github/workflows/docs.yml",
175175
".github/workflows/lint.yml",
176+
".github/workflows/release.yml",
176177
".github/workflows/pr.yml",
177178
".github/workflows/test.yml",
178-
".github/workflows/release.yml",
179+
".husky/commit-msg",
179180
".husky/pre-commit",
180181
".husky/prepare-commit-msg",
181-
".husky/commit-msg",
182182
".husky/_/.gitignore",
183183
".husky/_/applypatch-msg",
184184
".husky/_/commit-msg",
185185
".husky/_/h",
186+
".husky/_/post-applypatch",
186187
".husky/_/post-checkout",
187188
".husky/_/post-commit",
188189
".husky/_/post-merge",
189190
".husky/_/post-rewrite",
190191
".husky/_/pre-applypatch",
191-
".husky/_/post-applypatch",
192192
".husky/_/pre-auto-gc",
193-
".husky/_/pre-commit",
194193
".husky/_/pre-push",
194+
".husky/_/pre-commit",
195195
".husky/_/pre-rebase",
196196
".husky/_/prepare-commit-msg",
197197
"src/app.ts",
198198
"src/bin/.gitkeep",
199-
"src/models/.gitkeep",
200-
"src/middleware/.gitkeep",
201-
"src/controllers/.gitkeep",
202199
"src/configs/.gitkeep",
200+
"src/models/.gitkeep",
201+
"src/plugins/.gitkeep",
203202
"src/utils/.gitkeep",
204203
"src/routes/.gitkeep",
205-
"src/plugins/.gitkeep",
204+
"src/controllers/.gitkeep",
205+
"src/middleware/.gitkeep",
206206
"src/views/.gitkeep",
207207
"test/.gitkeep",
208208
"test/app.test.ts",
209209
"test/bin/.gitkeep",
210-
"test/controllers/.gitkeep",
211210
"test/configs/.gitkeep",
212-
"test/routes/.gitkeep",
213-
"test/plugins/.gitkeep",
214-
"test/models/.gitkeep",
211+
"test/controllers/.gitkeep",
215212
"test/middleware/.gitkeep",
213+
"test/plugins/.gitkeep",
214+
"test/routes/.gitkeep",
216215
"test/utils/.gitkeep",
216+
"test/models/.gitkeep",
217217
"test/views/.gitkeep"
218218
],
219219
"questions": {

0 commit comments

Comments
 (0)