1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| /*
| * @Author: shuishen 1109946754@qq.com
| * @Date: 2022-09-07 09:34:58
| * @LastEditors: shuishen 1109946754@qq.com
| * @LastEditTime: 2022-09-20 14:35:16
| * @FilePath: \srs-police-affairs\.eslintrc.js
| * @Description:
| *
| * Copyright (c) 2022 by shuishen 1109946754@qq.com, All Rights Reserved.
| */
| module.exports = {
| root: true,
| env: {
| node: true
| },
| 'extends': [
| 'plugin:vue/essential',
| 'eslint:recommended'
| ],
| parserOptions: {
| parser: 'babel-eslint'
| },
| rules: {
| 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
| 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
| "no-unused-vars": "off"
| }
| }
|
|