123456789101112131415161718192021222324 |
- module.exports = {
- root: true,
- env: {
- node: true
- },
- extends: ['plugin:vue/essential', '@vue/standard'],
- rules: {
- 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
- 'no-tabs': 'off'
- },
- globals: {
- 'wx': true,
- 'EOS_PROTOCOL': true,
- 'EOS_HOST': true,
- 'EOS_PORT': true
- },
- parserOptions: {
- parser: 'babel-eslint'
- },
- plugins: [
- 'vue'
- ]
- }
|