UNPKG

vc-popup

Version:

vue popup components with power position and animation support and back key support as well

35 lines (33 loc) 792 B
// https://eslint.org/docs/user-guide/configuring module.exports = { root: true, // parser: "vue-eslint-parser", parserOptions: { parser: 'babel-eslint', sourceType: 'module' }, env: { browser: true, }, // https://github.com/standard/standard/blob/master/docs/RULES-en.md extends: [ "standard" ], // required to lint *.vue files plugins: [ 'html' ], // 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, 'spaced-comment': 0, 'curly': 0, 'one-var': 0, 'no-multi-spaces': 0 } }