@yamato-daiwa/style_guides 0.11.1 → 0.11.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.
@@ -158,7 +158,8 @@ module.exports = {
158
158
  nestedConditionalExpressions: false,
159
159
  ignoredNodes: [
160
160
  "ArrowFunctionExpression[body.type=ConditionalExpression]"
161
- ]
161
+ ],
162
+ ignoreJSX: "all"
162
163
  }
163
164
  ],
164
165
 
@@ -17,9 +17,9 @@ module.exports = {
17
17
  "warn",
18
18
  {
19
19
  closingSlash: "never",
20
- beforeSelfClosing: "never",
20
+ beforeSelfClosing: "always",
21
21
  afterOpening: "never",
22
- beforeClosing: "allow"
22
+ beforeClosing: "never"
23
23
  }
24
24
  ],
25
25
  "@stylistic/jsx-wrap-multilines": [ "warn" ],
@@ -193,6 +193,8 @@ module.exports = {
193
193
  "@typescript-eslint/no-unnecessary-parameter-property-assignment": "error",
194
194
  "@typescript-eslint/no-unnecessary-template-expression": "warn",
195
195
 
196
+ "@typescript-eslint/no-useless-default-assignment": "error",
197
+
196
198
  "@typescript-eslint/return-await": "error",
197
199
 
198
200
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamato-daiwa/style_guides",
3
- "version": "0.11.1",
3
+ "version": "0.11.3",
4
4
  "description": "Strict guidelines for ESLint and Pug.",
5
5
  "engines": {
6
6
  "node": ">=18.18.0"
@@ -21,8 +21,8 @@
21
21
  "peerDependencies": {
22
22
  "@eslint-community/eslint-plugin-eslint-comments": "~4.5.0",
23
23
  "@stylistic/eslint-plugin": "~5.6.0",
24
- "@typescript-eslint/eslint-plugin": "~8.48.0",
25
- "@typescript-eslint/parser": "~8.48.0",
24
+ "@typescript-eslint/eslint-plugin": "~8.50.0",
25
+ "@typescript-eslint/parser": "~8.50.0",
26
26
  "eslint": "~9.39.0",
27
27
  "eslint-plugin-import": "~2.32.0",
28
28
  "eslint-plugin-n": "~17.23.0",
@@ -36,15 +36,15 @@
36
36
  "@stylistic/eslint-plugin": "5.6.1",
37
37
  "@types/node": "22.15.30",
38
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",
39
+ "@typescript-eslint/eslint-plugin": "8.50.1",
40
+ "@typescript-eslint/parser": "8.50.1",
41
+ "eslint": "9.39.2",
42
42
  "eslint-plugin-import": "2.32.0",
43
43
  "eslint-plugin-n": "17.23.1",
44
44
  "eslint-plugin-react": "7.37.5",
45
45
  "eslint-plugin-vue": "9.33.0",
46
46
  "eslint-plugin-vue-pug": "0.6.2",
47
- "react": "19.2.0",
47
+ "react": "19.2.3",
48
48
  "typescript": "5.9.3",
49
49
  "vue-facing-decorator": "3.0.4"
50
50
  },