21 lines
671 B
JavaScript
21 lines
671 B
JavaScript
import eslintConfigPrettier from "eslint-config-prettier/flat";
|
|
import vuetify from 'eslint-config-vuetify'
|
|
|
|
export default vuetify({
|
|
ts: true,
|
|
},{
|
|
extends: [eslintConfigPrettier],
|
|
rules: {
|
|
'vue/no-required-prop-with-default': 'off',
|
|
'vue/attributes-order': 'off',
|
|
'vue/no-template-shadow': 'off',
|
|
'@typescript-eslint/unified-signatures': 'off',
|
|
'@typescript-eslint/member-ordering': 'off',
|
|
'unicorn/prefer-query-selector': 'off',
|
|
'unicorn/no-array-sort':'off',
|
|
"vue/no-mutating-props" : "off",
|
|
'unicorn/prefer-logical-operator-over-ternary': 'off',
|
|
'unicorn/prefer-structured-clone': 'off',
|
|
}
|
|
})
|