eslint-config-any 2.1.1 → 2.2.1

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/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  ![NPM Latest Version](https://img.shields.io/npm/v/eslint-config-any)
4
4
  ![Downloads Count](https://img.shields.io/npm/dm/eslint-config-any.svg)
5
- ![Test Status](https://img.shields.io/github/actions/workflow/status/juliolmuller/eslint-config-any/publish.yml?label=ci/cd)
6
- ![Last Update Date](https://img.shields.io/github/last-commit/juliolmuller/eslint-config-any)
7
- ![Project License](https://img.shields.io/github/license/juliolmuller/eslint-config-any)
5
+ ![Test Status](https://img.shields.io/github/actions/workflow/status/LacusSolutions/eslint-config-any/publish.yml?label=ci/cd)
6
+ ![Last Update Date](https://img.shields.io/github/last-commit/LacusSolutions/eslint-config-any)
7
+ ![Project License](https://img.shields.io/github/license/LacusSolutions/eslint-config-any)
8
8
 
9
9
  This package provides strict linting and formatting rules for (almost) all sorts of JavaScript stack projects, like React, Vue, Vanilla, Node and their variants in TypeScript.
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-any",
3
- "version": "2.1.1",
3
+ "version": "2.2.1",
4
4
  "description": "ESLint configuration for JavaScript, TypeScript, React & Vue projects, by Julio L. Muller",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -21,12 +21,12 @@
21
21
  ],
22
22
  "repository": {
23
23
  "type": "git",
24
- "url": "https://github.com/juliolmuller/eslint-config-any"
24
+ "url": "https://github.com/LacusSolutions/eslint-config-any"
25
25
  },
26
26
  "bugs": {
27
- "url": "https://github.com/juliolmuller/eslint-config-any/issues"
27
+ "url": "https://github.com/LacusSolutions/eslint-config-any/issues"
28
28
  },
29
- "homepage": "https://github.com/juliolmuller/eslint-config-any#readme",
29
+ "homepage": "https://github.com/LacusSolutions/eslint-config-any#readme",
30
30
  "engines": {
31
31
  "node": ">=22"
32
32
  },
@@ -44,34 +44,34 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
47
- "@eslint/js": "^9.30.0",
48
- "@eslint/json": "^0.12.0",
49
- "@eslint/markdown": "^6.6.0",
50
- "eslint-config-prettier": "^10.1.5",
47
+ "@eslint/js": "^9.35.0",
48
+ "@eslint/json": "^0.13.2",
49
+ "@eslint/markdown": "^7.2.0",
50
+ "eslint-config-prettier": "^10.1.8",
51
51
  "eslint-plugin-array-func": "^5.0.2",
52
52
  "eslint-plugin-import": "^2.32.0",
53
53
  "eslint-plugin-import-helpers": "^2.0.1",
54
54
  "eslint-plugin-jsx-a11y": "^6.10.2",
55
55
  "eslint-plugin-perfectionist": "^4.15.0",
56
- "eslint-plugin-prettier": "^5.5.1",
56
+ "eslint-plugin-prettier": "^5.5.4",
57
57
  "eslint-plugin-react": "^7.37.5",
58
58
  "eslint-plugin-react-hooks": "^5.2.0",
59
- "eslint-plugin-regexp": "^2.9.0",
60
- "eslint-plugin-vue": "^10.2.0",
59
+ "eslint-plugin-regexp": "^2.10.0",
60
+ "eslint-plugin-vue": "^10.4.0",
61
61
  "globals": "^16.3.0",
62
- "typescript-eslint": "^8.35.1",
62
+ "typescript-eslint": "^8.42.0",
63
63
  "vue-eslint-parser": "^10.2.0"
64
64
  },
65
65
  "devDependencies": {
66
66
  "@commitlint/cli": "^19.8.1",
67
67
  "@commitlint/config-conventional": "^19.8.1",
68
- "@types/bun": "^1.2.17",
68
+ "@types/bun": "^1.2.21",
69
69
  "commitizen": "^4.3.1",
70
70
  "cz-conventional-changelog": "^3.3.0",
71
- "eslint": "^9.30.0",
71
+ "eslint": "^9.35.0",
72
72
  "husky": "^9.1.7",
73
- "lint-staged": "^16.1.2",
73
+ "lint-staged": "^16.1.6",
74
74
  "prettier": "^3.6.2",
75
- "typescript": "^5.8.3"
75
+ "typescript": "^5.9.2"
76
76
  }
77
77
  }
@@ -23,4 +23,7 @@ export default {
23
23
 
24
24
  // https://typescript-eslint.io/rules/no-unused-vars
25
25
  '@typescript-eslint/no-unused-vars': standardRules['no-unused-vars'],
26
+
27
+ // https://typescript-eslint.io/rules/triple-slash-reference
28
+ '@typescript-eslint/triple-slash-reference': 'off',
26
29
  };