@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 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
  )
@@ -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.7",
3
+ "version": "1.1.9",
4
4
  "description": "matheusvellone's personal tech sak (swiss army knife)",
5
5
  "keywords": [],
6
6
  "author": "matheusvellone",