1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-17 13:25:24 +03:00
betaflight-configurator/.eslintrc.js
2021-12-18 08:21:05 +01:00

20 lines
448 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",
"comma-dangle": ["error", "always-multiline"],
},
};