@tb-dev/eslint-config 1.4.0 → 1.4.2

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/dist/index.cjs CHANGED
@@ -773,7 +773,7 @@ async function vue(options) {
773
773
  'vue/prefer-true-attribute-shorthand': 'error',
774
774
  'vue/prop-name-casing': ['error', 'camelCase'],
775
775
  'vue/require-component-is': 'error',
776
- 'vue/require-default-prop': 'error',
776
+ 'vue/require-default-prop': 'off',
777
777
  'vue/require-explicit-emits': [
778
778
  'error',
779
779
  {
package/dist/index.mjs CHANGED
@@ -771,7 +771,7 @@ async function vue(options) {
771
771
  'vue/prefer-true-attribute-shorthand': 'error',
772
772
  'vue/prop-name-casing': ['error', 'camelCase'],
773
773
  'vue/require-component-is': 'error',
774
- 'vue/require-default-prop': 'error',
774
+ 'vue/require-default-prop': 'off',
775
775
  'vue/require-explicit-emits': [
776
776
  'error',
777
777
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tb-dev/eslint-config",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "description": "ESLint config",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -35,7 +35,7 @@
35
35
  "eslint": "^8.54.0",
36
36
  "husky": "^8.0.3",
37
37
  "lint-staged": "^15.1.0",
38
- "miho": "^1.7.11",
38
+ "miho": "^1.7.13",
39
39
  "npm-run-all2": "^6.1.1",
40
40
  "prettier": "^3.1.0",
41
41
  "rollup": "^4.6.1",
@@ -63,14 +63,12 @@
63
63
  }
64
64
  },
65
65
  "scripts": {
66
- "build": "pnpm rollup",
66
+ "build": "rollup --config rollup.config.js",
67
67
  "deps": "pnpm exec taze -w -f",
68
68
  "format": "pnpm exec prettier . --write",
69
69
  "format-check": "pnpm exec prettier . --check",
70
70
  "lint": "eslint . --config eslint.config.js --cache",
71
- "minify": "pnpm exec minify-it dist",
72
71
  "release": "miho -l publish",
73
- "rollup": "rollup --config rollup.config.js",
74
72
  "typecheck": "tsc --noEmit"
75
73
  }
76
74
  }