|
|
@ -20,6 +20,8 @@
|
|
|
|
"explorer.confirmDragAndDrop": false,
|
|
|
|
"explorer.confirmDragAndDrop": false,
|
|
|
|
"explorer.sortOrder": "type",
|
|
|
|
"explorer.sortOrder": "type",
|
|
|
|
/* VS Code extensions settings. */
|
|
|
|
/* VS Code extensions settings. */
|
|
|
|
|
|
|
|
"extensions.autoCheckUpdates": false,
|
|
|
|
|
|
|
|
"extensions.autoUpdate": false,
|
|
|
|
"extensions.ignoreRecommendations": true,
|
|
|
|
"extensions.ignoreRecommendations": true,
|
|
|
|
/* VS Code files settings. */
|
|
|
|
/* VS Code files settings. */
|
|
|
|
"files.associations": {
|
|
|
|
"files.associations": {
|
|
|
@ -48,11 +50,18 @@
|
|
|
|
/* VS Code search settings. */
|
|
|
|
/* VS Code search settings. */
|
|
|
|
"search.showLineNumbers": true,
|
|
|
|
"search.showLineNumbers": true,
|
|
|
|
/* VS Code TypeScript settings. */
|
|
|
|
/* VS Code TypeScript settings. */
|
|
|
|
|
|
|
|
"typescript.disableAutomaticTypeAcquisition": true,
|
|
|
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
|
|
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
|
|
|
|
|
|
|
/* VS Code update settings. */
|
|
|
|
|
|
|
|
"update.mode": "none",
|
|
|
|
|
|
|
|
"update.showReleaseNotes": false,
|
|
|
|
/* VS Code window settings. */
|
|
|
|
/* VS Code window settings. */
|
|
|
|
"window.titleBarStyle": "custom",
|
|
|
|
"window.titleBarStyle": "custom",
|
|
|
|
/* VS Code workbench settings. */
|
|
|
|
/* VS Code workbench settings. */
|
|
|
|
"workbench.colorTheme": "Love Dark",
|
|
|
|
"workbench.colorTheme": "Love Dark",
|
|
|
|
|
|
|
|
"workbench.enableExperiments": false,
|
|
|
|
|
|
|
|
"workbench.editSessions.autoResume": "off",
|
|
|
|
|
|
|
|
"workbench.editSessions.continueOn": "off",
|
|
|
|
"workbench.iconTheme": "vscode-icons",
|
|
|
|
"workbench.iconTheme": "vscode-icons",
|
|
|
|
"workbench.startupEditor": "none",
|
|
|
|
"workbench.startupEditor": "none",
|
|
|
|
/* Extension settings. */
|
|
|
|
/* Extension settings. */
|
|
|
@ -83,19 +92,6 @@
|
|
|
|
"liveServer.settings.wait": 1000,
|
|
|
|
"liveServer.settings.wait": 1000,
|
|
|
|
// Markdown Preview Enhanced (ID: shd101wyy.markdown-preview-enhanced).
|
|
|
|
// Markdown Preview Enhanced (ID: shd101wyy.markdown-preview-enhanced).
|
|
|
|
"markdown-preview-enhanced.previewTheme": "github-dark.css",
|
|
|
|
"markdown-preview-enhanced.previewTheme": "github-dark.css",
|
|
|
|
// Python (ID: ms-python.python)
|
|
|
|
|
|
|
|
"python.formatting.provider": "black",
|
|
|
|
|
|
|
|
"python.languageServer": "Jedi",
|
|
|
|
|
|
|
|
"python.linting.enabled": true,
|
|
|
|
|
|
|
|
"python.linting.flake8Enabled": false,
|
|
|
|
|
|
|
|
"python.linting.mypyEnabled": true,
|
|
|
|
|
|
|
|
"python.testing.unittestEnabled": false,
|
|
|
|
|
|
|
|
"python.testing.pytestEnabled": true,
|
|
|
|
|
|
|
|
"python.testing.pytestArgs": [
|
|
|
|
|
|
|
|
"tests"
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
// Rust (ID: rust-lang.rust).
|
|
|
|
|
|
|
|
"rust.clippy_preference": "on",
|
|
|
|
|
|
|
|
// Stylelint (ID: stylelint.vscode-stylelint)
|
|
|
|
// Stylelint (ID: stylelint.vscode-stylelint)
|
|
|
|
"stylelint.validate": [
|
|
|
|
"stylelint.validate": [
|
|
|
|
"css",
|
|
|
|
"css",
|
|
|
@ -105,40 +101,6 @@
|
|
|
|
],
|
|
|
|
],
|
|
|
|
// SVG Preview (ID: jock.svg)
|
|
|
|
// SVG Preview (ID: jock.svg)
|
|
|
|
"svg.preview.mode": "svg",
|
|
|
|
"svg.preview.mode": "svg",
|
|
|
|
// TODO Highlight (ID: wayou.vscode-todo-highlight).
|
|
|
|
|
|
|
|
"todohighlight.keywords": [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
"backgroundColor": "#41C8E5",
|
|
|
|
|
|
|
|
"color": "#1F1731",
|
|
|
|
|
|
|
|
"text": "TODO:"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// Useful for highlighting TODOs in Rust with its `todo!` macro.
|
|
|
|
|
|
|
|
"backgroundColor": "#41C8E5",
|
|
|
|
|
|
|
|
"color": "#1F1731",
|
|
|
|
|
|
|
|
"text": "todo!"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
"backgroundColor": "#F99FB1",
|
|
|
|
|
|
|
|
"color": "#1F1731",
|
|
|
|
|
|
|
|
"text": "DEBUG:"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
"backgroundColor": "#D2B83A",
|
|
|
|
|
|
|
|
"color": "#1F1731",
|
|
|
|
|
|
|
|
"text": "SPEC:"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
"backgroundColor": "#96C839",
|
|
|
|
|
|
|
|
"color": "#1F1731",
|
|
|
|
|
|
|
|
"text": "NOTE:"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
// TODO Tree (ID: gruntfuggly.todo-tree).
|
|
|
|
|
|
|
|
"todo-tree.filtering.useBuiltInExcludes": "file excludes",
|
|
|
|
|
|
|
|
"todo-tree.highlights.enabled": false,
|
|
|
|
|
|
|
|
// Redhat
|
|
|
|
|
|
|
|
"redhat.telemetry.enabled": false,
|
|
|
|
|
|
|
|
// Linter XO (ID: samverschueren.linter-xo).
|
|
|
|
// Linter XO (ID: samverschueren.linter-xo).
|
|
|
|
"xo.format.enable": true,
|
|
|
|
"xo.format.enable": true,
|
|
|
|
/* Language-specific overrides. */
|
|
|
|
/* Language-specific overrides. */
|
|
|
|