21 lines
511 B
Vue
21 lines
511 B
Vue
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
node: true,
|
||
|
},
|
||
|
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/prettier'],
|
||
|
parserOptions: {
|
||
|
parser: 'babel-eslint',
|
||
|
},
|
||
|
rules: {
|
||
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||
|
},
|
||
|
//忽略文件
|
||
|
ignorePatterns: [
|
||
|
'src/supermap',
|
||
|
'src/views/home/videoSurveillance',
|
||
|
'src/utils/coordinateSystemTransform.js',
|
||
|
],
|
||
|
}
|