Skip to content

Commit 0014231

Browse files
author
Serhat Bolsu
committed
switch eslint from mocha to jest
1 parent f735f97 commit 0014231

File tree

5 files changed

+133
-162
lines changed

5 files changed

+133
-162
lines changed

.eslintrc.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ module.exports = {
22
'env': {
33
'es6': true,
44
'browser': true,
5-
'mocha': true,
5+
"jest/globals": true
66
},
77
'extends': [
88
'google',
9-
"plugin:mocha/recommended"
9+
"plugin:jest/recommended",
10+
"plugin:jest/style"
1011
],
1112
'globals': {
1213
'Atomics': 'readonly',
@@ -26,6 +27,6 @@ module.exports = {
2627
"object-curly-spacing": ["error", "always"],
2728
},
2829
'plugins': [
29-
"mocha",
30+
"jest"
3031
],
3132
};

0 commit comments

Comments
 (0)