Skip to content

Commit 7010c6a

Browse files
add .eslintrc.js file for passing CI
1 parent 0888eda commit 7010c6a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.eslintrc.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module.exports = {
2+
root: true,
3+
extends: ['prettier'],
4+
parser: '@typescript-eslint/parser',
5+
parserOptions: {
6+
ecmaVersion: 2020,
7+
sourceType: 'module',
8+
ecmaFeatures: {
9+
jsx: true,
10+
},
11+
},
12+
13+
settings: {
14+
react: {
15+
version: 'detect',
16+
},
17+
},
18+
ignorePatterns: ['node_modules/', 'lib/'],
19+
};

0 commit comments

Comments
 (0)