Skip to content

Commit 9ad0c6f

Browse files
authored
Fix windows issues (#21)
1 parent 3e8eb9d commit 9ad0c6f

File tree

7 files changed

+39011
-8989
lines changed

7 files changed

+39011
-8989
lines changed

.eslintrc.js

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ module.exports = {
66
'import/no-unresolved': 'error',
77
// Since React 17 and typescript 4.1 you can safely disable the rule
88
'react/react-in-jsx-scope': 'off',
9+
'import/extensions': [
10+
'error',
11+
'ignorePackages',
12+
{
13+
js: 'off',
14+
jsx: 'off',
15+
ts: 'off',
16+
tsx: 'off',
17+
},
18+
],
919
},
1020
parserOptions: {
1121
ecmaVersion: 2020,

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ npm-debug.log.*
2828
*.css.d.ts
2929
*.sass.d.ts
3030
*.scss.d.ts
31+
.gitconfig

0 commit comments

Comments
 (0)