1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-24 00:35:26 +03:00
betaflight-configurator/.eslintrc.js
Tomas Chmelevskij d396d97e5e chore: add eslint
* add eslint with space rules to cover what sonarcloud doesn't
* run lint in travis
* add eslint vue config
2020-12-27 09:21:51 +04:00

18 lines
366 B
JavaScript

module.exports = {
parserOptions: {
ecmaVersion: 2020,
sourceType: "module"
},
extends: ["plugin:vue/recommended"],
env: {
node: true,
jquery: true,
es2017: true,
browser: true,
webextensions: true
},
rules: {
"no-trailing-spaces": "error",
"eol-last": "error"
}
};