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 c9ca48e commit b43a459Copy full SHA for b43a459
eslint.config.js
@@ -22,11 +22,14 @@ export default [
22
},
23
24
rules: {
25
- "no-unused-vars": ["error", {
26
- "varsIgnorePattern": "^_",
27
- "argsIgnorePattern": "^_",
28
- "caughtErrorsIgnorePattern": "^_"
29
- }],
+ "no-unused-vars": [
+ "error",
+ {
+ varsIgnorePattern: "^_",
+ argsIgnorePattern: "^_",
30
+ caughtErrorsIgnorePattern: "^_",
31
+ },
32
+ ],
33
34
35
];
package.json
@@ -79,6 +79,6 @@
79
"eslint --cache --fix",
80
"prettier --write"
81
],
82
- "*.{css,md,html}": "prettier --write"
+ "*.!(js)": "prettier --write"
83
}
84
0 commit comments