Skip to content

Commit b0a1ae3

Browse files
committed
✨ feature(repo_management_files/extractfilescopes.js): created an automatic scope updater script
adds new scopes of all the non auto generated files in the repo
1 parent f61325c commit b0a1ae3

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

commitlint.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default {
1818
// 'always',
1919
// 100,
2020
// ] as const,
21-
'header-max-length': [RuleConfigSeverity.Error, 'always', 100] as const,
21+
'header-max-length': [RuleConfigSeverity.Error, 'always', 200] as const,
2222
'header-trim': [RuleConfigSeverity.Error, 'always'] as const,
2323
'subject-case': [
2424
RuleConfigSeverity.Error,

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@
135135
".eslintrc.json",
136136
".gitignore",
137137
".prettierignore",
138+
".prettierrc.json",
138139
"license",
139140
"readme.md",
140-
".prettierrc.json",
141141
"commit-template.hbs",
142142
"commitlint.config.ts",
143143
"default-template.hbs",
@@ -146,63 +146,63 @@
146146
"package.json",
147147
"release.config.ts",
148148
"renovate.json",
149-
"tsconfig.json",
150149
"typedoc.json",
151-
".vscode/settings.json",
150+
"tsconfig.json",
152151
"public/.gitkeep",
152+
".vscode/settings.json",
153153
"repo_management_files/cz-emoji-type-extract.js",
154154
"repo_management_files/cz-type-extract.js",
155155
"repo_management_files/directorystructuredocument.md",
156156
"repo_management_files/extractfilescopes.js",
157157
"repo_management_files/genericcommitmessages.md",
158-
"repo_management_files/issues.sh",
159-
"repo_management_files/labels.sh",
160158
"repo_management_files/gitmojisemver-extract.js",
159+
"repo_management_files/issues.sh",
161160
"repo_management_files/packagejsondocument.md",
161+
"repo_management_files/labels.sh",
162162
".github/dependabot.yml",
163163
".github/workflows/build.yml",
164+
".github/workflows/lint.yml",
164165
".github/workflows/docs.yml",
165166
".github/workflows/pr.yml",
166-
".github/workflows/lint.yml",
167-
".github/workflows/release.yml",
168167
".github/workflows/test.yml",
168+
".github/workflows/release.yml",
169169
".husky/commit-msg",
170170
".husky/prepare-commit-msg",
171171
".husky/_/.gitignore",
172172
".husky/_/applypatch-msg",
173-
".husky/_/commit-msg",
174173
".husky/_/h",
175-
".husky/_/post-applypatch",
174+
".husky/_/commit-msg",
176175
".husky/_/post-checkout",
177-
".husky/_/post-merge",
176+
".husky/_/post-applypatch",
178177
".husky/_/post-commit",
179178
".husky/_/post-rewrite",
179+
".husky/_/pre-applypatch",
180180
".husky/_/pre-auto-gc",
181181
".husky/_/pre-commit",
182-
".husky/_/pre-push",
183-
".husky/_/pre-applypatch",
184182
".husky/_/pre-rebase",
183+
".husky/_/pre-push",
185184
".husky/_/prepare-commit-msg",
185+
".husky/_/post-merge",
186186
"test/.gitkeep",
187187
"test/bin/.gitkeep",
188188
"test/configs/.gitkeep",
189189
"test/controllers/.gitkeep",
190-
"test/routes/.gitkeep",
191190
"test/plugins/.gitkeep",
191+
"test/views/.gitkeep",
192192
"test/utils/.gitkeep",
193193
"test/models/.gitkeep",
194+
"test/routes/.gitkeep",
194195
"test/middleware/.gitkeep",
195-
"test/views/.gitkeep",
196196
"src/app.ts",
197-
"src/configs/.gitkeep",
197+
"src/controllers/.gitkeep",
198198
"src/bin/.gitkeep",
199+
"src/configs/.gitkeep",
199200
"src/middleware/.gitkeep",
200-
"src/plugins/.gitkeep",
201-
"src/controllers/.gitkeep",
201+
"src/models/.gitkeep",
202202
"src/utils/.gitkeep",
203-
"src/views/.gitkeep",
204203
"src/routes/.gitkeep",
205-
"src/models/.gitkeep"
204+
"src/views/.gitkeep",
205+
"src/plugins/.gitkeep"
206206
],
207207
"questions": {
208208
"scope": "Specify a scope: "

0 commit comments

Comments
 (0)