Semaphore/web/.eslintrc.js

52 lines
975 B
JavaScript
Raw Normal View History

2020-10-03 13:39:33 +02:00
module.exports = {
root: true,
2024-12-06 13:25:42 +01:00
2020-10-03 13:39:33 +02:00
env: {
node: true,
},
2024-12-06 13:25:42 +01:00
2020-10-03 13:39:33 +02:00
extends: [
2024-12-06 13:25:42 +01:00
'plugin:import/recommended',
2020-10-03 13:39:33 +02:00
'plugin:vue/essential',
'@vue/airbnb',
],
2024-12-06 13:25:42 +01:00
2020-10-03 13:39:33 +02:00
parserOptions: {
parser: 'babel-eslint',
},
2024-12-06 13:25:42 +01:00
2020-10-03 13:39:33 +02:00
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',
'prefer-destructuring': 'off',
'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
},
2024-12-06 13:25:42 +01:00
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,
},
},
],
2024-12-06 13:25:42 +01:00
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.vue'],
2024-12-06 14:53:46 +01:00
},
alias: {
map: ['@', './src'],
extensions: ['.vue', '.js'],
2024-12-06 13:25:42 +01:00
},
},
},
2020-10-03 13:39:33 +02:00
};