Add ESLint configuration files and VSCode settings for improved code quality and development experience

This commit is contained in:
sebseb7
2025-08-12 20:54:46 +00:00
parent b515275407
commit 0815d64802
4 changed files with 83 additions and 0 deletions

14
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"command": "npm start",
"name": "Run npm start",
"request": "launch",
"type": "node-terminal"
}
]
}