@vitest/eslint-plugin 1.1.4 → 1.1.5

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/README.md CHANGED
@@ -46,7 +46,7 @@ Add `vitest` to the plugins section of your `.eslintrc` configuration file. You
46
46
 
47
47
  ```json
48
48
  {
49
- "plugins": ["vitest"]
49
+ "plugins": ["@vitest"]
50
50
  }
51
51
  ```
52
52
 
@@ -69,7 +69,7 @@ If you're using old Eslint configuration, make sure to use legacy key like the f
69
69
 
70
70
  ```js
71
71
  {
72
- "extends": ["plugin:vitest/legacy-recommended"] // or legacy-all
72
+ "extends": ["plugin:@vitest/legacy-recommended"] // or legacy-all
73
73
  }
74
74
  ```
75
75
 
package/dist/index.cjs CHANGED
@@ -23,7 +23,7 @@ function _interopNamespaceCompat(e) {
23
23
  const path__namespace = /*#__PURE__*/_interopNamespaceCompat(path);
24
24
  const ts__default = /*#__PURE__*/_interopDefaultCompat(ts);
25
25
 
26
- const version = "1.1.3";
26
+ const version = "1.1.4";
27
27
 
28
28
  function createEslintRule(rule) {
29
29
  const createRule = utils.ESLintUtils.RuleCreator(
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import { isAbsolute, posix } from 'node:path';
4
4
  import ts from 'typescript';
5
5
  import { createRequire } from 'node:module';
6
6
 
7
- const version = "1.1.3";
7
+ const version = "1.1.4";
8
8
 
9
9
  function createEslintRule(rule) {
10
10
  const createRule = ESLintUtils.RuleCreator(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitest/eslint-plugin",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "license": "MIT",
5
5
  "description": "Eslint plugin for vitest",
6
6
  "repository": "vitest-dev/eslint-plugin-vitest",
@@ -57,14 +57,8 @@
57
57
  "vitest": "*"
58
58
  },
59
59
  "peerDependenciesMeta": {
60
- "vitest": {
61
- "optional": true
62
- },
63
60
  "typescript": {
64
61
  "optional": true
65
- },
66
- "@typescript-eslint/utils": {
67
- "optional": true
68
62
  }
69
63
  },
70
64
  "scripts": {