We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a979f2 + 0e6e72d commit 93fe4edCopy full SHA for 93fe4ed
.eslintrc
@@ -9,31 +9,19 @@
9
},
10
"extends": [
11
"eslint:recommended",
12
- "plugin:import/errors",
13
- "plugin:import/warnings",
14
- "prettier"
15
- ],
16
- "plugins": [
17
"prettier",
18
- "jest"
+ "plugin:prettier/recommended",
+ "plugin:import/errors",
+ "plugin:import/warnings"
19
],
+ "plugins": ["prettier", "jest"],
20
"rules": {
21
- "prettier/prettier": [
22
- "error",
23
- {
24
- "singleQuote": true,
25
- "tabWidth": 4,
26
- "trailingComma": "es5"
27
- }
28
+ "prettier/prettier": ["error"],
29
"import/no-extraneous-dependencies": "off",
30
"no-console": [
31
"error",
32
{
33
- "allow": [
34
- "warn",
35
- "error"
36
- ]
+ "allow": ["warn", "error"]
37
}
38
39
"no-unused-vars": [
0 commit comments