2019-06-23 03:35:23 -07:00
|
|
|
module.exports = {
|
2021-08-19 03:35:23 -07:00
|
|
|
extends: [
|
|
|
|
'../../.eslintrc.js',
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Config for recommended ruleset in @vue/cli-plugin-eslint
|
|
|
|
*
|
|
|
|
* https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-plugin-eslint
|
|
|
|
* https://eslint.vuejs.org/user-guide/#usage
|
|
|
|
* https://eslint.vuejs.org/rules/
|
|
|
|
*/
|
|
|
|
'plugin:vue/recommended',
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
2021-08-19 03:35:23 -07:00
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
parserOptions: {
|
2019-12-29 13:02:21 -08:00
|
|
|
parser: '@typescript-eslint/parser',
|
2021-08-19 03:35:23 -07:00
|
|
|
extraFileExtensions: ['.vue'],
|
|
|
|
project: __dirname + '/tsconfig.json',
|
|
|
|
sourceType: 'module',
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2021-08-19 03:35:23 -07:00
|
|
|
|
|
|
|
rules: {},
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|