Created
August 29, 2024 08:16
-
-
Save LuisPalacios/a9bca776026de8f55a6327805082a3a3 to your computer and use it in GitHub Desktop.
Ejemplo VSCode para proyecto Node.js y ESLint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Esta configuración específica asegura que todos los desarrolladores | |
// sigan las mismas reglas de ESLint y evita problemas de formato | |
// en diferentes sistemas operativos. | |
"editor.formatOnSave": true, | |
"eslint.enable": true, | |
"eslint.options": { | |
"configFile": ".eslintrc.json" | |
}, | |
"files.eol": "\n", | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"javascript.validate.enable": false, | |
"typescript.validate.enable": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment