12345678910111213141516171819202122232425262728293031 |
- module.exports = {
- root: true,
- env: {
- node: true,
- },
- extends: [
- 'plugin:vue/essential',
- 'eslint:recommended',
- 'plugin:prettier/recommended',
- ],
- parserOptions: {
- parser: 'babel-eslint',
- ecmaVersion: 2020,
- },
- globals: {
- uni: true,
- AMap: true,
- },
- rules: {
- 'no-console':
- process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'no-debugger':
- process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- /*
- * off 或 0,不启用这个规则
- * warn 或 1,出现问题会有警告
- * error 或 2,出现问题会报错
- * */
- 'vue/multi-word-component-names': 'off',
- },
- };
|