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 5a28a77 commit 671abd5Copy full SHA for 671abd5
.eslintrc.js
@@ -1,20 +1,22 @@
1
module.exports = {
2
extends: ["eslint:recommended"],
3
+ plugins: ["prettier"],
4
env: {
5
node: true,
6
es6: true,
7
jest: true
8
},
9
parserOptions: { ecmaVersion: 2017, sourceType: "module" },
10
rules: {
11
+ "prettier/prettier": "error",
12
"no-useless-escape": "off",
13
"quote-props": ["error", "as-needed"],
14
"no-dupe-keys": "error",
15
quotes: ["error", "double"],
16
"no-undef": "error",
17
"no-extra-semi": "error",
18
semi: "error",
- "no-template-curly-in-string": "error",
19
+ "no-tempate-curly-in-string": "error",
20
"no-caller": "error",
21
yoda: "error",
22
eqeqeq: "error",
0 commit comments