mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-03 17:46:39 -04:00
re-enable eslint-plugin-mdx
with fix for OOM error
https://github.com/mdx-js/vscode-mdx#known-vscode-eslint-issues
This commit is contained in:
@ -17,15 +17,35 @@
|
||||
// Configure properties specific to VS Code.
|
||||
"vscode": {
|
||||
"settings": {
|
||||
"telemetry.enableTelemetry": false,
|
||||
"editor.insertSpaces": true,
|
||||
"editor.tabSize": 2,
|
||||
"eslint.options": {
|
||||
"extensions": [".js", ".jsx", ".ts", ".tsx", ".md", ".mdx"]
|
||||
},
|
||||
"eslint.runtime": "node", // https://github.com/mdx-js/vscode-mdx#known-vscode-eslint-issues
|
||||
"eslint.validate": [
|
||||
"javascript",
|
||||
"javascriptreact",
|
||||
"typescript",
|
||||
"typescriptreact",
|
||||
"markdown",
|
||||
"mdx"
|
||||
],
|
||||
"files.eol": "\n",
|
||||
"files.insertFinalNewline": true,
|
||||
"files.trimTrailingWhitespace": true,
|
||||
"search.exclude": {
|
||||
"**/.next": true,
|
||||
"**/node_modules": true
|
||||
},
|
||||
"typescript.preferences.importModuleSpecifierEnding": "minimal",
|
||||
"typescript.tsdk": "node_modules/typescript/lib"
|
||||
},
|
||||
// Add the IDs of extensions you want installed when the container is created.
|
||||
"extensions": [
|
||||
"dbaeumer.vscode-eslint",
|
||||
"editorconfig.editorconfig",
|
||||
"prisma.prisma",
|
||||
"silvenon.mdx",
|
||||
"unifiedjs.vscode-mdx",
|
||||
"wix.vscode-import-cost"
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user