retropilot-server/.eslintrc.json

65 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2022-01-08 13:15:02 -07:00
{
2022-03-21 07:13:22 -06:00
"root": true,
2022-01-08 13:15:02 -07:00
"extends": [
"airbnb-base"
],
"env": {
"es6": true,
2022-03-21 07:13:22 -06:00
"node": true
2022-01-08 13:15:02 -07:00
},
"plugins": [
"no-floating-promise"
2022-01-20 16:56:41 -07:00
],
2022-01-08 13:15:02 -07:00
"rules": {
2022-03-20 17:59:37 -06:00
// enforces no braces where they can be omitted
// https://eslint.org/docs/rules/arrow-body-style
// retropilot: this seems dumb. do whatever looks nice.
"arrow-body-style": "off",
2022-03-21 07:13:22 -06:00
// specify the maximum length of a line in your program
// https://eslint.org/docs/rules/max-len
// retropilot: ignore comments
"max-len": ["error", 100, 2, {
"ignoreUrls": true,
"ignoreComments": true,
"ignoreRegExpLiterals": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}],
// disallow use of unary operators, ++ and --
// http://eslint.org/docs/rules/no-plusplus
2022-01-08 15:23:08 -07:00
// retropilot: we allow them in the for loop
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
2022-01-08 15:23:08 -07:00
// disallow use of the continue statement
// https://eslint.org/docs/rules/no-continue
// retropilot: we allow use of the continue statement
2022-01-08 14:49:57 -07:00
"no-continue": "off",
2022-03-22 09:14:08 -06:00
// disallow else after a return in an if
// https://eslint.org/docs/rules/no-else-return
// retropilot: allow else-if...
"no-else-return": ["error", { "allowElseIf": true }],
// disallow use of variables before they are defined
// http://eslint.org/docs/rules/no-use-before-define
// retropilot: permit referencing functions before they're defined
"no-use-before-define": ["error", { "functions": false }],
2022-01-08 13:41:18 -07:00
// TODO: fix and remove
// retropilot: we are in the process of removing all of these
2022-01-08 13:41:18 -07:00
"no-unused-vars": ["warn", { "vars": "all", "args": "after-used", "ignoreRestSiblings": true }],
// retropilot: we are in the process of moving to es6 let and const
2022-01-08 13:55:41 -07:00
"no-var": "off",
"one-var": "off",
2022-01-08 14:30:52 -07:00
"no-await-in-loop": "off",
2022-01-08 15:23:08 -07:00
"no-console": "off",
"no-underscore-dangle": "off",
// retropilot: we use this for websocket connection properties
"no-param-reassign": "off",
// retropilot: require promises to be handled correctly
"no-floating-promise/no-floating-promise": 2
2022-01-08 13:15:02 -07:00
}
}