|
|
@@ -9,13 +9,15 @@ module.exports = {
|
|
|
},
|
|
|
rules: {
|
|
|
'no-console': 'off',
|
|
|
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
|
+ 'no-debugger': 'off',
|
|
|
'no-unused-vars': 'off',
|
|
|
'no-empty': ['error', { allowEmptyCatch: true }],
|
|
|
'vue/custom-event-name-casing': 0,
|
|
|
'vue/no-parsing-error': ['error']
|
|
|
},
|
|
|
globals: {
|
|
|
- wx: true
|
|
|
+ wx: true,
|
|
|
+ SyncStatus: true,
|
|
|
+ InstallMode: true
|
|
|
}
|
|
|
};
|