Files
eslint-config/src/rules/eslint.json
T

82 lines
1.2 KiB
JSON
Raw Normal View History

2020-02-13 14:40:47 +04:00
{
2020-02-13 14:45:50 +04:00
"eol-last": [
"error",
"always"
],
2020-02-13 15:03:51 +04:00
"indent": [
"error",
"tab",
{
"ArrayExpression": 1,
"CallExpression": {
"arguments": 1
},
"FunctionDeclaration": {
"body": 1,
"parameters": 1
},
"FunctionExpression": {
"body": 1,
"parameters": 1
},
"ImportDeclaration": 1,
"MemberExpression": 1,
"ObjectExpression": 1,
"SwitchCase": 1,
"VariableDeclarator": "first",
"flatTernaryExpressions": true,
"ignoreComments": false,
"ignoredNodes": [],
"outerIIFEBody": 1
}
],
2020-02-13 14:47:18 +04:00
"indent-legacy": [
"off"
],
2020-02-13 14:48:01 +04:00
"lines-around-directive": [
"off"
],
2020-02-13 14:48:42 +04:00
"newline-after-var": [
"off"
],
2020-02-13 14:49:25 +04:00
"newline-before-return": [
"off"
],
2020-02-13 14:50:22 +04:00
"no-catch-shadow": [
"off"
],
2020-02-13 14:51:02 +04:00
"no-native-reassign": [
"off"
],
2020-02-13 14:51:40 +04:00
"no-negated-in-lhs": [
"off"
],
2020-02-13 14:52:27 +04:00
"no-spaced-func": [
"off"
],
2020-02-13 14:40:47 +04:00
"no-tabs": [
"error",
{
"allowIndentationTabs": true
}
2020-02-13 14:53:13 +04:00
],
"prefer-reflect": [
"off"
2020-02-13 14:54:01 +04:00
],
"require-jsdoc": [
"off"
2020-02-13 14:54:41 +04:00
],
2020-02-13 15:06:46 +04:00
"sort-keys": [
"warn",
"asc",
{
"caseSensitive": true,
"minKeys": 2,
"natural": true
}
],
2020-02-13 14:54:41 +04:00
"valid-jsdoc": [
"off"
2020-02-13 14:40:47 +04:00
]
}