mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
21 lines
670 B
JSON
21 lines
670 B
JSON
{
|
|
"typescript.preferences.importModuleSpecifier": "non-relative",
|
|
/* Prefer tabs over spaces for accessibility */
|
|
"editor.insertSpaces": false,
|
|
"editor.detectIndentation": false,
|
|
/* Explorer */
|
|
"explorer.fileNesting.enabled": true,
|
|
"explorer.fileNesting.patterns": {
|
|
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
|
|
"package.json": "pnpm-lock.yaml, tsconfig.json, eslint.config.js, .babelrc, vite.config.ts, .editorconfig",
|
|
"Makefile": "*compose.yml, Dockerfile, servers_pgadmin.json, .dockerignore"
|
|
},
|
|
"cssVariables.lookupFiles": [
|
|
"**/*.css",
|
|
"**/*.scss",
|
|
"**/*.sass",
|
|
"**/*.less",
|
|
"node_modules/@mantine/core/styles.css"
|
|
]
|
|
}
|