@itcase/lint 1.0.9 → 1.0.11

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.
Files changed (2) hide show
  1. package/eslint/index.js +2 -0
  2. package/package.json +13 -13
package/eslint/index.js CHANGED
@@ -35,6 +35,8 @@ const eslintConfig = [
35
35
  // @typescript-eslint
36
36
  '@typescript-eslint/ban-ts-comment': 'off',
37
37
  '@typescript-eslint/no-explicit-any': 'off',
38
+ // Sometimes you need an empty one, for example when extends
39
+ '@typescript-eslint/no-empty-object-type': 'off',
38
40
 
39
41
  // react
40
42
  // TODO: make rule "react/prop-types" as error only for JS(x) files
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/lint",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "author": "ITCase",
5
5
  "description": "Code style linter configuration presets",
6
6
  "engines": {
@@ -31,20 +31,20 @@
31
31
  "dependencies": {
32
32
  "@babel/eslint-parser": "^7.25.1",
33
33
  "@eslint/compat": "^1.1.1",
34
- "@eslint/js": "^9.8.0",
34
+ "@eslint/js": "^9.10.0",
35
35
  "@ianvs/prettier-plugin-sort-imports": "^4.3.1",
36
- "eslint": "^9.8.0",
36
+ "eslint": "^9.10.0",
37
37
  "eslint-config-prettier": "^9.1.0",
38
38
  "eslint-plugin-mobx": "^0.0.11",
39
39
  "eslint-plugin-n": "17.10.2",
40
40
  "eslint-plugin-node": "11.1.0",
41
- "eslint-plugin-perfectionist": "^3.1.2",
41
+ "eslint-plugin-perfectionist": "^3.5.0",
42
42
  "eslint-plugin-prettier": "5.2.1",
43
43
  "eslint-plugin-promise": "7.1.0",
44
- "eslint-plugin-react": "^7.35.0",
44
+ "eslint-plugin-react": "^7.35.2",
45
45
  "eslint-plugin-react-hooks": "4.6.2",
46
- "eslint-plugin-react-refresh": "^0.4.9",
47
- "typescript-eslint": "^8.0.1",
46
+ "eslint-plugin-react-refresh": "^0.4.11",
47
+ "typescript-eslint": "^8.5.0",
48
48
  "stylelint-config-standard": "^36.0.1",
49
49
  "stylelint-no-unsupported-browser-features": "^8.0.1",
50
50
  "stylelint-order": "^6.0.4",
@@ -56,16 +56,16 @@
56
56
  "stylelint": "^16.7.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@commitlint/cli": "^19.4.0",
60
- "@commitlint/config-conventional": "^19.2.2",
59
+ "@commitlint/cli": "^19.4.1",
60
+ "@commitlint/config-conventional": "^19.4.1",
61
61
  "@semantic-release/changelog": "^6.0.3",
62
62
  "@semantic-release/git": "^10.0.1",
63
63
  "@semantic-release/release-notes-generator": "14.0.1",
64
64
  "conventional-changelog-conventionalcommits": "^8.0.0",
65
- "husky": "^9.1.4",
66
- "lint-staged": "^15.2.8",
65
+ "husky": "^9.1.5",
66
+ "lint-staged": "^15.2.10",
67
67
  "react": "^18.3.1",
68
- "semantic-release": "^24.0.0",
69
- "typescript": "^5.5.4"
68
+ "semantic-release": "^24.1.0",
69
+ "typescript": "^5.6.2"
70
70
  }
71
71
  }