Skip to content

Commit 503e1a2

Browse files
committed
MERC-8255 Fix npm vulnerabilities
1 parent 6ef6f58 commit 503e1a2

File tree

5 files changed

+16436
-8873
lines changed

5 files changed

+16436
-8873
lines changed

.eslintrc.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,19 @@ module.exports = {
3131
"@typescript-eslint/no-var-requires": "off",
3232
"import/no-extraneous-dependencies": "off",
3333
"@typescript-eslint/camelcase": "off",
34+
"indent": ["error", 4],
3435
"max-len": [1, 120, 4],
3536
"no-plusplus": "off",
3637
"global-require": "off",
3738
"@typescript-eslint/explicit-function-return-type": "off",
39+
"import/extensions": "off"
3840
},
3941
overrides: [
4042
{
41-
files: ['*.test.tsx'],
43+
files: ['*.test.tsx', '*.test.ts'],
4244
rules: {
43-
"no-undef": "off"
45+
"no-undef": "off",
46+
"@typescript-eslint/no-explicit-any": "off"
4447
}
4548
}
4649
],

0 commit comments

Comments
 (0)