@pawover/eslint-rules 0.0.0-alpha.10 → 0.0.0-alpha.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.
@@ -81,7 +81,7 @@ export default {
81
81
  "stylistic/object-curly-spacing": [2, "always"],
82
82
  "stylistic/object-property-newline": [2, { allowAllPropertiesOnSameLine: true }],
83
83
  "stylistic/one-var-declaration-per-line": 2,
84
- "stylistic/operator-linebreak": [2, "after", { overrides: { "?": "ignore", ":": "ignore" } }],
84
+ "stylistic/operator-linebreak": [2, "after", { overrides: { "?": "ignore", ":": "ignore", "|": "before" } }],
85
85
  "stylistic/padded-blocks": 0,
86
86
  "stylistic/padding-line-between-statements": [
87
87
  2,
@@ -63,7 +63,7 @@ export default {
63
63
  "ts/no-for-in-array": 0,
64
64
  "ts/no-implied-eval": 2,
65
65
  "ts/no-import-type-side-effects": 2,
66
- "ts/no-inferrable-types": 2,
66
+ "ts/no-inferrable-types": [2, { ignoreParameters: false, ignoreProperties: true }],
67
67
  "ts/no-invalid-void-type": 2,
68
68
  "ts/no-loop-func": 0,
69
69
  "ts/no-magic-numbers": 0,
package/dist/core.vue.js CHANGED
@@ -246,7 +246,7 @@ export default {
246
246
  "vue/object-curly-spacing": [2, "always"],
247
247
  "vue/object-property-newline": [2, { allowAllPropertiesOnSameLine: true }],
248
248
  "vue/object-shorthand": 0,
249
- "vue/operator-linebreak": [2, "after", { overrides: { "?": "ignore", ":": "ignore" } }],
249
+ "vue/operator-linebreak": [2, "after", { overrides: { "?": "ignore", ":": "ignore", "|": "before" } }],
250
250
  "vue/prefer-template": 0,
251
251
  "vue/quote-props": [2, "consistent-as-needed"],
252
252
  "vue/space-in-parens": 2,
@@ -93,6 +93,7 @@ declare const _default: {
93
93
  overrides: {
94
94
  "?": string;
95
95
  ":": string;
96
+ "|": string;
96
97
  };
97
98
  })[];
98
99
  "stylistic/padded-blocks": number;
@@ -1 +1 @@
1
- {"version":3,"file":"core.stylistic.d.ts","sourceRoot":"","sources":["../../src/core.stylistic.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAmHE"}
1
+ {"version":3,"file":"core.stylistic.d.ts","sourceRoot":"","sources":["../../src/core.stylistic.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAmHE"}
@@ -74,7 +74,10 @@ declare const _default: {
74
74
  "ts/no-for-in-array": number;
75
75
  "ts/no-implied-eval": number;
76
76
  "ts/no-import-type-side-effects": number;
77
- "ts/no-inferrable-types": number;
77
+ "ts/no-inferrable-types": (number | {
78
+ ignoreParameters: boolean;
79
+ ignoreProperties: boolean;
80
+ })[];
78
81
  "ts/no-invalid-void-type": number;
79
82
  "ts/no-loop-func": number;
80
83
  "ts/no-magic-numbers": number;
@@ -1 +1 @@
1
- {"version":3,"file":"core.typescript.d.ts","sourceRoot":"","sources":["../../src/core.typescript.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAiJE"}
1
+ {"version":3,"file":"core.typescript.d.ts","sourceRoot":"","sources":["../../src/core.typescript.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAiJE"}
@@ -272,6 +272,7 @@ declare const _default: {
272
272
  overrides: {
273
273
  "?": string;
274
274
  ":": string;
275
+ "|": string;
275
276
  };
276
277
  })[];
277
278
  "vue/prefer-template": number;
@@ -1 +1 @@
1
- {"version":3,"file":"core.vue.d.ts","sourceRoot":"","sources":["../../src/core.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAuQE"}
1
+ {"version":3,"file":"core.vue.d.ts","sourceRoot":"","sources":["../../src/core.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAuQE"}
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "description": "pawover's esLint rules",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
- "version": "0.0.0-alpha.10",
7
+ "version": "0.0.0-alpha.11",
8
8
  "packageManager": "pnpm@10.20.0",
9
9
  "engines": {
10
10
  "node": ">=22.20.0"
@@ -54,7 +54,7 @@
54
54
  "devDependencies": {
55
55
  "@eslint-react/eslint-plugin": "^2.3.13",
56
56
  "@stylistic/eslint-plugin": "^5.6.1",
57
- "eslint": "^9.39.1",
57
+ "eslint": "^9.39.2",
58
58
  "eslint-plugin-antfu": "^3.1.1",
59
59
  "eslint-plugin-react-hooks": "^7.0.1",
60
60
  "eslint-plugin-vue": "^10.6.2",