2018-03-23 13:20:37 +00:00
|
|
|
module.exports = {
|
2018-05-17 18:45:01 +00:00
|
|
|
extends: [
|
|
|
|
// add more generic rulesets here, such as:
|
|
|
|
'eslint:recommended',
|
|
|
|
'plugin:vue/strongly-recommended'
|
|
|
|
],
|
|
|
|
parserOptions: {
|
2018-05-20 23:02:10 +00:00
|
|
|
'ecmaVersion': 2017
|
2018-05-17 18:45:01 +00:00
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
// override/add rules settings here, such as:
|
2018-06-12 15:59:52 +00:00
|
|
|
'no-extra-boolean-cast': 'off',
|
2018-08-27 18:54:49 +00:00
|
|
|
'vue/require-v-for-key': 'off',
|
2018-05-17 18:45:01 +00:00
|
|
|
'vue/no-unused-vars': 'error',
|
2018-05-20 23:02:10 +00:00
|
|
|
'no-console': 'warn',
|
|
|
|
'no-unused-vars': 'warn',
|
|
|
|
'no-undef': 'warn',
|
|
|
|
'vue/html-indent': 'off',
|
|
|
|
'vue/require-default-prop': 'off', // https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/require-default-prop.md
|
|
|
|
},
|
|
|
|
globals: {
|
2018-06-29 13:37:25 +00:00
|
|
|
'tainacan_plugin': true,
|
2018-07-18 19:38:17 +00:00
|
|
|
'_': true,
|
|
|
|
'jQuery': true
|
2018-05-17 18:45:01 +00:00
|
|
|
}
|
2018-03-23 13:20:37 +00:00
|
|
|
}
|