@lenne.tech/eslint-config-ts 1.0.6 → 1.0.8
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/index.js +1 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -119,8 +119,6 @@ export default [
|
|
|
119
119
|
{ exceptAfterSingleLine: true },
|
|
120
120
|
],
|
|
121
121
|
|
|
122
|
-
"@typescript-eslint/no-unused-vars": "warn",
|
|
123
|
-
|
|
124
122
|
// off
|
|
125
123
|
"@typescript-eslint/consistent-indexed-object-style": "off",
|
|
126
124
|
"@typescript-eslint/naming-convention": "off",
|
|
@@ -135,7 +133,7 @@ export default [
|
|
|
135
133
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
136
134
|
"@typescript-eslint/ban-types": "off",
|
|
137
135
|
"@typescript-eslint/triple-slash-reference": "off",
|
|
138
|
-
// handled by unused-imports/no-unused-
|
|
136
|
+
"@typescript-eslint/no-unused-vars": "off", // handled by unused-imports/no-unused-vars
|
|
139
137
|
|
|
140
138
|
|
|
141
139
|
/**
|