mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-25 22:55:56 -05:00
e4f288c5b4
Also bumps the player web interface version to 0.2.0. Previously the build was based on the vue.js webpack template. The template is deprecated and the recommended method for setting up a vue application is vue-cli. This also changes the build from using webpack v3 to webpack v4.
18 lines
348 B
JavaScript
18 lines
348 B
JavaScript
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'
|
|
},
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
}
|
|
}
|