mirror of
https://github.com/voson-wang/toon.git
synced 2026-01-29 15:24:10 +08:00
17 lines
309 B
JavaScript
17 lines
309 B
JavaScript
// @ts-check
|
|
import antfu from '@antfu/eslint-config'
|
|
|
|
export default antfu({
|
|
pnpm: false,
|
|
rules: {
|
|
'no-cond-assign': 'off',
|
|
},
|
|
}).append({
|
|
files: ['README.md', 'SPEC.md', '**/docs/**/*'],
|
|
rules: {
|
|
'import/no-duplicates': 'off',
|
|
'style/no-tabs': 'off',
|
|
'yaml/quotes': 'off',
|
|
},
|
|
})
|