eslint-config/src/rules/eslint.json

43 lines
524 B
JSON
Raw Normal View History

{
"eol-last": [
"error",
"always"
],
"indent-legacy": [
"off"
],
"lines-around-directive": [
"off"
],
"newline-after-var": [
"off"
],
"newline-before-return": [
"off"
],
"no-catch-shadow": [
"off"
],
"no-native-reassign": [
"off"
],
"no-negated-in-lhs": [
"off"
],
"no-spaced-func": [
"off"
],
"no-tabs": [
"error",
{
"allowIndentationTabs": true
}
],
"prefer-reflect": [
"off"
],
"require-jsdoc": [
"off"
]
}