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 cdbd04a commit c8e0c42Copy full SHA for c8e0c42
.eslintrc.json
@@ -17,6 +17,10 @@
17
"plugins": ["prettier"],
18
"rules": {
19
"prettier/prettier": "error",
20
- "no-console": "off"
+ "no-console": "off",
21
+ "class-methods-use-this": "off",
22
+ "no-param-reassign": "off",
23
+ "camelcase": "off",
24
+ "no-unused-vars": ["error", { "argsIgnorePattern": "next" }]
25
}
26
prettier.config.js
@@ -1,6 +1,4 @@
1
module.exports = {
2
singleQuote: true,
3
- tabWidth: 2,
4
- semi: true,
5
trailingComma: 'es5',
6
};
0 commit comments