Visual Studio Code Configuration

This is my Visual Studio Code configuration:

{
    "editor.fontSize": 12,
    "editor.formatOnSave": true,
    "editor.guides.bracketPairs": true,
    "editor.minimap.showSlider": "always",
    "editor.renderWhitespace": "all",
    "editor.rulers": [
        120
    ],
    "files.insertFinalNewline": true,
    "files.trimTrailingWhitespace": true,
    "html.format.extraLiners": "",
    "html.format.indentInnerHtml": true,
    "rust-analyzer.cargo.targetDir": true,
    "rust-analyzer.check.command": "clippy",
    "rust-analyzer.debug.sourceFileMap": "auto",
    "rust-analyzer.imports.granularity.enforce": true,
    "rust-analyzer.imports.granularity.group": "module",
    "rust-analyzer.imports.group.enable": false,
    "rust-analyzer.imports.prefix": "crate",
    "terminal.integrated.fontSize": 12,
    "update.showReleaseNotes": false,
    "workbench.editor.empty.hint": "hidden",
    "workbench.iconTheme": "vs-nomo-dark",
    "workbench.settings.editor": "json",
    "workbench.startupEditor": "newUntitledFile"
}