Created
August 29, 2024 08:17
-
-
Save LuisPalacios/15992141056b26fd627b35dca76a32f0 to your computer and use it in GitHub Desktop.
Ejemplo VSCode settings.json para proyecto muy vinculado a Linux, github y plantillas
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
{ | |
// Proyecto que siempre se compilará y ejecutará bajo Linux. | |
// Me aseguro que, aunque edite en Windows, que loas archivos tengn bien el final de línea | |
"files.eol": "\n", | |
// Este proyecto concreto quiero que la ventana de terminal | |
// tenga un tamaño más pequeño, por los logs que saco... | |
"terminal.integrated.fontSize": 11, | |
// En este proyecto estoy teniendo problemas y he ecesitado incluir esta | |
// extensión y configurar esta opción. | |
// Id: redhat.vscode-yaml | |
// Description: YAML Language Support by Red Hat, with built-in Kubernetes syntax support | |
// Publisher: Red Hat | |
// VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml | |
// "https://json.schemastore.org/github-issue-forms.json": "github-issue-forms.json", | |
"yaml.schemas": { | |
"./esquema-formularios.json": ["../.github/ISSUE_TEMPLATE/*.yml"], | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment