apiary/web/frontend/.eslintrc.js

21 lines
433 B
JavaScript
Raw Normal View History

2021-04-10 05:58:01 +00:00
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/essential',
'@vue/airbnb',
'@vue/typescript/recommended',
2021-04-10 15:44:02 +00:00
'prettier'
2021-04-10 05:58:01 +00:00
],
parserOptions: {
ecmaVersion: 2020,
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'implicit-arrow-linebreak': 'warn',
},
};