Skip to content

Commit

Permalink
added jasmine overrides for eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
miketalley committed Apr 13, 2021
1 parent a52c600 commit 98199e0
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,18 @@ module.exports = {

overrides: [
{
files: [
'**/__tests__/**/*.js',
'**/__mocks__/**/*.js',
'acceptance-tests/tests/**/*.js',
],
files: ['**/__tests__/**/*.js', '**/__mocks__/**/*.js'],
env: {
jest: true,
node: true,
},
},
{
files: ['acceptance-tests/tests/**/*.js'],
env: {
jasmine: true,
node: true,
},
},
],
};

0 comments on commit 98199e0

Please sign in to comment.