Skip to content

Commit c8e0c42

Browse files
committed
🐛 fix eslint and prettier
1 parent cdbd04a commit c8e0c42

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.eslintrc.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
"plugins": ["prettier"],
1818
"rules": {
1919
"prettier/prettier": "error",
20-
"no-console": "off"
20+
"no-console": "off",
21+
"class-methods-use-this": "off",
22+
"no-param-reassign": "off",
23+
"camelcase": "off",
24+
"no-unused-vars": ["error", { "argsIgnorePattern": "next" }]
2125
}
2226
}

prettier.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
module.exports = {
22
singleQuote: true,
3-
tabWidth: 2,
4-
semi: true,
53
trailingComma: 'es5',
64
};

0 commit comments

Comments
 (0)