Skip to content

Commit

Permalink
Fix eslintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
mkszepp committed Aug 4, 2023
1 parent be9cf0e commit dfe972c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ module.exports = {
'no-console': ['error'],
'no-var': ['error'],
'prefer-const': ['error'],
'qunit/require-expect': 'off',
},
overrides: [
// node files
Expand Down Expand Up @@ -57,6 +56,9 @@ module.exports = {
// test files
files: ['tests/**/*-test.{js,ts}'],
extends: ['plugin:qunit/recommended'],
rules: {
'qunit/require-expect': 'off',
},
},
],
};
4 changes: 3 additions & 1 deletion test-app/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ module.exports = {
'no-console': ['error'],
'no-var': ['error'],
'prefer-const': ['error'],
'qunit/require-expect': 'off',
},
overrides: [
// node files
Expand Down Expand Up @@ -57,6 +56,9 @@ module.exports = {
// test files
files: ['tests/**/*-test.{js,ts}'],
extends: ['plugin:qunit/recommended'],
rules: {
'qunit/require-expect': 'off',
},
},
],
};

0 comments on commit dfe972c

Please sign in to comment.