-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
27 lines (27 loc) · 917 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
{
"extends": [
"@antfu",
// "stylelint-config-standard-scss", // configure for SCSS
// "stylelint-config-recommended-vue", // add overrides for .Vue files
// "stylelint-config-recess-order", // use the recess order for properties
// "stylelint-config-css-modules", // configure for CSS Modules methodology
// "stylelint-config-prettier" // turn off any rules that conflict with Prettier],
],
"rules": {
"quotes": [
"error",
"double"
],
"@typescript-eslint/quotes": [
"error",
"double"
],
"@typescript-eslint/semi": ["error", "always"],
"curly": ["error", "all"],
"no-console": "off",
"@typescript-eslint/brace-style": ["error", "1tbs", { "allowSingleLine": true }],
// "import/no-mutable-exports": "off",
// "no-import-assign": "off",
"max-len": ["error", { "code": 120 }],
}
}