Skip to content

Commit

Permalink
chore(vscode): change settings
Browse files Browse the repository at this point in the history
  • Loading branch information
buroa committed Dec 14, 2023
1 parent cc66873 commit 1d879d2
Show file tree
Hide file tree
Showing 12 changed files with 44 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@
"(^|/)kubernetes/.+\\.ya?ml(\\.j2)?$"
]
}
}
}
2 changes: 1 addition & 1 deletion .github/renovate/allowedVersions.json5
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"allowedVersions": "<=16"
}
]
}
}
2 changes: 1 addition & 1 deletion .github/renovate/autoMerge.json5
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"matchUpdateTypes": ["minor", "patch"]
}
]
}
}
2 changes: 1 addition & 1 deletion .github/renovate/commitMessage.json5
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"commitMessageExtra": "to revision {{newVersion}}"
}
]
}
}
2 changes: 1 addition & 1 deletion .github/renovate/customDatasources.json5
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
]
}
}
}
}
2 changes: 1 addition & 1 deletion .github/renovate/customManagers.json5
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@
"versioningTemplate": "redhat"
}
]
}
}
2 changes: 1 addition & 1 deletion .github/renovate/groups.json5
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@
"separateMinorPatch": true
}
]
}
}
2 changes: 1 addition & 1 deletion .github/renovate/labels.json5
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@
"addLabels": ["renovate/grafana-dashboard"]
}
]
}
}
2 changes: 1 addition & 1 deletion .github/renovate/packageRules.json5
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
"matchPackagePatterns": ["plex", "qbittorrent"]
}
]
}
}
2 changes: 1 addition & 1 deletion .github/renovate/semanticCommits.json5
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@
"semanticCommitScope": "grafana-dashboard"
}
]
}
}
1 change: 1 addition & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"albert.TabOut",
"britesnow.vscode-toggle-quotes",
"fcrespo82.markdown-table-formatter",
"mikestead.dotenv",
"mitchdenny.ecdc",
"redhat.vscode-yaml",
"signageos.signageos-vscode-sops",
Expand Down
58 changes: 33 additions & 25 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,50 @@
{
"editor.bracketPairColorization.enabled": true,
"editor.fontFamily": "FiraCode Nerd Font",
"editor.fontLigatures": true,
"editor.guides.bracketPairs": true,
"editor.guides.bracketPairsHorizontal": true,
"editor.guides.highlightActiveBracketPair": true,
"editor.hover.delay": 1500,
"editor.rulers": [100],
"editor.stickyScroll.enabled": false,
"explorer.autoReveal": false,
"files.associations": {
"*.json5": "jsonc",
"**/terraform/**/*.tf": "terraform",
"**/kubernetes/**/*.sops.toml": "plaintext"
"./terraform/**/*.tf": "terraform"
},
"files.trimTrailingWhitespace": true,
"material-icon-theme.files.associations": {
// TODO: https://github.com/PKief/vscode-material-icon-theme/issues/330
"*.secret.sops.env": "lock",
"*.secret.sops.yaml": "lock"
},
"material-icon-theme.folders.associations": {
// .github
".github": "github",
".taskfiles": "utils",
"bootstrap": "import",
"charts": "kubernetes",
"hack": "scripts",
"repositories": "database",
"terraforms": "terraform",
".vscode": "vscode",
"kubernetes": "kubernetes",
"talos": "core",
"vars": "other",
"terraform": "terraform",
// namespaces
"actions-runner-system": "robot",
"actions-runner-system": "github",
"cert-manager": "guard",
"default": "home",
"democratic-csi": "dump",
"external-secrets": "keys",
"flux-system": "ci",
"flux-system": "pipe",
"kube-system": "kubernetes",
"media": "video",
"monitoring": "event",
"networking": "connection",
"rook-ceph": "dump",
"security": "guard"
"security": "guard",
// apps
"system-upgrade-controller": "update",
"volsync": "aws"
},
"editor.formatOnSave": false,
"editor.formatOnSaveMode": "file",
"editor.fontFamily": "FiraCode Nerd Font",
"editor.fontLigatures": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.guides.bracketPairsHorizontal": true,
"editor.guides.highlightActiveBracketPair": true,
"editor.hover.delay": 1500,
"editor.stickyScroll.enabled": false,
"editor.rulers": [100],
"explorer.autoReveal": false,
"files.trimTrailingWhitespace": true
"yaml.schemaStore.enable": true,
"yaml.schemas": {
"kubernetes": "./kubernetes/**/*.yaml"
}
}

0 comments on commit 1d879d2

Please sign in to comment.