@shelf/eslint-config 5.2.2 → 5.3.0

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/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+ ## 3.0.0
2
+
3
+ Override recommended no explicit type any in tests
4
+
5
+ ## 2.0.0
6
+
7
+ Removed separate file for testing-library, added testing-library rules to `frontend-typescript.js`.
8
+ Extended `frontend.js` in `frontend-typescript.js` and `frontend-typescript-vue.js`.
9
+
10
+ ## 1.0.0
11
+
12
+ Breaking changes of the eslint-config-prettier 8.0.0
@@ -23,7 +23,7 @@ export default {
23
23
  },
24
24
  },
25
25
  noTSRulesWithJSON: {
26
- files: ['*.json'],
26
+ files: ['**/*.json'],
27
27
  rules: {
28
28
  '@typescript-eslint/no-unused-expressions': 'off',
29
29
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shelf/eslint-config",
3
- "version": "5.2.2",
3
+ "version": "5.3.0",
4
4
  "description": "ESLint Config for Shelf Projects",
5
5
  "license": "MIT",
6
6
  "repository": "shelfio/eslint-config",
@@ -38,28 +38,28 @@
38
38
  "@eslint/eslintrc": "3.3.1",
39
39
  "@eslint/js": "9.30.0",
40
40
  "@stylistic/eslint-plugin-js": "4.4.1",
41
- "@typescript-eslint/eslint-plugin": "8.35.0",
42
- "@typescript-eslint/parser": "8.35.0",
43
- "eslint-config-next": "15.3.4",
44
- "eslint-config-prettier": "10.1.5",
41
+ "@typescript-eslint/eslint-plugin": "8.38.0",
42
+ "@typescript-eslint/parser": "8.38.0",
43
+ "eslint-config-next": "15.4.4",
44
+ "eslint-config-prettier": "10.1.8",
45
45
  "eslint-plugin-babel": "5.3.1",
46
46
  "eslint-plugin-import": "2.32.0",
47
47
  "eslint-plugin-jest": "29.0.1",
48
48
  "eslint-plugin-jest-formatting": "3.1.0",
49
49
  "eslint-plugin-jsx": "0.1.0",
50
- "eslint-plugin-n": "17.20.0",
51
- "eslint-plugin-prettier": "5.5.1",
50
+ "eslint-plugin-n": "17.21.0",
51
+ "eslint-plugin-prettier": "5.5.3",
52
52
  "eslint-plugin-react": "7.37.5",
53
53
  "eslint-plugin-react-hooks": "5.2.0",
54
54
  "eslint-plugin-shelf-no-need-lodash-methods": "2.0.8",
55
55
  "eslint-plugin-sonarjs": "3.0.4",
56
- "eslint-plugin-testing-library": "7.5.3",
56
+ "eslint-plugin-testing-library": "7.6.1",
57
57
  "eslint-plugin-you-dont-need-lodash-underscore": "6.14.0",
58
58
  "globals": "16.2.0",
59
- "typescript-eslint": "8.35.0"
59
+ "typescript-eslint": "8.38.0"
60
60
  },
61
61
  "devDependencies": {
62
- "eslint": "9.30.0",
62
+ "eslint": "9.32.0",
63
63
  "husky": "9.1.7",
64
64
  "lint-staged": "16.1.2",
65
65
  "prettier": "3.6.2"
@@ -68,12 +68,11 @@
68
68
  "eslint": "9.x",
69
69
  "prettier": "3.x"
70
70
  },
71
- "lint-staged": {
72
- "*.{html,md,yml}": "prettier --write",
73
- "*.{ts,js,json}": "eslint --fix",
74
- ".circleci/config.yml": ".husky/validate-circleci-config.sh"
75
- },
76
71
  "publishConfig": {
77
72
  "access": "public"
73
+ },
74
+ "lint-staged": {
75
+ "*.{html,md,yml}": "prettier --write",
76
+ "*.{ts,js,json}": "eslint --fix"
78
77
  }
79
78
  }