@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 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
  )
@@ -0,0 +1,8 @@
1
+ import baseEslintConfig from './eslint.config.mjs'
2
+
3
+ export default [
4
+ baseEslintConfig,
5
+ {
6
+ plugins: ['next'],
7
+ }
8
+ ]
@@ -0,0 +1,8 @@
1
+ import baseEslintConfig from './eslint.config.mjs'
2
+
3
+ export default [
4
+ baseEslintConfig,
5
+ {
6
+ rules: reactHooks.configs.recommended.rules,
7
+ },
8
+ ]
package/index.mjs ADDED
@@ -0,0 +1,2 @@
1
+ export { default as eslintConfig } from './eslint.config.mjs'
2
+ export { default as eslintConfigNext } from './eslint.config.mjs'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellone/techsak",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "description": "matheusvellone's personal tech sak (swiss army knife)",
5
5
  "keywords": [],
6
6
  "author": "matheusvellone",