@@ -12,7 +12,6 @@ module.exports = {
1212 commonjs : true , // Needed to avoid import is reserved error
1313 node : true ,
1414 browser : true ,
15- jest : true ,
1615 } ,
1716 parser : 'babel-eslint' ,
1817 extends : [
@@ -46,25 +45,18 @@ module.exports = {
4645 env : {
4746 browser : true ,
4847 es2020 : true ,
49- 'jest/globals' : true ,
5048 node : true ,
51- jasmine : true ,
5249 } ,
5350 globals : {
5451 instantsearch : true ,
5552 instantMeiliSearch : true ,
56- page : true , // for jest/puppeteer tests in tests/env/express
57- browser : true , // for jest/puppeteer tests in tests/env/express
58- context : true , // for jest/puppeteer tests in tests/env/express
59- jestPuppeteer : true , // for jest/puppeteer tests in tests/env/express
6053 } ,
6154 extends : [
6255 'standard' ,
6356 'plugin:prettier/recommended' ,
6457 'eslint:recommended' ,
6558 'plugin:cypress/recommended' ,
6659 ] ,
67- plugins : [ 'jest' ] ,
6860 parserOptions : {
6961 ecmaVersion : 2020 ,
7062 } ,
@@ -111,14 +103,6 @@ module.exports = {
111103 env : {
112104 browser : true ,
113105 es2020 : true ,
114- 'jest/globals' : true ,
115- jasmine : true ,
116- } ,
117- globals : {
118- page : true , // for jest/puppeteer tests in tests/env/express
119- browser : true , // for jest/puppeteer tests in tests/env/express
120- context : true , // for jest/puppeteer tests in tests/env/express
121- jestPuppeteer : true , // for jest/puppeteer tests in tests/env/express
122106 } ,
123107 extends : [
124108 'standard' ,
@@ -134,7 +118,7 @@ module.exports = {
134118 projectFolderIgnoreList : [ 'dist' ] ,
135119 } ,
136120
137- plugins : [ 'jsdoc' , '@typescript-eslint' , 'jest' ] ,
121+ plugins : [ 'jsdoc' , '@typescript-eslint' ] ,
138122 rules : {
139123 '@typescript-eslint/no-empty-interface' : 'off' , // Due to vue-instantsearch not having typings
140124 'no-dupe-class-members' : 'off' , // Off due to conflict with typescript overload functions
0 commit comments