-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
37 lines (37 loc) · 799 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
30
31
32
33
34
35
36
37
{
"extends": [
"@antfu",
"prettier"
],
"parserOptions": {
"sourceType": "module"
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "none",
"semi": true,
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "ignore",
"vueIndentScriptAndStyle": true,
"endOfLine": "lf",
"useTabs": true,
"tabWidth": 2,
"jsxBracketSameLine": true,
"jsxSingleQuote": true,
"requireConfig": true,
"printWidth": 120
}
],
"antfu/if-newline": "off",
"eslint-comments/no-unlimited-disable": "off",
"arrow-body-style": "off",
"prefer-arrow-callback": "off",
"no-console": "off"
}
}