This commit is contained in:
Oscar
2026-06-03 20:21:43 +03:00
commit a38e905b29
25 changed files with 19011 additions and 0 deletions

11
backend/eslint.config.js Normal file
View File

@@ -0,0 +1,11 @@
import antfu from '@antfu/eslint-config'
export default antfu({
typescript: true,
node: true,
formatters: true,
rules: {
'no-console': 'warn',
'node/prefer-global/process': 'off',
},
})