mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-13 02:55:04 +08:00
17 lines
356 B
JavaScript
Vendored
17 lines
356 B
JavaScript
Vendored
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/essential',
|
|
'@vue/airbnb',
|
|
],
|
|
parserOptions: {
|
|
parser: '@babel/eslint-parser',
|
|
},
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
},
|
|
};
|