mirror of
https://hub.gitmirror.com/https://github.com/ExamAware/dsz-examaware-mobile
synced 2025-04-28 23:36:39 +00:00
22 lines
550 B
JavaScript
22 lines
550 B
JavaScript
import pluginVue from 'eslint-plugin-vue'
|
|
import vueTsEslintConfig from '@vue/eslint-config-typescript'
|
|
import oxlint from 'eslint-plugin-oxlint'
|
|
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
|
|
|
|
export default [
|
|
{
|
|
name: 'app/files-to-lint',
|
|
files: ['**/*.{ts,mts,tsx,vue}'],
|
|
},
|
|
|
|
{
|
|
name: 'app/files-to-ignore',
|
|
ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],
|
|
},
|
|
|
|
...pluginVue.configs['flat/essential'],
|
|
...vueTsEslintConfig(),
|
|
oxlint.configs['flat/recommended'],
|
|
skipFormatting,
|
|
]
|