Skip to content

Commit

Permalink
chore: add vscode eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaschampagne committed Jan 21, 2024
1 parent b333406 commit 288fe1c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "never"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"json",
"yaml"
]
}
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext"],
"lib": [
"ESNext"
],
"moduleResolution": "node",
"strict": true,
"strictNullChecks": true,
Expand Down

0 comments on commit 288fe1c

Please sign in to comment.