@pawover/eslint-rules 0.0.0-beta.11 → 0.0.0-beta.12

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.
@@ -50,8 +50,8 @@ export default {
50
50
  "no-unsafe-finally": 2,
51
51
  "no-unsafe-negation": 2,
52
52
  "no-unsafe-optional-chaining": 2,
53
- "no-unused-private-class-members": 2,
54
- "no-unused-vars": [2, { vars: "local", args: "none", caughtErrors: "none", varsIgnorePattern: "^_", destructuredArrayIgnorePattern: "^_" }],
53
+ "no-unused-private-class-members": 1,
54
+ "no-unused-vars": [1, { vars: "local", args: "none", caughtErrors: "none", varsIgnorePattern: "^_", destructuredArrayIgnorePattern: "^_" }],
55
55
  "no-use-before-define": [2, { functions: false, classes: false, variables: false, allowNamedExports: false }],
56
56
  "no-useless-assignment": 0,
57
57
  "no-useless-backreference": 2,
@@ -156,8 +156,8 @@ export default {
156
156
  "no-undefined": 0,
157
157
  "no-underscore-dangle": 0,
158
158
  "no-unneeded-ternary": 2,
159
- "no-unused-expressions": [2, { ignoreDirectives: true, allowShortCircuit: true }],
160
- "no-unused-labels": 2,
159
+ "no-unused-expressions": [1, { ignoreDirectives: true, allowShortCircuit: true }],
160
+ "no-unused-labels": 1,
161
161
  "no-useless-call": 2,
162
162
  "no-useless-catch": 2,
163
163
  "no-useless-computed-key": 2,
@@ -49,8 +49,8 @@ export default {
49
49
  "react-x/no-unstable-context-value": 2,
50
50
  "react-x/no-unstable-default-props": 2,
51
51
  "react-x/no-unused-class-component-members": 1,
52
- "react-x/no-unused-props": 2,
53
- "react-x/no-unused-state": 2,
52
+ "react-x/no-unused-props": 1,
53
+ "react-x/no-unused-state": 1,
54
54
  "react-x/no-use-context": 2,
55
55
  "react-x/no-useless-fragment": 2,
56
56
  "react-x/prefer-destructuring-assignment": 2,
@@ -102,8 +102,8 @@ export default {
102
102
  "ts/no-unsafe-return": 0,
103
103
  "ts/no-unsafe-type-assertion": 0,
104
104
  "ts/no-unsafe-unary-minus": 2,
105
- "ts/no-unused-expressions": [2, { ignoreDirectives: true, allowShortCircuit: true }],
106
- "ts/no-unused-vars": [2, { vars: "local", args: "none", caughtErrors: "none", varsIgnorePattern: "^_", destructuredArrayIgnorePattern: "^_" }],
105
+ "ts/no-unused-expressions": [1, { ignoreDirectives: true, allowShortCircuit: true }],
106
+ "ts/no-unused-vars": [1, { vars: "local", args: "none", caughtErrors: "none", varsIgnorePattern: "^_", destructuredArrayIgnorePattern: "^_" }],
107
107
  "ts/no-use-before-define": [2, { functions: false, classes: false, variables: false, allowNamedExports: false }],
108
108
  "ts/no-useless-constructor": 0,
109
109
  "ts/no-useless-empty-export": 0,
package/dist/core.vue.js CHANGED
@@ -23,8 +23,8 @@ export default {
23
23
  "vue/no-side-effects-in-computed-properties": 2,
24
24
  "vue/no-template-key": 2,
25
25
  "vue/no-textarea-mustache": 2,
26
- "vue/no-unused-components": 2,
27
- "vue/no-unused-vars": 2,
26
+ "vue/no-unused-components": 1,
27
+ "vue/no-unused-vars": 1,
28
28
  "vue/no-use-computed-property-like-method": 2,
29
29
  "vue/no-use-v-if-with-v-for": 2,
30
30
  "vue/no-useless-template-attributes": 2,
@@ -181,7 +181,7 @@ export default {
181
181
  "vue/no-unsupported-features": 0,
182
182
  "vue/no-unused-emit-declarations": 0,
183
183
  "vue/no-unused-properties": 1,
184
- "vue/no-unused-refs": 2,
184
+ "vue/no-unused-refs": 1,
185
185
  "vue/no-use-v-else-with-v-for": 0,
186
186
  "vue/no-useless-mustaches": 2,
187
187
  "vue/no-useless-v-bind": 2,
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-beta.11",
7
+ "version": "0.0.0-beta.12",
8
8
  "packageManager": "pnpm@10.28.2",
9
9
  "engines": {
10
10
  "node": ">=22.22.0"
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "scripts": {
41
41
  "build": "pnpm clean:output && tsc -p tsconfig.build.json",
42
- "public": "pnpm build && npm publish --access public",
42
+ "public": "pnpm build && npm publish --access public --tag bate",
43
43
  "check": "pnpm check:types & pnpm check:eslint & pnpm check:format",
44
44
  "check:types": "tsc --noEmit",
45
45
  "check:eslint": "pnpm build && pnpm eslint --fix \"**/*.{js,cjs,mjs,ts,cts,mts,jsx,tsx,vue}\" --cache-location=.cache/eslint.cache.json --cache",