Skip to content

Commit 9e9d3b0

Browse files
committed
fix(eslint): relax rules on classnames and comments
1 parent afa0e31 commit 9e9d3b0

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

.eslintrc.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,8 @@
2525
"parser": "@typescript-eslint/parser",
2626
"project": "./tsconfig.json"
2727
},
28-
"rules": {}
28+
"rules": {
29+
"new-cap": "off",
30+
"require-jsdoc": "off"
31+
}
2932
}

package-lock.json

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"scripts": {
1010
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
1111
"lint:fix": "npm run lint -- --fix",
12-
"lint:check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
12+
"lint:check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
1313
"release": "standard-version"
1414
},
1515
"devDependencies": {

0 commit comments

Comments
 (0)