Skip to content

Commit

Permalink
lint: Eslint added for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Axeloooo committed Feb 4, 2024
1 parent 446909b commit 56e2b64
Show file tree
Hide file tree
Showing 3 changed files with 1,329 additions and 3 deletions.
22 changes: 22 additions & 0 deletions backend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"env": {
"es2021": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-explicit-any": "warn"
}
}
Loading

0 comments on commit 56e2b64

Please sign in to comment.