Skip to content

Commit 38307b9

Browse files
authored
chore: integrate linting
1 parent 10a29f4 commit 38307b9

File tree

3 files changed

+2420
-44
lines changed

3 files changed

+2420
-44
lines changed

.eslintrc.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
extends: [
3+
'eslint:recommended',
4+
'plugin:@typescript-eslint/recommended',
5+
'prettier',
6+
],
7+
parser: '@typescript-eslint/parser',
8+
plugins: ['@typescript-eslint'],
9+
root: true,
10+
env: { browser: true, node: true },
11+
rules: {
12+
'@typescript-eslint/no-explicit-any': 'off',
13+
'@typescript-eslint/no-unused-vars': 'off',
14+
},
15+
};

0 commit comments

Comments
 (0)