chore: Configureer linter (ESLint)

This commit is contained in:
Tibo De Peuter 2025-02-20 13:26:41 +01:00
parent 977b49f659
commit df2f26482c
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
3 changed files with 132 additions and 30 deletions

11
backend/eslint.config.ts Normal file
View file

@ -0,0 +1,11 @@
import globals from 'globals';
import rootConfig from '../eslint.config';
export default [
...rootConfig,
{
languageOptions: {
globals: globals.node,
},
},
];