mirror of
https://github.com/langyuxiansheng/vue-aliplayer-v2.git
synced 2025-04-04 21:22:44 +08:00
24 lines
492 B
JavaScript
24 lines
492 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
browser: true,
|
|
es6: true
|
|
},
|
|
'extends': [
|
|
'plugin:vue/essential',
|
|
'eslint:recommended'
|
|
],
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
|
|
},
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
},
|
|
|
|
globals: {
|
|
'Aliplayer': false
|
|
},
|
|
}
|