@vellone/techsak 1.1.9 → 1.1.10

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,10 +188,6 @@ 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',
195
191
  },
196
192
  },
197
193
  )
package/package.json CHANGED
@@ -1,16 +1,24 @@
1
1
  {
2
2
  "name": "@vellone/techsak",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "matheusvellone's personal tech sak (swiss army knife)",
5
- "keywords": [],
5
+ "keywords": [
6
+ "makefile",
7
+ "editorconfig",
8
+ "eslint"
9
+ ],
6
10
  "author": "matheusvellone",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/matheusvellone/techsak"
14
+ },
7
15
  "license": "MIT",
8
16
  "peerDependencies": {
9
17
  "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
10
18
  "@eslint/js": "^9.19.0",
11
19
  "eslint": "^9.19.0",
12
20
  "eslint-plugin-import": "^2.31.0",
13
- "eslint-plugin-unicorn": "^57.0.0",
21
+ "eslint-plugin-unicorn": "^58.0.0",
14
22
  "typescript-eslint": "^8.22.0"
15
23
  }
16
24
  }
@@ -1,8 +0,0 @@
1
- import baseEslintConfig from './eslint.config.mjs'
2
-
3
- export default [
4
- baseEslintConfig,
5
- {
6
- plugins: ['next'],
7
- }
8
- ]
@@ -1,8 +0,0 @@
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 DELETED
@@ -1,2 +0,0 @@
1
- export { default as eslintConfig } from './eslint.config.mjs'
2
- export { default as eslintConfigNext } from './eslint.config.mjs'