12345678910111213141516171819 |
- module.exports = {
- root: true,
- env: {
- node: true
- },
- 'extends': [
- 'plugin:vue/essential',
- 'eslint:recommended'
- ],
- rules: {
- "no-mixed-spaces-and-tabs": "off",
- "no-console": 0,
- "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
- },
- parserOptions: {
- parser: 'babel-eslint'
- },
- };
|