Skip to content

Commit 952edbb

Browse files
committed
feat!: remove eslint-plugin-jest dependency (resolves #180)
BREAKING CHANGE: You have to manually add jest plugin and `jest/globals` to the `env` object in eslint config
1 parent 80f0b89 commit 952edbb

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

packages/eslint-config/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
module.exports = {
22
env: {
33
browser: true,
4-
node: true,
5-
'jest/globals': true
4+
node: true
65
},
76
extends: [
87
'standard',
@@ -11,7 +10,6 @@ module.exports = {
1110
'plugin:vue/recommended'
1211
],
1312
plugins: [
14-
'jest',
1513
'unicorn',
1614
'vue'
1715
],

packages/eslint-config/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"dependencies": {
1111
"eslint-config-standard": "^17.0.0",
1212
"eslint-plugin-import": "^2.26.0",
13-
"eslint-plugin-jest": "^26.1.5",
1413
"eslint-plugin-n": "^15.2.0",
1514
"eslint-plugin-node": "^11.1.0",
1615
"eslint-plugin-promise": "^6.0.0",

0 commit comments

Comments
 (0)