Skip to content

Commit 6f58d3b

Browse files
committed
test: lint evo sdk tests
1 parent dca9e00 commit 6f58d3b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
module.exports = {
2+
parser: '@typescript-eslint/parser',
3+
parserOptions: {
4+
project: ['../tsconfig.json'],
5+
tsconfigRootDir: __dirname,
6+
},
7+
env: {
8+
es2020: true,
9+
browser: true,
10+
node: true,
11+
},
12+
extends: [
13+
'airbnb-base',
14+
'airbnb-typescript/base',
15+
],
16+
plugins: [
17+
'@typescript-eslint',
18+
],
19+
rules: {
20+
'import/extensions': 'off',
21+
'@typescript-eslint/no-explicit-any': 'off',
22+
},
23+
ignorePatterns: [
24+
'*.d.ts',
25+
],
26+
};

0 commit comments

Comments
 (0)