@vitest/eslint-plugin 1.2.7 → 1.3.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitest/eslint-plugin",
3
- "version": "1.2.7",
3
+ "version": "1.3.0",
4
4
  "license": "MIT",
5
5
  "description": "Eslint plugin for vitest",
6
6
  "repository": "vitest-dev/eslint-plugin-vitest",
@@ -76,6 +76,11 @@
76
76
  "optional": true
77
77
  }
78
78
  },
79
+ "prettier": {
80
+ "semi": false,
81
+ "singleQuote": true,
82
+ "endOfLine": "auto"
83
+ },
79
84
  "scripts": {
80
85
  "build": "unbuild --config unbuild.config.ts",
81
86
  "lint:eslint-docs": "pnpm build && eslint-doc-generator --check",
@@ -87,7 +92,6 @@
87
92
  "format:check": "npx prettier 'src/**/*.ts' --check",
88
93
  "format:fix": "npx prettier '**/*.{ts,js}' --write",
89
94
  "test": "vitest",
90
- "generate": "tsx scripts/generate.ts",
91
95
  "update:eslint-docs": "pnpm build && eslint-doc-generator",
92
96
  "tsc": "tsc --noEmit"
93
97
  }