Skip to content

Commit b1caa30

Browse files
authored
Minor Fixes
1 parent c5e0f55 commit b1caa30

3 files changed

Lines changed: 2 additions & 11 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,10 @@
44
"extensions": [
55
"DavidAnson.vscode-markdownlint",
66
"EditorConfig.EditorConfig",
7-
"PKief.material-icon-theme",
87
"Tyriar.sort-lines",
98
"esbenp.prettier-vscode",
109
"foxundermoon.shell-format",
11-
"gurumukhi.selected-lines-count",
1210
"mads-hartmann.bash-ide-vscode",
13-
"marvhen.reflow-markdown",
1411
"streetsidesoftware.code-spell-checker",
1512
"timonwong.shellcheck",
1613
"usernamehw.errorlens"
@@ -35,7 +32,6 @@
3532
"editor.tabSize": 2,
3633
"editor.trimAutoWhitespace": true,
3734
"explorer.confirmDelete": false,
38-
"extensions.autoUpdate": true,
3935
"extensions.ignoreRecommendations": true,
4036
"files.associations": {
4137
"*.code-snippets": "jsonc"
@@ -52,15 +48,10 @@
5248
"**/bower_components": true,
5349
"**/node_modules": true
5450
},
55-
"windows.title": "${folderPath}",
56-
"workbench.iconTheme": "material-icon-theme",
5751
"workbench.startupEditor": "none"
5852
}
5953
}
6054
},
61-
"features": {
62-
"ghcr.io/gvatsal60/dev-container-features/pre-commit": {}
63-
},
6455
"image": "mcr.microsoft.com/devcontainers/javascript-node",
6556
"mounts": [
6657
"source=${localWorkspaceFolder}/snippets,target=${containerWorkspaceFolder}/.vscode,type=bind,consistency=cached"

.devcontainer/postCreateScript.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ readonly ALIAS_SRC_URL="https://raw.githubusercontent.com/gvatsal60/Linux-Aliase
4545
# Install Linux aliases from external script using curl and execute immediately
4646
# Note: Make sure to review scripts fetched from external sources for security reasons
4747
if command -v curl >/dev/null 2>&1; then
48-
curl -fsSL ${ALIAS_SRC_URL} | sh
48+
curl -fsSL "${ALIAS_SRC_URL}" | sh
4949
else
5050
echo "Error: curl is not installed. Unable to use Linux aliases"
5151
exit 1

.github/workflows/pre-commit-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
env:
1414
PR_URL: ${{github.event.pull_request.html_url}}
1515
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
16-
- name: Enable auto-merge for Dependabot PRs
16+
- name: Enable auto-merge for pre-commit PRs
1717
run: gh pr merge --auto --merge "$PR_URL"
1818
env:
1919
PR_URL: ${{github.event.pull_request.html_url}}

0 commit comments

Comments
 (0)