forked from nikita/muzika-gromche
20 lines
486 B
TypeScript
20 lines
486 B
TypeScript
import antfu from '@antfu/eslint-config'
|
|
|
|
export default antfu({
|
|
lessOpinionated: true,
|
|
ignores: [
|
|
'src/assets/MuzikaGromcheTracks.json',
|
|
],
|
|
rules: {
|
|
'default-case-last': 'off',
|
|
'pnpm/json-enforce-catalog': 'off',
|
|
'pnpm/yaml-enforce-settings': 'off',
|
|
'ts/consistent-type-definitions': 'off',
|
|
'no-console': 'off',
|
|
// who said I can't pass refs inside objects as props?
|
|
'vue/no-mutating-props': ['error', {
|
|
shallowOnly: true,
|
|
}],
|
|
},
|
|
})
|