Skip to content

Commit 42bf8fe

Browse files
author
Loïc Mangeonjean
committed
fix: disable buggy import/extensions rule on demo
1 parent 5e3fff8 commit 42bf8fe

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

demo/.eslintrc

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"env": {
3+
"es6": true,
4+
"browser": true
5+
},
6+
"parserOptions": {
7+
"project": "./tsconfig.eslint.json"
8+
},
9+
"extends": [
10+
"@codingame"
11+
],
12+
"rules": {
13+
"import/extensions": ["off"],
14+
"@typescript-eslint/no-unused-vars": [
15+
"warn",
16+
{
17+
"argsIgnorePattern": "^_",
18+
"varsIgnorePattern": "^_",
19+
"caughtErrorsIgnorePattern": "^_"
20+
}
21+
]
22+
},
23+
"ignorePatterns": [
24+
"dist/**/*"
25+
]
26+
}

0 commit comments

Comments
 (0)