config: set default eol sequence to LF

This commit is contained in:
Abdullah Atta
2023-06-26 12:25:33 +05:00
committed by Abdullah Atta
parent 8fb0071cf0
commit 4a5c5fd3bf
2 changed files with 13 additions and 72 deletions

13
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"files.eol": "\n",
"typescript.tsdk": "node_modules/typescript/lib",
"javascript.format.enable": true,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modificationsIfAvailable",
"eslint.packageManager": "npm",
"eslint.run": "onSave",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"eslint.execArgv": ["--cache"]
}