mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 17:28:27 -04:00
26 lines
672 B
JSON
26 lines
672 B
JSON
{
|
|
"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"
|
|
}
|