12345678910111213141516171819202122232425262728293031 |
- import antfu from '@antfu/eslint-config'
- export default antfu(
- {
- unocss: true,
- ignores: [
- 'public',
- 'dist*',
- ],
- },
- {
- rules: {
- 'eslint-comments/no-unlimited-disable': 'off',
- 'curly': ['error', 'all'],
- 'ts/no-unused-expressions': ['error', {
- allowShortCircuit: true,
- allowTernary: true,
- }],
- },
- },
- {
- files: [
- 'src/**/*.vue',
- ],
- rules: {
- 'vue/block-order': ['error', {
- order: ['script', 'template', 'style'],
- }],
- },
- },
- )
|