arcanesync-server/eslint.config.mjs

18 lines
409 B
JavaScript

import antfu from '@antfu/eslint-config'
export default antfu({
stylistic: {
indent: 2,
quotes: 'single',
},
typescript: true,
// project uses node --test, not vitest
vitest: false,
ignores: ['.omc', 'src/db/migrations'],
rules: {
'no-console': 'off',
'antfu/no-top-level-await': 'off',
// project uses node --test, not vitest
'test/no-import-node-test': 'off',
},
})