@vellone/techsak 1.1.10 → 1.1.12
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/eslint.config.mjs +4 -2
- package/package.json +1 -1
package/eslint.config.mjs
CHANGED
|
@@ -105,7 +105,6 @@ export default tseslint.config(
|
|
|
105
105
|
},
|
|
106
106
|
{
|
|
107
107
|
rules: {
|
|
108
|
-
'import/no-deprecated': 'error',
|
|
109
108
|
'import/no-anonymous-default-export': [0],
|
|
110
109
|
'no-duplicate-imports': 'off',
|
|
111
110
|
'import/no-duplicates': 'error',
|
|
@@ -124,6 +123,9 @@ export default tseslint.config(
|
|
|
124
123
|
'require-await': 'off',
|
|
125
124
|
'@typescript-eslint/require-await': 'error',
|
|
126
125
|
|
|
126
|
+
'import/no-deprecated': 'off',
|
|
127
|
+
'@typescript-eslint/no-deprecated': 'error',
|
|
128
|
+
|
|
127
129
|
'@typescript-eslint/await-thenable': 'error',
|
|
128
130
|
'@typescript-eslint/array-type': ['error', {
|
|
129
131
|
default: 'array-simple',
|
|
@@ -159,7 +161,7 @@ export default tseslint.config(
|
|
|
159
161
|
'no-loop-func': 'off',
|
|
160
162
|
'@typescript-eslint/no-loop-func': 'error',
|
|
161
163
|
'no-redeclare': 'off',
|
|
162
|
-
'@typescript-eslint/no-redeclare': '
|
|
164
|
+
'@typescript-eslint/no-redeclare': 'off',
|
|
163
165
|
'@typescript-eslint/no-require-imports': 'error',
|
|
164
166
|
'@typescript-eslint/no-unnecessary-condition': 'error',
|
|
165
167
|
'no-unused-expressions': 'off',
|