mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
23 lines
476 B
JavaScript
23 lines
476 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/essential',
|
|
// 'plugin:vue/recommended',
|
|
'@vue/airbnb',
|
|
'prettier',
|
|
'plugin:prettier-vue/recommended',
|
|
'prettier/vue',
|
|
],
|
|
parserOptions: {
|
|
parser: 'babel-eslint',
|
|
},
|
|
plugins: ['vue'],
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
},
|
|
};
|