@vellone/techsak 1.1.7 → 1.1.9
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 -1
- package/eslint.config.next.mjs +8 -0
- package/eslint.config.react.mjs +8 -0
- package/index.mjs +2 -0
- package/package.json +1 -1
package/eslint.config.mjs
CHANGED
|
@@ -104,7 +104,6 @@ export default tseslint.config(
|
|
|
104
104
|
},
|
|
105
105
|
},
|
|
106
106
|
{
|
|
107
|
-
name: 'Errors',
|
|
108
107
|
rules: {
|
|
109
108
|
'import/no-deprecated': 'error',
|
|
110
109
|
'import/no-anonymous-default-export': [0],
|
|
@@ -189,6 +188,10 @@ export default tseslint.config(
|
|
|
189
188
|
'unicorn/no-null': 'off',
|
|
190
189
|
'unicorn/consistent-function-scoping': 'off',
|
|
191
190
|
'unicorn/prevent-abbreviations': 'off',
|
|
191
|
+
// This rule lint any '.map', even non-array ones. These are the issues about it:
|
|
192
|
+
// https://github.com/sindresorhus/eslint-plugin-unicorn/issues/1394
|
|
193
|
+
// https://github.com/sindresorhus/eslint-plugin-unicorn/issues/347
|
|
194
|
+
'unicorn/no-array-method-this-argument': 'off',
|
|
192
195
|
},
|
|
193
196
|
},
|
|
194
197
|
)
|
package/index.mjs
ADDED