Skip to content

Commit 04eac00

Browse files
authored
Merge pull request #138 from trjohnson19/dependabot/github_actions/super-linter/super-linter-8.2.0
Bump super-linter/super-linter from 8.0.0 to 8.2.0
2 parents e393b44 + 31ad0c5 commit 04eac00

File tree

6 files changed

+88
-67
lines changed

6 files changed

+88
-67
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# EditorConfig is awesome: https://editorconfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
# Allow tabs in JSON
12+
[*.json]
13+
indent_style = tab

.github/workflows/differential-shellcheck.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # @v5.0.0
2424
with:
2525
fetch-depth: 0
26+
persist-credentials: false
2627

2728
- name: Differential ShellCheck
2829
# yamllint disable-line rule:line-length

.github/workflows/super-linter.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ jobs:
2828
## Full git history is needed to get a proper list of changed files
2929
## within `super-linter`
3030
fetch-depth: 0
31+
persist-credentials: false
3132

3233
- name: Lint Code Base
3334
# yamllint disable-line rule:line-length
34-
uses: super-linter/super-linter@5119dcd8011e92182ce8219d9e9efc82f16fddb6 # @v8.0.0
35+
uses: super-linter/super-linter@7bba2eeb89d01dc9bfd93c497477a57e72c83240 # @v8.2.0
3536
env:
3637
VALIDATE_ALL_CODEBASE: false
3738
DEFAULT_BRANCH: "main"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Thumbs.db
5151
!.bash_aliases.example
5252
!.bash_rc.example
5353
!CHANGELOG.md
54+
!.editorconfig
5455
!.gitignore
5556
!docker-compose.yml
5657
!LICENSE

.vscode/settings.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
2-
"git.enableCommitSigning": true,
3-
"files.watcherExclude": {
4-
"/appdata/bazarr/config/cache": true,
5-
"/appdata/calibre/config": true,
6-
"/appdata/jellyfin/config/data": true,
7-
"/appdata/jellyfin/config/metadata": true,
8-
"/appdata/jellyfin/transcodes": true,
9-
"/appdata/mariadb/data": true,
10-
"/appdata/nextcloud": true,
11-
"/appdata/nextcloud/config*/**": false,
12-
"/appdata/postgres/data": true,
13-
"/appdata/qbittorrent*/config/qBittorrent": true,
14-
"/appdata/recyclarr/config/repo*/**": true,
15-
"/appdata/redis/data": true,
16-
"/appdata/tdarr/server": true,
17-
"/appdata/vaultwarden/data/icon_cache": true,
18-
"/appdata/vscode/config": true,
19-
"**/MediaCover": true
20-
}
2+
"git.enableCommitSigning": true,
3+
"files.watcherExclude": {
4+
"/appdata/bazarr/config/cache": true,
5+
"/appdata/calibre/config": true,
6+
"/appdata/jellyfin/config/data": true,
7+
"/appdata/jellyfin/config/metadata": true,
8+
"/appdata/jellyfin/transcodes": true,
9+
"/appdata/mariadb/data": true,
10+
"/appdata/nextcloud": true,
11+
"/appdata/nextcloud/config*/**": false,
12+
"/appdata/postgres/data": true,
13+
"/appdata/qbittorrent*/config/qBittorrent": true,
14+
"/appdata/recyclarr/config/repo*/**": true,
15+
"/appdata/redis/data": true,
16+
"/appdata/tdarr/server": true,
17+
"/appdata/vaultwarden/data/icon_cache": true,
18+
"/appdata/vscode/config": true,
19+
"**/MediaCover": true
20+
}
2121
}
Lines changed: 52 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,54 @@
11
{
2-
"includeCorsCredentials": false,
3-
"multiserver": false,
4-
"themes": [
5-
{
6-
"name": "Apple TV",
7-
"id": "appletv"
8-
}, {
9-
"name": "Blue Radiance",
10-
"id": "blueradiance"
11-
}, {
12-
"name": "Dark",
13-
"id": "dark",
14-
"default": true
15-
}, {
16-
"name": "Light",
17-
"id": "light"
18-
}, {
19-
"name": "Purple Haze",
20-
"id": "purplehaze"
21-
}, {
22-
"name": "WMC",
23-
"id": "wmc"
24-
}
25-
],
26-
"servers": [],
27-
"plugins": [
28-
"playAccessValidation/plugin",
29-
"experimentalWarnings/plugin",
30-
"htmlAudioPlayer/plugin",
31-
"htmlVideoPlayer/plugin",
32-
"photoPlayer/plugin",
33-
"comicsPlayer/plugin",
34-
"bookPlayer/plugin",
35-
"backdropScreensaver/plugin",
36-
"pdfPlayer/plugin",
37-
"logoScreensaver/plugin",
38-
"sessionPlayer/plugin",
39-
"chromecastPlayer/plugin",
40-
"plugins/youtubePlayer/plugin"
41-
],
42-
"menuLinks": [
43-
{
44-
"name": "Request Something New",
45-
"icon": "library_add",
46-
"url": "https://example.com"
47-
}
48-
]
2+
"includeCorsCredentials": false,
3+
"multiserver": false,
4+
"themes": [
5+
{
6+
"name": "Apple TV",
7+
"id": "appletv"
8+
},
9+
{
10+
"name": "Blue Radiance",
11+
"id": "blueradiance"
12+
},
13+
{
14+
"name": "Dark",
15+
"id": "dark",
16+
"default": true
17+
},
18+
{
19+
"name": "Light",
20+
"id": "light"
21+
},
22+
{
23+
"name": "Purple Haze",
24+
"id": "purplehaze"
25+
},
26+
{
27+
"name": "WMC",
28+
"id": "wmc"
29+
}
30+
],
31+
"servers": [],
32+
"plugins": [
33+
"playAccessValidation/plugin",
34+
"experimentalWarnings/plugin",
35+
"htmlAudioPlayer/plugin",
36+
"htmlVideoPlayer/plugin",
37+
"photoPlayer/plugin",
38+
"comicsPlayer/plugin",
39+
"bookPlayer/plugin",
40+
"backdropScreensaver/plugin",
41+
"pdfPlayer/plugin",
42+
"logoScreensaver/plugin",
43+
"sessionPlayer/plugin",
44+
"chromecastPlayer/plugin",
45+
"plugins/youtubePlayer/plugin"
46+
],
47+
"menuLinks": [
48+
{
49+
"name": "Request Something New",
50+
"icon": "library_add",
51+
"url": "https://example.com"
52+
}
53+
]
4954
}

0 commit comments

Comments
 (0)