-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.cjs
45 lines (45 loc) · 946 Bytes
/
.eslintrc.cjs
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: ["airbnb-base"],
parserOptions: {
ecmaVersion: 12,
sourceType: "module",
},
plugins: ["prettier"],
rules: {
"prettier/prettier": [
"error",
{
bracketSpacing: true,
tabWidth: 2,
printWidth: 80,
useTabs: false,
endOfLine: "auto",
semi: true,
},
],
semi: ["error", "always"],
quotes: ["error", "double"],
"no-console": "off",
"import/extensions": 0,
"no-unused-vars": [
"error",
{ vars: "all", varsIgnorePattern: "^_*$", argsIgnorePattern: "^_*$" },
],
"implicit-arrow-linebreak": 0,
"linebreak-style": 0,
},
overrides: [
{
files: ["*.graphql"],
parser: "@graphql-eslint/eslint-plugin",
plugins: ["@graphql-eslint"],
parserOptions: {
schema: "./schemas/schema.graphql",
},
},
],
};