vue-flowchart-editor
Version:
A flowchart editor component base on Vue and G6
25 lines (24 loc) • 482 B
JavaScript
module.exports = {
root: true,
env: {
node: true,
},
extends: ['plugin:vue/essential', '@vue/prettier'],
rules: {
'prettier/prettier': [
'warn',
{
trailingComma: 'es5',
tabWidth: 2,
semi: false,
singleQuote: true,
},
],
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-unused-vars': 'warn',
},
parserOptions: {
parser: 'babel-eslint',
},
}