Skip to content

Commit

Permalink
Merge pull request #118 from duckduckgo/shane/simply_mocks
Browse files Browse the repository at this point in the history
simplify mocks
  • Loading branch information
shakyShane authored Oct 5, 2023
2 parents 3a13880 + d80bfa5 commit dcc6427
Show file tree
Hide file tree
Showing 49 changed files with 1,656 additions and 2,694 deletions.
14 changes: 0 additions & 14 deletions .eslintrc

This file was deleted.

21 changes: 21 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
root: true,
globals: {
it: true,
Proxy: true,
},
env: {
browser: true,
webextensions: true,
node: true,
},
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/triple-slash-reference': 'off',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
},
}
Loading

0 comments on commit dcc6427

Please sign in to comment.