Files
vue-chartjs/.eslintrc.js
Nick Nissen bdeac75422 Refactor: Don't include package.json into dist files
Instead of including package.json file into the build files.
Use webpacks DefinePlugin to define a global lib version.
2018-02-05 13:40:04 +01:00

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
}
}