vue-easy-rest
Version:
Advanced model layer for a VueJS app with a REST API
22 lines (21 loc) • 557 B
JavaScript
module.exports = {
root: true,
env: {
node: true,
jest: true,
},
extends: ['airbnb-base'],
rules: {
'no-console': ['error', { allow: ['warn', 'error'] }],
'no-param-reassign': 'off',
'consistent-return': 'off',
'vue/return-in-computed-property': 'off',
'no-case-declarations': 'off',
'vue/html-indent': ['error', 4],
indent: ['error', 4],
radix: 'off',
'no-underscore-dangle': 'off',
'no-prototype-builtins': 'off',
'iterators/generators': 'off',
},
};