Skip to content

Commit faa32c3

Browse files
committed
chore: generate eslint report
1 parent a788c03 commit faa32c3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ logs
33
*.log
44
npm-debug.log*
55

6+
# Linter
7+
.lint-reports/
8+
69
# Coverage
710
.nyc_output
811
.test-reports

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"prestart": "npm run build",
2525
"start": "cd dist && node src/index.js",
2626
"build:check": "npm run build -- --noEmit",
27-
"lint": "eslint ./src ./test --ext .ts",
27+
"lint": "eslint -o .lint-reports/eslint.json -f json --ext .ts ./src ./test",
2828
"lint:fix": "npm run lint -- --fix",
2929
"db:migrate": "knex migrate:latest",
3030
"db:migrate:rollback": "knex migrate:rollback",

0 commit comments

Comments
 (0)