eslint: add vuetify defs

This commit is contained in:
2019-10-01 15:53:30 -07:00
parent 47261e0816
commit e73b95e127

View File

@ -7,6 +7,9 @@ module.exports = {
'extends': [
'plugin:vue/essential',
'@vue/standard'
],
plugins: [
'vuetify'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
@ -17,6 +20,9 @@ module.exports = {
'comma-dangle': ['warn', 'only-multiline'],
'spaced-comment': 'off',
'space-before-function-paren': ['warn', 'never'],
'vuetify/no-deprecated-classes': 'error',
'vuetify/grid-unknown-attributes': 'error',
'vuetify/no-legacy-grid': 'error',
},
parserOptions: {
parser: 'babel-eslint'