30 lines
543 B
JSON
30 lines
543 B
JSON
{
|
|
"rules": {
|
|
"indent": [
|
|
true,
|
|
4,
|
|
"spaces"
|
|
],
|
|
"quotemark": [
|
|
"single"
|
|
],
|
|
"only-arrow-functions": [
|
|
false, "allow-declarations", "allow-named-functions"
|
|
],
|
|
"no-console": [false],
|
|
"prefer-const": false,
|
|
"member-access": false,
|
|
"no-unused-expression": true,
|
|
"no-duplicate-variable": true,
|
|
"object-literal-sort-keys" : false,
|
|
"curly": true,
|
|
"class-name": true,
|
|
"triple-equals": [
|
|
true
|
|
],
|
|
"semicolon": [
|
|
true,
|
|
"always"
|
|
]
|
|
}
|
|
} |