forked from HackYourFuture-CPH/CINEMANIA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
29 lines (29 loc) · 796 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"root": true,
"extends": ["eslint:recommended", "airbnb", "prettier"],
"rules": {
"arrow-body-style": "off",
"arrow-parens": "off",
"camelcase": "warn",
"consistent-return": "off",
"func-names": "off",
"import/extensions": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": ["**/*.stories.js", "**/*.test.js"]
}
],
"import/no-unresolved": "off",
"import/order": "off",
"import/no-default-export": "error",
"import/prefer-default-export": "off",
"jsx-a11y/label-has-associated-control": "off",
"no-console": "error",
"no-restricted-globals": "off",
"no-unexpected-multiline": "off",
"no-use-before-define": "off",
"no-var-requires": "off",
"quotes": "off"
}
}