2020-05-24 12:50:21 +03:00
|
|
|
module.exports = {
|
2022-11-15 11:36:54 +03:00
|
|
|
root: true,
|
2020-12-30 13:11:40 +03:00
|
|
|
env: {
|
2022-11-15 11:36:54 +03:00
|
|
|
node: true,
|
2020-12-30 13:11:40 +03:00
|
|
|
browser: true,
|
2022-11-15 11:36:54 +03:00
|
|
|
es2016: true
|
2020-12-30 13:11:40 +03:00
|
|
|
},
|
2022-11-15 11:36:54 +03:00
|
|
|
extends: ['eslint:recommended', 'plugin:vue/recommended', '@vue/typescript/recommended', 'prettier', 'plugin:import/recommended'],
|
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 2020
|
|
|
|
},
|
|
|
|
plugins: ['vue', 'prettier'],
|
2020-12-30 13:11:40 +03:00
|
|
|
rules: {
|
|
|
|
'vue/require-default-prop': 'off',
|
2022-11-15 11:36:54 +03:00
|
|
|
'vue/multi-word-component-names': 'off',
|
|
|
|
'vue/first-attribute-linebreak': 'off',
|
|
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off'
|
|
|
|
}
|
2021-01-27 15:24:23 +03:00
|
|
|
}
|