1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-15 20:35:23 +03:00
betaflight-configurator/.eslintrc.js
Tomas Chmelevskij 616c2e796d chore: add semi rule to the linter and run --fix
Adds semicolon to the linter rules.
2021-02-14 07:37:03 +01:00

19 lines
388 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",
semi: "error"
}
}