2020-10-03 13:39:33 +02:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
node: true,
|
|
|
|
},
|
|
|
|
extends: [
|
|
|
|
'plugin:vue/essential',
|
|
|
|
'@vue/airbnb',
|
|
|
|
],
|
|
|
|
parserOptions: {
|
|
|
|
parser: 'babel-eslint',
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
2021-10-20 13:58:02 +02:00
|
|
|
'linebreak-style': 'off',
|
2022-03-30 21:16:01 +02:00
|
|
|
'prefer-destructuring': 'off',
|
2022-06-21 14:49:56 +02:00
|
|
|
'vuejs-accessibility/click-events-have-key-events': 'off',
|
|
|
|
'vue/valid-v-slot': 'off',
|
|
|
|
'vue/multi-word-component-names': 'off',
|
2020-10-03 13:39:33 +02:00
|
|
|
},
|
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
files: [
|
|
|
|
'**/__tests__/*.{j,t}s?(x)',
|
|
|
|
'**/tests/unit/**/*.spec.{j,t}s?(x)',
|
|
|
|
],
|
|
|
|
env: {
|
|
|
|
mocha: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|