mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
47 lines
1016 B
Plaintext
47 lines
1016 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
4
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"space-unary-ops": 2,
|
|
"no-undef": "off",
|
|
"consistent-return": "off",
|
|
"no-prototype-builtins": "off",
|
|
"no-cond-assign": "off",
|
|
"multiline-ternary": [
|
|
"error",
|
|
"always-multiline"
|
|
],
|
|
"object-property-newline": [
|
|
"error",
|
|
{
|
|
"allowAllPropertiesOnSameLine": false
|
|
}
|
|
],
|
|
"function-call-argument-newline": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"object-curly-newline": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"comma-dangle": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"function-paren-newline": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"no-trailing-spaces": [
|
|
"error"
|
|
]
|
|
}
|
|
} |