rf-web/.vscode/settings.json
2022-05-27 18:20:53 +02:00

34 lines
755 B
JSON

{
"editor.formatOnSave": false,
"[scss]": {
"editor.formatOnSave": true
},
"[yml]": {
"editor.formatOnSave": true
},
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#20232e",
"titleBar.inactiveForeground": "#3cafb3",
"titleBar.activeForeground": "#0ac2c9",
"titleBar.inactiveBackground": "#20232e"
},
"eslint.enable": true,
"files.exclude": {
// Directories
// "public/": true,
".cache/": true,
"node_modules/": true,
".jekyll-cache/": true,
".bundle/": true,
"_site/": true,
"vendor/": true,
// Files
// ".npmrc": true,
// "gatsby-ssr.js": true,
"LICENSE": true,
// "README.md": true,
"yarn.lock": true
// "gatsby-node.js": true
}
}