readthedocs.org/.eslintrc

43 lines
1.0 KiB
Plaintext

{
"extends": "airbnb-base/legacy",
"globals": {
"$": true
},
"rules": {
"array-callback-return": "off",
"brace-style": "off",
"camelcase": "off",
"comma-dangle": "off",
"consistent-return": "off",
"dot-notation": "off",
"eqeqeq": "off",
"func-names": "off",
"guard-for-in": "off",
"indent": "off",
"keyword-spacing": "off",
"no-console": "off",
"no-inner-declarations": "off",
"no-loop-func": "off",
"no-mixed-operators": "off",
"no-multi-assign": "off",
"no-param-reassign": "off",
"no-redeclare": "off",
"no-restricted-syntax": "off",
"no-shadow": "off",
"no-undef": "off",
"no-underscore-dangle": "off",
"no-unused-vars": "off",
"no-use-before-define": "off",
"object-curly-spacing": "off",
"one-var": "off",
"padded-blocks": "off",
"quote-props": "off",
"quotes": "off",
"semi": "off",
"space-before-function-paren": "off",
"space-unary-ops": "off",
"spaced-comment": "off",
"vars-on-top": "off",
}
}