commit-sheriff 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +77 -52
- package/bin/commit-sheriff.js +25 -9
- package/package.json +1 -31
- package/templates/commit-msg +8 -3
- package/templates/eslintrc.module-boundaries.js +16 -5
- package/templates/pre-commit +8 -3
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ npx commit-sheriff add-eslint-react # optional — TypeScript/React + module-b
|
|
|
20
20
|
- [What `init` does](#what-init-does)
|
|
21
21
|
- [Commit message format](#commit-message-format)
|
|
22
22
|
- [Branch name format](#branch-name-format)
|
|
23
|
-
- [Configuration (`
|
|
23
|
+
- [Configuration (`.commitsheriffrc.json`)](#configuration-commitsheriffrcjson)
|
|
24
24
|
- [`useModules`](#usemodules)
|
|
25
25
|
- [`project`](#project)
|
|
26
26
|
- [`modules`](#modules)
|
|
@@ -38,7 +38,7 @@ npx commit-sheriff add-eslint-react # optional — TypeScript/React + module-b
|
|
|
38
38
|
|
|
39
39
|
## Why
|
|
40
40
|
|
|
41
|
-
Different repos tend to drift into different commit-message and branch-naming conventions, which makes changelogs, ticket tracing, and code review harder. `commit-sheriff` gives every project the same two git hooks (`commit-msg`, `pre-commit`) driven by one small
|
|
41
|
+
Different repos tend to drift into different commit-message and branch-naming conventions, which makes changelogs, ticket tracing, and code review harder. `commit-sheriff` gives every project the same two git hooks (`commit-msg`, `pre-commit`) driven by one small root-level `.commitsheriffrc.json` config file, so:
|
|
42
42
|
|
|
43
43
|
- Every commit message references a ticket and a change type.
|
|
44
44
|
- Every branch name reflects the same ticket and change type.
|
|
@@ -74,12 +74,12 @@ Run this once per repo, from the repo root (where `package.json` lives). This wo
|
|
|
74
74
|
|
|
75
75
|
1. Initializes Husky if it isn't already set up (runs `npx husky init` when `.husky/_/husky.sh` is missing).
|
|
76
76
|
2. Copies the hook scripts into `.husky/commit-msg` and `.husky/pre-commit` (overwriting any existing files with those exact names) and makes them executable.
|
|
77
|
-
3.
|
|
77
|
+
3. Creates a default `.commitsheriffrc.json` file at the repo root **only if one doesn't already exist** (and only if there's no legacy `package.json` → `commitGuard` block either — see [Configuration](#configuration-commitsheriffrcjson)) — re-running `init` never overwrites your customized config.
|
|
78
78
|
4. Adds a default `lint-staged` block to `package.json` **only if one doesn't already exist**.
|
|
79
79
|
5. Adds a `"prepare": "husky"` npm script if missing, so hooks are (re)installed automatically after `npm install`.
|
|
80
80
|
6. If `react` and `typescript` are both present in your `dependencies`/`devDependencies`, also runs [`add-eslint-react`](#advanced-eslint-module-boundary-template-typescriptreact) automatically. Otherwise it's skipped and you can add it manually later.
|
|
81
81
|
|
|
82
|
-
Re-running `npx commit-sheriff init` later (e.g. after updating the package) is safe: it refreshes the two hook scripts to the latest version but leaves your `
|
|
82
|
+
Re-running `npx commit-sheriff init` later (e.g. after updating the package) is safe: it refreshes the two hook scripts to the latest version but leaves your `.commitsheriffrc.json` / `lint-staged` config alone.
|
|
83
83
|
|
|
84
84
|
## Commit message format
|
|
85
85
|
|
|
@@ -140,46 +140,48 @@ improvement/PRO-PROJ-609-correct-husky-pre-commit-validation # only with useMo
|
|
|
140
140
|
|
|
141
141
|
The check is skipped on a detached `HEAD` (e.g. mid-rebase, mid-cherry-pick), so it never blocks those operations.
|
|
142
142
|
|
|
143
|
-
## Configuration (`
|
|
143
|
+
## Configuration (`.commitsheriffrc.json`)
|
|
144
144
|
|
|
145
|
-
Add/edit this
|
|
145
|
+
Add/edit this file at your project's **root** (next to `package.json`) — the `init` command creates a default one for you:
|
|
146
146
|
|
|
147
147
|
```json
|
|
148
148
|
{
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
"
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
"
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
]
|
|
178
|
-
}
|
|
149
|
+
"useModules": false,
|
|
150
|
+
"project": "PROJ",
|
|
151
|
+
"branchTypes": [
|
|
152
|
+
"feature",
|
|
153
|
+
"bugfix",
|
|
154
|
+
"hotfix",
|
|
155
|
+
"improvement",
|
|
156
|
+
"refactor",
|
|
157
|
+
"release",
|
|
158
|
+
"chore",
|
|
159
|
+
"docs",
|
|
160
|
+
"test",
|
|
161
|
+
"spike"
|
|
162
|
+
],
|
|
163
|
+
"types": [
|
|
164
|
+
"feat",
|
|
165
|
+
"feature",
|
|
166
|
+
"fix",
|
|
167
|
+
"docs",
|
|
168
|
+
"style",
|
|
169
|
+
"refactor",
|
|
170
|
+
"test",
|
|
171
|
+
"chore",
|
|
172
|
+
"perf",
|
|
173
|
+
"ci",
|
|
174
|
+
"build",
|
|
175
|
+
"revert"
|
|
176
|
+
]
|
|
179
177
|
}
|
|
180
178
|
```
|
|
181
179
|
|
|
182
|
-
All keys are optional; anything you omit falls back to the default shown above.
|
|
180
|
+
All keys are optional; anything you omit falls back to the default shown above. Edit this file whenever you like — the hooks read it fresh on every commit, so changes take effect immediately, no reinstall or `init` re-run needed.
|
|
181
|
+
|
|
182
|
+
### Legacy `package.json` → `commitGuard` (backward compatibility)
|
|
183
|
+
|
|
184
|
+
Versions of `commit-sheriff` before this config-file change stored the same settings under a `commitGuard` key in `package.json` instead. That still works: if no `.commitsheriffrc.json` file exists, the hooks (and the `add-eslint-react` template) fall back to reading `package.json`'s `commitGuard` block automatically, so existing installs keep working without any changes required. New installs (and any project without an existing `commitGuard` block) get the new `.commitsheriffrc.json` file instead — this is the recommended location going forward. To migrate an existing project by hand, move the contents of `commitGuard` out into a new root-level `.commitsheriffrc.json` file and delete the `commitGuard` key from `package.json`.
|
|
183
185
|
|
|
184
186
|
### `useModules`
|
|
185
187
|
|
|
@@ -200,7 +202,7 @@ The project key used in the **branch name** check (`<type>/<PROJECT>-<NUMBER>-..
|
|
|
200
202
|
Only relevant when `useModules: true`. If you want to restrict commits/branches to a specific, known set of module codes, list them explicitly:
|
|
201
203
|
|
|
202
204
|
```json
|
|
203
|
-
|
|
205
|
+
{
|
|
204
206
|
"useModules": true,
|
|
205
207
|
"project": "PROJ",
|
|
206
208
|
"modules": ["AUTH", "BILLING", "REPORTS"]
|
|
@@ -262,11 +264,12 @@ This copies two templates into your repo root, **without overwriting** anything
|
|
|
262
264
|
testing-library/jest/vitest rules) with a module-boundary `no-restricted-imports` rule.
|
|
263
265
|
- `.prettierrc.js` — matching Prettier config.
|
|
264
266
|
|
|
265
|
-
The module list for the boundary rule isn't hardcoded — it's read straight from
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
267
|
+
The module list for the boundary rule isn't hardcoded — it's read straight from the `modules`
|
|
268
|
+
array in your root `.commitsheriffrc.json` (the same list the commit-msg/branch-name hooks use
|
|
269
|
+
for the `[MODULE]` tag), lowercased. For older installs still using `package.json`'s
|
|
270
|
+
`commitGuard.modules`, that's used as a fallback. If neither is set, a small illustrative default
|
|
271
|
+
(`auth`, `billing`, `reports`, `settings`) is used — open `.eslintrc.js` and replace it, or just
|
|
272
|
+
fill in `modules` in `.commitsheriffrc.json` and it picks it up automatically.
|
|
270
273
|
|
|
271
274
|
This template assumes a `src/app/<module>/...` folder layout with `<module>.public.ts` barrel
|
|
272
275
|
files; adjust the paths inside `.eslintrc.js` if your structure differs.
|
|
@@ -282,13 +285,24 @@ npm install --save-dev typescript @typescript-eslint/parser @typescript-eslint/e
|
|
|
282
285
|
|
|
283
286
|
## Examples
|
|
284
287
|
|
|
285
|
-
**Minimal project (no modules)
|
|
288
|
+
**Minimal project (no modules)** — `.commitsheriffrc.json`:
|
|
286
289
|
|
|
287
290
|
```json
|
|
288
|
-
|
|
291
|
+
{
|
|
289
292
|
"useModules": false,
|
|
290
293
|
"project": "PROJ",
|
|
291
|
-
"branchTypes": [
|
|
294
|
+
"branchTypes": [
|
|
295
|
+
"feature",
|
|
296
|
+
"bugfix",
|
|
297
|
+
"hotfix",
|
|
298
|
+
"improvement",
|
|
299
|
+
"refactor",
|
|
300
|
+
"release",
|
|
301
|
+
"chore",
|
|
302
|
+
"docs",
|
|
303
|
+
"test",
|
|
304
|
+
"spike"
|
|
305
|
+
],
|
|
292
306
|
"types": ["feat", "fix", "docs", "chore", "test"]
|
|
293
307
|
}
|
|
294
308
|
```
|
|
@@ -298,14 +312,25 @@ git checkout -b bugfix/PROJ-1093-fix-validation
|
|
|
298
312
|
git commit -m "(PROJ-1093) fix: correct validation on empty input"
|
|
299
313
|
```
|
|
300
314
|
|
|
301
|
-
**Project split into modules, with a locked list
|
|
315
|
+
**Project split into modules, with a locked list** — `.commitsheriffrc.json`:
|
|
302
316
|
|
|
303
317
|
```json
|
|
304
|
-
|
|
318
|
+
{
|
|
305
319
|
"useModules": true,
|
|
306
320
|
"project": "ACME",
|
|
307
321
|
"modules": ["AUTH", "BILLING", "REPORTS"],
|
|
308
|
-
"branchTypes": [
|
|
322
|
+
"branchTypes": [
|
|
323
|
+
"feature",
|
|
324
|
+
"bugfix",
|
|
325
|
+
"hotfix",
|
|
326
|
+
"improvement",
|
|
327
|
+
"refactor",
|
|
328
|
+
"release",
|
|
329
|
+
"chore",
|
|
330
|
+
"docs",
|
|
331
|
+
"test",
|
|
332
|
+
"spike"
|
|
333
|
+
],
|
|
309
334
|
"types": ["feat", "fix", "docs", "chore", "test"]
|
|
310
335
|
}
|
|
311
336
|
```
|
|
@@ -324,7 +349,7 @@ npm install commit-sheriff@latest --save-dev
|
|
|
324
349
|
npx commit-sheriff init
|
|
325
350
|
```
|
|
326
351
|
|
|
327
|
-
`npm install` updates the package; `npx commit-sheriff init` re-copies the (possibly changed) `.husky/commit-msg` and `.husky/pre-commit` scripts. It will **not** touch your existing `commitGuard` or `lint-staged` config
|
|
352
|
+
`npm install` updates the package; `npx commit-sheriff init` re-copies the (possibly changed) `.husky/commit-msg` and `.husky/pre-commit` scripts. It will **not** touch your existing `.commitsheriffrc.json` (or legacy `commitGuard` in `package.json`) or `lint-staged` config.
|
|
328
353
|
|
|
329
354
|
## Skipping / bypassing hooks
|
|
330
355
|
|
|
@@ -339,7 +364,7 @@ Merge, revert, `fixup!`, and `squash!` commits are already exempted from the com
|
|
|
339
364
|
## Troubleshooting
|
|
340
365
|
|
|
341
366
|
**"Could not load commitGuard config — is Node.js installed and is this running from the repo root?"**
|
|
342
|
-
The hook runs `node -e "..."` against `./package.json
|
|
367
|
+
The hook runs `node -e "..."` against `./.commitsheriffrc.json` (falling back to `./package.json`'s `commitGuard` block for older installs). Make sure Node.js is on your `PATH` and that you're committing from the repository root (or that your Git client runs hooks with the repo root as the working directory — some GUI clients get this wrong).
|
|
343
368
|
|
|
344
369
|
**A commit is accepted even though the message looks wrong**
|
|
345
370
|
Check which branch/tool you actually committed from — hooks only run for the local Git client that has Husky's `core.hooksPath` configured (`git config core.hooksPath` should print `.husky/_`). GUI clients or CI systems that bypass local hooks (or commit via the GitHub/GitLab API) will not trigger them.
|
|
@@ -348,7 +373,7 @@ Check which branch/tool you actually committed from — hooks only run for the l
|
|
|
348
373
|
Detached HEAD is exempt, but a normal new branch is checked immediately on first commit — rename it with `git branch -m <valid-name>` and try again.
|
|
349
374
|
|
|
350
375
|
**`useModules: true` but every module code is accepted**
|
|
351
|
-
That's expected if `
|
|
376
|
+
That's expected if `modules` is empty/omitted in `.commitsheriffrc.json` — see [`modules`](#modules). Add an explicit list to restrict it.
|
|
352
377
|
|
|
353
378
|
## Releasing this package
|
|
354
379
|
|
package/bin/commit-sheriff.js
CHANGED
|
@@ -43,6 +43,8 @@ const DEFAULT_LINT_STAGED = {
|
|
|
43
43
|
"*.{json,md,css,scss,html}": ["prettier --write"],
|
|
44
44
|
};
|
|
45
45
|
|
|
46
|
+
const CONFIG_FILE_NAME = ".commitsheriffrc.json";
|
|
47
|
+
|
|
46
48
|
function readPackageJson() {
|
|
47
49
|
const pkgPath = path.join(cwd, "package.json");
|
|
48
50
|
if (!fs.existsSync(pkgPath)) {
|
|
@@ -70,17 +72,31 @@ function copyHook(name) {
|
|
|
70
72
|
console.log(`✔ .husky/${name} yazıldı`);
|
|
71
73
|
}
|
|
72
74
|
|
|
75
|
+
function ensureConfigFile() {
|
|
76
|
+
const configPath = path.join(cwd, CONFIG_FILE_NAME);
|
|
77
|
+
const { pkg } = readPackageJson();
|
|
78
|
+
|
|
79
|
+
if (fs.existsSync(configPath)) {
|
|
80
|
+
console.log(`• ${CONFIG_FILE_NAME} artıq var, toxunulmadı`);
|
|
81
|
+
return;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
if (pkg.commitGuard) {
|
|
85
|
+
console.log(
|
|
86
|
+
`• package.json-da köhnə tərzli 'commitGuard' bloku tapıldı — ${CONFIG_FILE_NAME} yaradılmadı, köhnə konfiqurasiya işləməyə davam edir.`,
|
|
87
|
+
);
|
|
88
|
+
return;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
fs.writeFileSync(configPath, JSON.stringify(DEFAULT_COMMIT_GUARD, null, 2) + "\n");
|
|
92
|
+
console.log(`✔ ${CONFIG_FILE_NAME} yazıldı`);
|
|
93
|
+
}
|
|
94
|
+
|
|
73
95
|
function mergeConfig() {
|
|
74
96
|
const { pkgPath, pkg } = readPackageJson();
|
|
75
97
|
let changed = false;
|
|
76
98
|
|
|
77
|
-
|
|
78
|
-
pkg.commitGuard = DEFAULT_COMMIT_GUARD;
|
|
79
|
-
changed = true;
|
|
80
|
-
console.log("✔ package.json → commitGuard konfiqurasiyası əlavə olundu");
|
|
81
|
-
} else {
|
|
82
|
-
console.log("• package.json-da commitGuard artıq var, toxunulmadı");
|
|
83
|
-
}
|
|
99
|
+
ensureConfigFile();
|
|
84
100
|
|
|
85
101
|
if (!pkg["lint-staged"]) {
|
|
86
102
|
pkg["lint-staged"] = DEFAULT_LINT_STAGED;
|
|
@@ -125,7 +141,7 @@ function init() {
|
|
|
125
141
|
}
|
|
126
142
|
|
|
127
143
|
console.log(
|
|
128
|
-
|
|
144
|
+
`\nHazırdır. ${CONFIG_FILE_NAME} faylında 'project' və lazım olsa 'modules' dəyərlərini tənzimləyin.\n`,
|
|
129
145
|
);
|
|
130
146
|
}
|
|
131
147
|
|
|
@@ -162,7 +178,7 @@ function addEslintReact() {
|
|
|
162
178
|
copyTemplateIfMissing("prettier.module-boundaries.js", ".prettierrc.js");
|
|
163
179
|
console.log(
|
|
164
180
|
"\nBu şablon TypeScript/React + modul-sərhəd (module-boundary) qaydaları üçündür.\n" +
|
|
165
|
-
|
|
181
|
+
`Modul siyahısı ${CONFIG_FILE_NAME}.modules-dən avtomatik oxunur (boşdursa nümunə\n` +
|
|
166
182
|
"siyahı istifadə olunur — .eslintrc.js içindəki şərhi oxuyun).\n\n" +
|
|
167
183
|
"Lazımi devDependencies (özünüz quraşdırın, layihənizin real versiyalarına uyğun):\n" +
|
|
168
184
|
` npm install --save-dev ${ESLINT_REACT_DEV_DEPS.join(" ")}\n`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "commit-sheriff",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Shared husky commit-msg / pre-commit hooks enforcing ticket-based commit messages and branch naming",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -50,35 +50,5 @@
|
|
|
50
50
|
"*.{json,md,css,scss,html}": [
|
|
51
51
|
"prettier --write"
|
|
52
52
|
]
|
|
53
|
-
},
|
|
54
|
-
"commitGuard": {
|
|
55
|
-
"useModules": false,
|
|
56
|
-
"project": "PROJ",
|
|
57
|
-
"branchTypes": [
|
|
58
|
-
"feature",
|
|
59
|
-
"bugfix",
|
|
60
|
-
"hotfix",
|
|
61
|
-
"improvement",
|
|
62
|
-
"refactor",
|
|
63
|
-
"release",
|
|
64
|
-
"chore",
|
|
65
|
-
"docs",
|
|
66
|
-
"test",
|
|
67
|
-
"spike"
|
|
68
|
-
],
|
|
69
|
-
"types": [
|
|
70
|
-
"feat",
|
|
71
|
-
"feature",
|
|
72
|
-
"fix",
|
|
73
|
-
"docs",
|
|
74
|
-
"style",
|
|
75
|
-
"refactor",
|
|
76
|
-
"test",
|
|
77
|
-
"chore",
|
|
78
|
-
"perf",
|
|
79
|
-
"ci",
|
|
80
|
-
"build",
|
|
81
|
-
"revert"
|
|
82
|
-
]
|
|
83
53
|
}
|
|
84
54
|
}
|
package/templates/commit-msg
CHANGED
|
@@ -8,12 +8,17 @@ case "$commit_msg" in
|
|
|
8
8
|
;;
|
|
9
9
|
esac
|
|
10
10
|
|
|
11
|
-
# ── Load config
|
|
12
|
-
#
|
|
11
|
+
# ── Load config: .commitsheriffrc.json at repo root (falls back to package.json → "commitGuard"
|
|
12
|
+
# ── for older installs, then to sane defaults) ──────────────────────────────
|
|
13
|
+
# .commitsheriffrc.json: { "useModules": true, "modules": [...], "types": [...] }
|
|
13
14
|
eval "$(node -e "
|
|
14
15
|
const fs = require('fs');
|
|
15
16
|
let cfg = {};
|
|
16
|
-
try {
|
|
17
|
+
try {
|
|
18
|
+
cfg = JSON.parse(fs.readFileSync('.commitsheriffrc.json', 'utf8'));
|
|
19
|
+
} catch (e) {
|
|
20
|
+
try { cfg = (JSON.parse(fs.readFileSync('package.json', 'utf8')).commitGuard) || {}; } catch (e2) {}
|
|
21
|
+
}
|
|
17
22
|
const useModules = cfg.useModules !== undefined ? cfg.useModules : true;
|
|
18
23
|
const modules = (cfg.modules && cfg.modules.length ? cfg.modules.join('|') : '[A-Z]+');
|
|
19
24
|
const types = (cfg.types || ['feat','feature','fix','docs','style','refactor','test','chore','perf','ci','build','revert']).join('|');
|
|
@@ -16,17 +16,28 @@
|
|
|
16
16
|
* are the one place allowed to import every module directly (that's the whole point of a
|
|
17
17
|
* router/registry), so the boundary rule is turned off just for those two files.
|
|
18
18
|
*
|
|
19
|
-
* Module list: instead of hardcoding module names, this reads `
|
|
20
|
-
*
|
|
21
|
-
* README), so the two conventions (module tags in commits/branches, and module
|
|
22
|
-
* imports) stay in sync automatically.
|
|
23
|
-
*
|
|
19
|
+
* Module list: instead of hardcoding module names, this reads `modules` from the repo's
|
|
20
|
+
* `.commitsheriffrc.json` (the same list used by the commit-sheriff commit-msg/branch-name
|
|
21
|
+
* hooks — see README), so the two conventions (module tags in commits/branches, and module
|
|
22
|
+
* boundaries in imports) stay in sync automatically. For older installs that still keep their
|
|
23
|
+
* config under `package.json`'s `commitGuard` block, that location is used as a fallback. If
|
|
24
|
+
* neither is found, a small illustrative default is used instead — replace it with your real
|
|
25
|
+
* module names.
|
|
24
26
|
*/
|
|
25
27
|
|
|
26
28
|
const fs = require("fs");
|
|
27
29
|
const path = require("path");
|
|
28
30
|
|
|
29
31
|
function loadAppModules() {
|
|
32
|
+
try {
|
|
33
|
+
const rcPath = path.join(__dirname, ".commitsheriffrc.json");
|
|
34
|
+
const rc = JSON.parse(fs.readFileSync(rcPath, "utf8"));
|
|
35
|
+
if (Array.isArray(rc.modules) && rc.modules.length) {
|
|
36
|
+
return rc.modules.map((m) => String(m).toLowerCase());
|
|
37
|
+
}
|
|
38
|
+
} catch {
|
|
39
|
+
// fall through to the legacy package.json lookup below
|
|
40
|
+
}
|
|
30
41
|
try {
|
|
31
42
|
const pkgPath = path.join(__dirname, "package.json");
|
|
32
43
|
const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf8"));
|
package/templates/pre-commit
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
local_branch="$(git rev-parse --abbrev-ref HEAD 2>/dev/null)" || true
|
|
2
2
|
|
|
3
|
-
# ── Load config
|
|
4
|
-
#
|
|
3
|
+
# ── Load config: .commitsheriffrc.json at repo root (falls back to package.json → "commitGuard"
|
|
4
|
+
# ── for older installs, then to sane defaults) ──────────────────────────────
|
|
5
|
+
# .commitsheriffrc.json: { "useModules": true, "project": "PROJ", "modules": [...], "branchTypes": [...] }
|
|
5
6
|
eval "$(node -e "
|
|
6
7
|
const fs = require('fs');
|
|
7
8
|
let cfg = {};
|
|
8
|
-
try {
|
|
9
|
+
try {
|
|
10
|
+
cfg = JSON.parse(fs.readFileSync('.commitsheriffrc.json', 'utf8'));
|
|
11
|
+
} catch (e) {
|
|
12
|
+
try { cfg = (JSON.parse(fs.readFileSync('package.json', 'utf8')).commitGuard) || {}; } catch (e2) {}
|
|
13
|
+
}
|
|
9
14
|
const useModules = cfg.useModules !== undefined ? cfg.useModules : true;
|
|
10
15
|
const project = cfg.project || 'PROJ';
|
|
11
16
|
const modules = (cfg.modules && cfg.modules.length ? cfg.modules.join('|') : '[A-Z]+');
|