@open-xchange/linter-presets 0.12.2 → 0.12.3

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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## `0.12.3` – 2024-Dec-20
4
+
5
+ - chore: bump dependencies
6
+ - add: (ESLint) more rules of `eslint-plugin-eslint-plugin`
7
+
3
8
  ## `0.12.2` – 2024-Dec-13
4
9
 
5
10
  - change: (ESLint) raise all recommended Vue rules to "error" level
@@ -18,5 +18,13 @@ export default function eslint(envOptions) {
18
18
  // register rule implementations and recommended rules
19
19
  createConfig(envOptions, eslintPlugin.configs["flat/rules-recommended"]),
20
20
  // custom rules
21
- customRules(envOptions));
21
+ customRules(envOptions, {
22
+ "eslint-plugin/no-meta-schema-default": "error",
23
+ "eslint-plugin/no-property-in-node": "error",
24
+ "eslint-plugin/prefer-placeholders": "error",
25
+ "eslint-plugin/prefer-replace-text": "error",
26
+ "eslint-plugin/require-meta-default-options": "error",
27
+ "eslint-plugin/require-meta-docs-description": "error",
28
+ "eslint-plugin/require-meta-schema-description": "error",
29
+ }));
22
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-xchange/linter-presets",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "description": "Configuration presets for ESLint and StyleLint",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,22 +25,22 @@
25
25
  "@babel/eslint-parser": "^7.25.9",
26
26
  "@babel/plugin-proposal-decorators": "^7.25.9",
27
27
  "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
28
- "@eslint-react/eslint-plugin": "^1.19.0",
28
+ "@eslint-react/eslint-plugin": "^1.21.0",
29
29
  "@eslint/compat": "^1.2.4",
30
- "@eslint/js": "^9.16.0",
30
+ "@eslint/js": "^9.17.0",
31
31
  "@eslint/markdown": "^6.2.1",
32
32
  "@stylistic/eslint-plugin": "^2.12.1",
33
33
  "@stylistic/eslint-plugin-migrate": "^2.12.1",
34
34
  "@stylistic/stylelint-config": "^2.0.0",
35
35
  "@stylistic/stylelint-plugin": "^3.1.1",
36
- "@vitest/eslint-plugin": "^1.1.16",
36
+ "@vitest/eslint-plugin": "^1.1.20",
37
37
  "confusing-browser-globals": "^1.0.11",
38
38
  "eslint-import-resolver-typescript": "^3.7.0",
39
39
  "eslint-plugin-chai-expect": "^3.1.0",
40
40
  "eslint-plugin-codeceptjs": "^1.3.0",
41
- "eslint-plugin-eslint-plugin": "^6.3.2",
41
+ "eslint-plugin-eslint-plugin": "^6.4.0",
42
42
  "eslint-plugin-import": "^2.31.0",
43
- "eslint-plugin-jest": "^28.9.0",
43
+ "eslint-plugin-jest": "^28.10.0",
44
44
  "eslint-plugin-jest-dom": "^5.5.0",
45
45
  "eslint-plugin-jsdoc": "^50.6.1",
46
46
  "eslint-plugin-jsonc": "^2.18.2",
@@ -55,7 +55,7 @@
55
55
  "eslint-plugin-vue": "^9.32.0",
56
56
  "eslint-plugin-yml": "^1.16.0",
57
57
  "find-up": "^7.0.0",
58
- "globals": "^15.13.0",
58
+ "globals": "^15.14.0",
59
59
  "picomatch": "^4.0.2",
60
60
  "postcss-html": "^1.7.0",
61
61
  "stylelint-config-standard": "^36.0.1",
@@ -63,17 +63,17 @@
63
63
  "stylelint-config-standard-scss": "^14.0.0",
64
64
  "stylelint-config-standard-vue": "^1.0.0",
65
65
  "stylelint-plugin-license-header": "^1.0.3",
66
- "typescript-eslint": "^8.18.0",
66
+ "typescript-eslint": "^8.18.1",
67
67
  "vue-eslint-parser": "^9.4.3"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@types/confusing-browser-globals": "^1.0.3",
71
71
  "@types/picomatch": "^3.0.1",
72
- "@typescript-eslint/utils": "^8.18.0",
73
- "eslint": "^9.16.0",
72
+ "@typescript-eslint/utils": "^8.18.1",
73
+ "eslint": "^9.17.0",
74
74
  "jest": "^29.7.0",
75
75
  "rimraf": "^6.0.1",
76
- "stylelint": "^16.11.0",
76
+ "stylelint": "^16.12.0",
77
77
  "typescript": "^5.7.2"
78
78
  },
79
79
  "peerDependencies": {