mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
548 B
30 lines
548 B
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
jquery: true
|
|
},
|
|
extends: [
|
|
"plugin:vue/essential",
|
|
'standard'
|
|
],
|
|
rules: {
|
|
'generator-star-spacing': 'off',
|
|
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
|
|
},
|
|
// required to lint *.vue files
|
|
plugins: [
|
|
'vue'
|
|
],
|
|
parserOptions: {
|
|
parser: "babel-eslint"
|
|
},
|
|
|
|
globals: {
|
|
"$": true,
|
|
"jQuery": true,
|
|
'_': true
|
|
}
|
|
};
|
|
|