forked from git.gladyson/openmonetis
32 lines
755 B
JSON
32 lines
755 B
JSON
{
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/.DS_Store": true,
|
|
"**/Thumbs.db": true,
|
|
"**/node_modules": true,
|
|
"node_modules": true,
|
|
"**/.vscode": true,
|
|
".vscode": true,
|
|
"**/.next": true,
|
|
".next": true
|
|
},
|
|
"explorerExclude.backup": {},
|
|
"editor.defaultFormatter": "biomejs.biome",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "never",
|
|
"source.organizeImports.biome": "always",
|
|
"source.fixAll": "never",
|
|
"source.fixAll.biome": "always",
|
|
"source.fixAll.eslint": "never"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"eslint.enable": false,
|
|
"prettier.enable": false,
|
|
"typescript.preferences.organizeImportsCollation": "ordinal"
|
|
}
|