| 1234567891011121314151617181920212223 |
- module.exports = {
- root: true,
- env: {
- node: true
- },
- extends: ['@megalo/standard', '@vue/prettier'],
- rules: {
- 'no-console': 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
- 'no-unused-vars': 'off',
- 'no-empty': ['error', { allowEmptyCatch: true }],
- 'prettier/prettier': ['error'],
- 'vue/custom-event-name-casing': 0
- },
- // parserOptions: {
- // parser: 'babel-eslint'
- // },
- globals: {
- Chart: true,
- AMap: true,
- FontAwesome: true
- }
- };
|