28 lines
597 B
JavaScript
28 lines
597 B
JavaScript
|
/*
|
||
|
* @Author: Kane
|
||
|
* @Date: 2022-12-14 15:12:46
|
||
|
* @LastEditors: Kane
|
||
|
* @LastEditTime: 2022-12-14 15:20:20
|
||
|
* @FilePath: \admin_system\.eslintrc.js
|
||
|
* @Description:
|
||
|
*
|
||
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||
|
*/
|
||
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
node: true
|
||
|
},
|
||
|
'extends': [
|
||
|
'plugin:vue/vue3-essential',
|
||
|
'eslint:recommended'
|
||
|
],
|
||
|
parserOptions: {
|
||
|
parser: '@babel/eslint-parser'
|
||
|
},
|
||
|
rules: {
|
||
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
|
||
|
}
|
||
|
}
|