ffplayout/.eslintrc.js

24 lines
443 B
JavaScript
Raw Normal View History

2020-01-29 11:40:15 -05:00
module.exports = {
root: true,
env: {
browser: true,
node: true
},
parserOptions: {
parser: 'babel-eslint'
},
extends: [
'@nuxtjs',
'plugin:nuxt/recommended'
],
// add your custom rules here
rules: {
'vue/html-indent': ['error', 4],
'vue/html-closing-bracket-newline': 'off',
'indent': [2, 4],
'no-tabs': 'off',
"no-console": 0,
"camelcase": ["error", {properties: "never"}]
}
}