Skip to content

Commit d53f956

Browse files
ci: praise be linters
Signed-off-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com>
1 parent 575a017 commit d53f956

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
github: [georglauterbach]
1+
---
2+
github: [ georglauterbach ]

.github/linters/.editorconfig-checker.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
"SpacesAftertabs": true,
66
"NoColor": false,
77
"Exclude": [
8-
"\\.sources$",
9-
"code/Cargo\\.lock$",
10-
"data/examples/git/gitconfig$"
8+
"old/**"
119
],
1210
"AllowedContentTypes": [],
1311
"PassedFiles": [],

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
---
12
name: Release
23

3-
on:
4+
on: # yamllint disable-line rule:truthy
45
workflow_dispatch:
56
push:
67
branches: [ main ]
@@ -34,6 +35,8 @@ jobs:
3435
3536
- name: Publish Features
3637
uses: devcontainers/action@v1
38+
env:
39+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3740
with:
3841
publish-features: 'true'
3942
base-path-to-features: ./src

.github/workflows/testing.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
---
12
name: Testing
23

3-
on:
4+
on: # yamllint disable-line rule:truthy
45
workflow_dispatch:
56
pull_request:
67
paths:
@@ -35,6 +36,8 @@ jobs:
3536
steps:
3637
- name: Checkout code
3738
uses: actions/checkout@v5
39+
with:
40+
persist-credentials: false
3841

3942
- name: Install latest devcontainer CLI
4043
run: npm install -g @devcontainers/cli
@@ -55,6 +58,8 @@ jobs:
5558
steps:
5659
- name: Checkout code
5760
uses: actions/checkout@v5
61+
with:
62+
persist-credentials: false
5863

5964
- name: Install latest devcontainer CLI
6065
run: npm install -g @devcontainers/cli

old/src/rust/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Work efficiently and effortlessly with the Rust programming language
2323
| rust.rustup.profile | Defines the [profile](https://rust-lang.github.io/rustup/concepts/profiles.html) that will be used by `rustup` during the installation | string | minimal |
2424
| rust.rustup.additional-targets | A list of [additional targets](https://rust-lang.github.io/rustup/cross-compilation.html) that will be installed by `rustup` | string | - |
2525
| rust.rustup.additional-components | A list of [additional components](https://rust-lang.github.io/rustup/concepts/components.html) that ill be installed by `rustup` (ref: [release-component-target-matrix](https://rust-lang.github.io/rustup-components-history/)) | string | - |
26-
| rust.rustup.dist-server | The URI for downloading static resources related to Rust ([ref](https://rust-lang.github.io/rustup/environment-variables.html)) | string | https://static.rust-lang.org |
27-
| rust.rustup.update-root | The URI for downloading self-update ([ref](https://rust-lang.github.io/rustup/environment-variables.html)) | string | https://static.rust-lang.org/rustup |
26+
| rust.rustup.dist-server | The URI for downloading static resources related to Rust ([ref](https://rust-lang.github.io/rustup/environment-variables.html)) | string | <https://static.rust-lang.org> |
27+
| rust.rustup.update-root | The URI for downloading self-update ([ref](https://rust-lang.github.io/rustup/environment-variables.html)) | string | <https://static.rust-lang.org/rustup> |
2828
| rust.rustup.rustup-init.host-triple | The [host triple](https://wiki.osdev.org/Target_Triplet) (including the architecture) of the system that you want to bootstrap Rust on | string | - |
2929
| system.packages.additional-packages | A list of additional packages to install via the system's package manager. These packages are installed **prior** to Rust. | string | - |
3030
| system.packages.package-manager.set-proxies | Whether to add the proxy to the package manager configuration, if proxies were supplied | boolean | false |

src/nodejs/install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ parse_linux_distribution() {
3636
log 'warn' "Could not parse distribution from '/etc/os-release'"
3737
;;
3838

39-
( * )
40-
log 'info' 'Linux distribution unknown'
41-
;;
39+
( * )
40+
log 'info' 'Linux distribution unknown'
41+
;;
4242
esac
4343
}
4444

0 commit comments

Comments
 (0)