disable eslint unused exports
This commit is contained in:
17
.eslintrc.json
Normal file
17
.eslintrc.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"extends": ["./node_modules/@itsmapleleaf/configs/eslint"],
|
||||||
|
"ignorePatterns": [
|
||||||
|
"**/node_modules/**",
|
||||||
|
"**/coverage/**",
|
||||||
|
"**/dist/**",
|
||||||
|
"**/.vscode/**"
|
||||||
|
],
|
||||||
|
"parserOptions": {
|
||||||
|
"project": "./tsconfig.json"
|
||||||
|
},
|
||||||
|
"rules": {
|
||||||
|
// this rule causes a bunch of error notifications to pop up when moving files around
|
||||||
|
// disabling this for now
|
||||||
|
"import/no-unused-modules": "off"
|
||||||
|
}
|
||||||
|
}
|
||||||
14
package.json
14
package.json
@@ -74,19 +74,5 @@
|
|||||||
"resolutions": {
|
"resolutions": {
|
||||||
"esbuild": "latest"
|
"esbuild": "latest"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
|
||||||
"extends": [
|
|
||||||
"./node_modules/@itsmapleleaf/configs/eslint"
|
|
||||||
],
|
|
||||||
"ignorePatterns": [
|
|
||||||
"**/node_modules/**",
|
|
||||||
"**/coverage/**",
|
|
||||||
"**/dist/**",
|
|
||||||
"**/.vscode/**"
|
|
||||||
],
|
|
||||||
"parserOptions": {
|
|
||||||
"project": "./tsconfig.json"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"prettier": "@itsmapleleaf/configs/prettier"
|
"prettier": "@itsmapleleaf/configs/prettier"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user