Files
gancio/.eslintrc.js

29 lines
498 B
JavaScript
Raw Permalink Normal View History

2019-04-23 13:45:52 +00:00
module.exports = {
root: true,
env: {
browser: true,
node: true
},
parserOptions: {
parser: 'babel-eslint'
},
extends: [
'@nuxtjs',
// 'plugin:nuxt/recommended',
// 'plugin:prettier/recommended',
// 'prettier',
// 'prettier/vue'
],
plugins: [
'prettier'
],
// add your custom rules here
rules: {
2019-06-07 17:02:33 +02:00
'nuxt/no-cjs-in-config': 'off',
'camelcase': 'off',
'no-console': 'off',
'arrow-parens': 'off',
'import/order': 'off'
2019-04-23 13:45:52 +00:00
}
}