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

43 lines
524 B
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 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:40:47 +04:00
]
}