@vellone/techsak 1.1.8 → 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 -0
- 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
|
@@ -188,6 +188,10 @@ export default tseslint.config(
|
|
|
188
188
|
'unicorn/no-null': 'off',
|
|
189
189
|
'unicorn/consistent-function-scoping': 'off',
|
|
190
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',
|
|
191
195
|
},
|
|
192
196
|
},
|
|
193
197
|
)
|
package/index.mjs
ADDED