mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-06 14:27:23 +02:00
47 lines
680 B
JavaScript
47 lines
680 B
JavaScript
module.exports = {
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:vue/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017,
|
|
"sourceType": "module"
|
|
},
|
|
"globals": {
|
|
"$": true,
|
|
"Rails": true,
|
|
"Vue": true,
|
|
"relativeUrlRoot": true
|
|
},
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
2
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"double"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"no-console": [
|
|
"off"
|
|
],
|
|
"no-unused-vars": [
|
|
"off", {
|
|
"argsIgnorePattern": "^_"
|
|
}
|
|
]
|
|
}
|
|
};
|