mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
32 lines
804 B
JSON
32 lines
804 B
JSON
{
|
|
"env": {
|
|
"es6": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest"
|
|
},
|
|
"rules": {
|
|
"indent": [2, 2, {"SwitchCase": 1, "VariableDeclarator": 2}],
|
|
"curly": [2, "all"],
|
|
"operator-linebreak": [2, "after"],
|
|
"camelcase": [2, {"properties": "never"}],
|
|
"quotes": [2, "single"],
|
|
"no-multi-str": 2,
|
|
"no-mixed-spaces-and-tabs": 2,
|
|
"space-unary-ops": [2,
|
|
{
|
|
"nonwords": false,
|
|
"overrides": {}
|
|
}
|
|
],
|
|
"brace-style": [2, "1tbs", {"allowSingleLine": true}],
|
|
"keyword-spacing": [2, {}],
|
|
"space-infix-ops": 2,
|
|
"space-before-blocks": [2, "always"],
|
|
"eol-last": 2,
|
|
"space-before-function-paren": [2, "always"],
|
|
"array-bracket-spacing": [2, "never", {"singleValue": false}],
|
|
"space-in-parens": [2, "never"]
|
|
}
|
|
}
|