This repository has been archived on 2025-09-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2025SELab2-project-Dwengo/backend/eslint.config.ts
2025-03-12 15:57:49 +00:00

21 lines
382 B
TypeScript

import globals from 'globals';
import rootConfig from '../eslint.config';
export default [
...rootConfig,
{
languageOptions: {
globals: globals.node,
},
},
{
files: ['tests/**/*.ts'],
languageOptions: {
globals: globals.node,
},
rules: {
'no-console': 'off',
},
},
];