@yamato-daiwa/style_guides 0.1.2 → 0.1.4

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.
@@ -204,9 +204,9 @@ module.exports = {
204
204
  ],
205
205
 
206
206
  "logical-assignment-operators": [ "warn", "never" ],
207
- "max-statements-per-line": [ "warn", { max: 2 } ],
208
- "new-parens": "error",
209
- "newline-per-chained-call": [ "warn", { ignoreChainWithDepth: 2 } ],
207
+ "@stylistic/max-statements-per-line": [ "warn", { max: 2 } ],
208
+ "@stylistic/new-parens": "error",
209
+ "@stylistic/newline-per-chained-call": [ "warn", { ignoreChainWithDepth: 2 } ],
210
210
  "no-whitespace-before-property": "warn",
211
211
  "object-curly-newline": [ "warn", { consistent: true } ],
212
212
  "object-curly-spacing": [ "warn", "always" ],
@@ -234,16 +234,16 @@ module.exports = {
234
234
  { "beforeBlockComment": true }
235
235
  ],
236
236
 
237
- // "@stylistic/lines-between-class-members": [
238
- // "warn",
239
- // {
240
- // enforce: [
241
- // { blankLine: "always", prev: "field", next: "method" },
242
- // { blankLine: "always", prev: "method", next: "method" },
243
- // { blankLine: "always", prev: "method", next: "filed" }
244
- // ]
245
- // }
246
- // ],
237
+ "@stylistic/lines-between-class-members": [
238
+ "warn",
239
+ {
240
+ enforce: [
241
+ { blankLine: "always", prev: "field", next: "method" },
242
+ { blankLine: "always", prev: "method", next: "method" },
243
+ { blankLine: "always", prev: "method", next: "field" }
244
+ ]
245
+ }
246
+ ],
247
247
 
248
248
  "@stylistic/max-len": [
249
249
  "warn",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamato-daiwa/style_guides",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "The guidelines for ESLint, Pug and Stylus.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,26 +16,26 @@
16
16
  ],
17
17
  "license": "MIT",
18
18
  "peerDependencies": {
19
- "@stylistic/eslint-plugin": "~1.6.1",
20
- "@typescript-eslint/eslint-plugin": "~6.18.1",
21
- "@typescript-eslint/parser": "~6.18.1",
19
+ "@stylistic/eslint-plugin": "~1.6.2",
20
+ "@typescript-eslint/eslint-plugin": "~7.0.2",
21
+ "@typescript-eslint/parser": "~7.0.2",
22
22
  "eslint": "~8.56.0",
23
23
  "eslint-plugin-import": "~2.29.1",
24
24
  "eslint-plugin-node": "~11.1.0",
25
25
  "eslint-plugin-react": "~7.33.2",
26
- "eslint-plugin-vue": "~9.20.1",
26
+ "eslint-plugin-vue": "~9.22.0",
27
27
  "eslint-plugin-vue-pug": "~0.6.1",
28
28
  "typescript": "~5.3.3"
29
29
  },
30
30
  "devDependencies": {
31
- "@stylistic/eslint-plugin": "1.6.1",
32
- "@typescript-eslint/eslint-plugin": "6.21.0",
33
- "@typescript-eslint/parser": "6.21.0",
31
+ "@stylistic/eslint-plugin": "1.6.2",
32
+ "@typescript-eslint/eslint-plugin": "7.0.2",
33
+ "@typescript-eslint/parser": "7.0.2",
34
34
  "eslint": "8.56.0",
35
35
  "eslint-plugin-import": "2.29.1",
36
36
  "eslint-plugin-node": "11.1.0",
37
37
  "eslint-plugin-react": "7.33.2",
38
- "eslint-plugin-vue": "9.21.1",
38
+ "eslint-plugin-vue": "9.22.0",
39
39
  "eslint-plugin-vue-pug": "0.6.1",
40
40
  "typescript": "5.3.3"
41
41
  },