Skip to content

Commit 3ed48b6

Browse files
authored
Merge pull request #83 from gvatsal60/fix/minor_fixes_Vg
Minor Fixes
2 parents f9fe1db + 55f39c2 commit 3ed48b6

File tree

6 files changed

+11
-12
lines changed

6 files changed

+11
-12
lines changed

.devcontainer/devcontainer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
"vscode": {
44
"extensions": [
55
"DavidAnson.vscode-markdownlint",
6-
"MindpathTechnologyLimited.code-error-lens",
76
"Tyriar.sort-lines",
87
"foxundermoon.shell-format",
98
"mads-hartmann.bash-ide-vscode",
10-
"streetsidesoftware.code-spell-checker"
9+
"streetsidesoftware.code-spell-checker",
10+
"timonwong.shellcheck",
11+
"usernamehw.errorlens"
1112
],
1213
"settings": {
1314
"[shellscript]": {
@@ -33,7 +34,7 @@
3334
}
3435
}
3536
},
36-
"image": "mcr.microsoft.com/devcontainers/base:noble",
37+
"image": "mcr.microsoft.com/devcontainers/base:debian",
3738
"runArgs": [
3839
"--rm",
3940
"--name=vsc-${localEnv:USER}-${containerWorkspaceFolderBasename}-${devcontainerId}"

.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}}

.markdownlint.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"MD013": {
3+
"line_length": 999
4+
}
5+
}

.markdownlint.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.pre-commit-config.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,6 @@ repos:
6868
hooks:
6969
- id: talisman-commit
7070
entry: cmd --githook pre-commit
71-
# Checkmake for linting Makefiles
72-
- repo: https://github.com/mrtazz/checkmake
73-
rev: "0.2.2"
74-
hooks:
75-
- id: checkmake
7671
# Markdownlint for linting Markdown files
7772
- repo: https://github.com/DavidAnson/markdownlint-cli2
7873
rev: v0.18.1

update-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ update_gem() {
7373
GEM_PATH=$(which gem)
7474

7575
# Check if the path does not match the expected path
76-
if [ "$GEM_PATH" = "/usr/bin/gem" ]; then
76+
if [ "${GEM_PATH}" = "/usr/bin/gem" ]; then
7777
print_err "gem is not installed."
7878
return
7979
fi

0 commit comments

Comments
 (0)