26 řádky
533 B
JavaScript
26 řádky
533 B
JavaScript
/*
|
|
* @Author: Do not edit
|
|
* @Date: 2023-12-27 16:41:40
|
|
* @LastEditTime: 2023-12-28 13:39:09
|
|
* @LastEditors: DY
|
|
* @Description:
|
|
*/
|
|
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: [
|
|
'plugin:vue/essential',
|
|
'@vue/standard'
|
|
],
|
|
parserOptions: {
|
|
parser: '@babel/eslint-parser'
|
|
},
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'vue/multi-word-component-names': 'off'
|
|
}
|
|
}
|