| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | | /* |  |  * IMPORTANT! |  |  * This file has been automatically generated, |  |  * in order to update it's content execute "npm run update" |  |  */ |  | module.exports = { |  |   extends: require.resolve('./strongly-recommended'), |  |   rules: { |  |     'vue/attributes-order': 'warn', |  |     'vue/component-tags-order': 'warn', |  |     'vue/no-lone-template': 'warn', |  |     'vue/no-multiple-slot-args': 'warn', |  |     'vue/no-v-html': 'warn', |  |     'vue/order-in-components': 'warn', |  |     'vue/this-in-template': 'warn' |  |   } |  | } | 
 |