chore: use string values in vs code settings (#856)

This commit is contained in:
Danial Raza
2023-12-05 18:29:13 +01:00
committed by GitHub
parent b4226bb708
commit 470fe189ae

View File

@@ -2,9 +2,9 @@
"files.eol": "\n",
"typescript.tsdk": "node_modules/typescript/lib",
"editor.codeActionsOnSave": {
"source.organizeImports": false,
"source.fixAll": true,
"source.fixAll.eslint": true
"source.organizeImports": "never",
"source.fixAll": "explicit",
"source.fixAll.eslint": "explicit"
},
"cSpell.enableFiletypes": ["mdx"]
}