mirror of
https://github.com/pinry/pinry.git
synced 2025-11-16 01:45:51 +01:00
20 lines
400 B
JavaScript
20 lines
400 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/essential',
|
|
'@vue/airbnb',
|
|
],
|
|
rules: {
|
|
// 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'max-len': 'off',
|
|
'no-console': 'off',
|
|
},
|
|
parserOptions: {
|
|
parser: 'babel-eslint',
|
|
},
|
|
};
|