Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Commit

Permalink
chore: add ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmalonzo authored and fayssalmechmeche committed May 6, 2024
1 parent 97fcc80 commit f50622c
Show file tree
Hide file tree
Showing 3 changed files with 1,566 additions and 4 deletions.
17 changes: 17 additions & 0 deletions backend/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// @ts-check

import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import globals from 'globals';

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
languageOptions: {
globals: {
...globals.node,
},
},
},
);
Loading

0 comments on commit f50622c

Please sign in to comment.