UNPKG

vue2-leaflet-imageoverlay-rotated

Version:
25 lines 557 B
module.exports = { root: true, parserOptions: { parser: 'babel-eslint' }, env: { node: true }, 'extends': [ 'plugin:vue/essential', '@vue/airbnb' ], // add your custom rules here 'rules': { // allow paren-less arrow functions 'arrow-parens': 0, // allow async-await 'generator-star-spacing': 0, // allow debugger during development 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, // added by Julian Perelli 'brace-style': [2, 'stroustrup'], 'no-underscore-dangle': 0, } }