mirror of
https://github.com/KevinMidboe/vue-chartjs.git
synced 2025-10-29 01:40:21 +00:00
Instead of including package.json file into the build files. Use webpacks DefinePlugin to define a global lib version.
23 lines
519 B
JavaScript
23 lines
519 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
sourceType: 'module'
|
|
},
|
|
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
|
|
extends: 'standard',
|
|
// required to lint *.vue files
|
|
plugins: [
|
|
'html'
|
|
],
|
|
// add your custom rules here
|
|
'rules': {
|
|
// allow paren-less arrow functions
|
|
'arrow-parens': 0,
|
|
// allow debugger during development
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
|
|
},
|
|
"globals": {
|
|
"LIB_VERSION": true
|
|
}
|
|
}
|