@yamato-daiwa/style_guides 0.10.1 → 0.11.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/ECMAScript.js CHANGED
@@ -105,13 +105,18 @@ module.exports = [
105
105
  languageOptions: {
106
106
  parser: typeScriptESLintParser,
107
107
  parserOptions: {
108
- ecmaFeatures: { jsx: true }
108
+ ecmaFeatures: { jsx: true },
109
+ projectService: true
109
110
  }
110
111
  },
111
112
  plugins: {
113
+ "@typescript-eslint": typeScriptPlugin,
112
114
  react: reactPlugin
113
115
  },
114
- rules: reactRules
116
+ rules: {
117
+ ...reactRules,
118
+ ...typeScriptRules
119
+ }
115
120
  },
116
121
 
117
122
  {
@@ -11,7 +11,6 @@ module.exports = {
11
11
  "@stylistic/jsx-indent-props": [ "warn", 2 ],
12
12
  "@stylistic/jsx-max-props-per-line": [ "warn" ],
13
13
  "@stylistic/jsx-one-expression-per-line": [ "warn", { allow: "single-child" } ],
14
- "@stylistic/jsx-props-no-multi-spaces": [ "warn" ],
15
14
  "@stylistic/jsx-quotes": [ "error" ],
16
15
  "@stylistic/jsx-self-closing-comp": [ "error" ],
17
16
  "@stylistic/jsx-tag-spacing": [
@@ -252,6 +252,8 @@ module.exports = {
252
252
  }
253
253
  ],
254
254
 
255
+ "@typescript-eslint/no-unused-private-class-members": "error",
256
+
255
257
  "no-unused-vars": "off",
256
258
  "@typescript-eslint/no-unused-vars": ECMA_ScriptBasicRules["no-unused-vars"],
257
259
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamato-daiwa/style_guides",
3
- "version": "0.10.1",
3
+ "version": "0.11.1",
4
4
  "description": "Strict guidelines for ESLint and Pug.",
5
5
  "engines": {
6
6
  "node": ">=18.18.0"
@@ -20,10 +20,10 @@
20
20
  "license": "MIT",
21
21
  "peerDependencies": {
22
22
  "@eslint-community/eslint-plugin-eslint-comments": "~4.5.0",
23
- "@stylistic/eslint-plugin": "~5.4.0",
24
- "@typescript-eslint/eslint-plugin": "~8.46.0",
25
- "@typescript-eslint/parser": "~8.46.0",
26
- "eslint": "~9.38.0",
23
+ "@stylistic/eslint-plugin": "~5.6.0",
24
+ "@typescript-eslint/eslint-plugin": "~8.48.0",
25
+ "@typescript-eslint/parser": "~8.48.0",
26
+ "eslint": "~9.39.0",
27
27
  "eslint-plugin-import": "~2.32.0",
28
28
  "eslint-plugin-n": "~17.23.0",
29
29
  "eslint-plugin-react": "~7.37.0",
@@ -33,12 +33,12 @@
33
33
  },
34
34
  "devDependencies": {
35
35
  "@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
36
- "@stylistic/eslint-plugin": "5.4.0",
36
+ "@stylistic/eslint-plugin": "5.6.1",
37
37
  "@types/node": "22.15.30",
38
- "@types/react": "19.2.2",
39
- "@typescript-eslint/eslint-plugin": "8.46.1",
40
- "@typescript-eslint/parser": "8.46.1",
41
- "eslint": "9.38.0",
38
+ "@types/react": "19.2.7",
39
+ "@typescript-eslint/eslint-plugin": "8.48.0",
40
+ "@typescript-eslint/parser": "8.48.0",
41
+ "eslint": "9.39.1",
42
42
  "eslint-plugin-import": "2.32.0",
43
43
  "eslint-plugin-n": "17.23.1",
44
44
  "eslint-plugin-react": "7.37.5",