We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2f2552 commit adc0ce4Copy full SHA for adc0ce4
1 file changed
.eslintrc.json
@@ -5,6 +5,7 @@
5
"node": true,
6
"jest": true
7
},
8
+ "plugins": ["imports"],
9
"extends": "eslint:recommended",
10
"globals": {
11
"Atomics": "readonly",
@@ -14,5 +15,16 @@
14
15
"ecmaVersion": 2018,
16
"sourceType": "module"
17
- "rules": {}
18
+ "rules": {
19
+ "import/extensions": [
20
+ "error",
21
+ "ignorePackages",
22
+ {
23
+ "js": "never",
24
+ "mjs": "never",
25
+ "jsx": "never",
26
+ "ts": "never"
27
+ }
28
+ ]
29
30
}
0 commit comments