Skip to content

Commit a699ec7

Browse files
chore: satisfy more linters
Signed-off-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com>
1 parent fff30c0 commit a699ec7

File tree

11 files changed

+9
-4
lines changed

11 files changed

+9
-4
lines changed

.github/linters/.editorconfig-checker.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"SpacesAfterTabs": true,
66
"NoColor": false,
77
"Exclude": [
8-
"old/*"
8+
"src/lang-rust/lldb_prettifier\\.py$"
99
],
1010
"AllowedContentTypes": [],
1111
"PassedFiles": [],

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ jobs:
4747
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4848
run: |
4949
echo 'Setting up git'
50-
git config --global user.email github-actions[bot]@users.noreply.github.com
51-
git config --global user.name github-actions[bot]
50+
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
51+
git config --global user.name 'github-actions[bot]'
5252
git config pull.rebase false
5353
5454
echo 'Creating new branch'
5555
BRANCH=automated-documentation-update-${GITHUB_RUN_ID}
5656
git checkout -b "${BRANCH}"
5757
5858
echo 'Committing changes'
59-
git add */**/README.md
59+
git add ./src/**/README.md
6060
if git commit -m 'Automated documentation update [skip ci]'; then
6161
echo -e 'Changes committed\nPushing changes to remote'
6262
git push origin "${BRANCH}"

src/hermes/install.sh

100644100755
File mode changed.

src/lang-bash/install.sh

100644100755
File mode changed.

src/lang-rust/on_create_command.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#! /bin/sh
2+
3+
set -e -u
4+
5+
cp on_create_command.sh /usr/local/share/dev_containers/features/ghcr_io/georglauterbach/lang_rust/lifecycle_hooks/on_create_command.sh

src/nodejs/install.sh

100644100755
File mode changed.

test/lang-rust/10-basic.sh

100644100755
File mode changed.

test/lang-rust/20-no-install.sh

100644100755
File mode changed.

test/lang-rust/60-mold.sh

100644100755
File mode changed.

test/lang-rust/lib.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)