mirror of
https://github.com/aelve/guide.git
synced 2024-12-18 10:21:41 +03:00
12 lines
191 B
JavaScript
12 lines
191 B
JavaScript
module.exports = {
|
|
extends: ['eslint:recommended', 'plugin:vue/recommended'],
|
|
'env': {
|
|
'es6': true,
|
|
'jquery': true,
|
|
},
|
|
plugins: ['vue'],
|
|
globals: {
|
|
'Vue': true,
|
|
},
|
|
};
|