From 60b9f3ed44d0666320c724866d465ca2f704252f Mon Sep 17 00:00:00 2001 From: alexbelgium <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 7 Sep 2025 00:31:54 +0000 Subject: [PATCH] fix: auto-fix linting issues --- emby_beta/rootfs/etc/services.d/nginx/run | 0 guacamole/rootfs/etc/services.d/nginx/run | 0 immich/config.json | 18 ++++++++++++++---- immich_cuda/config.json | 17 +++++++++++++---- immich_noml/config.json | 18 ++++++++++++++---- immich_openvino/config.json | 17 +++++++++++++---- nzbget/rootfs/etc/services.d/nginx/run | 0 radarr/rootfs/etc/services.d/nginx/run | 0 8 files changed, 54 insertions(+), 16 deletions(-) mode change 100644 => 100755 emby_beta/rootfs/etc/services.d/nginx/run mode change 100644 => 100755 guacamole/rootfs/etc/services.d/nginx/run mode change 100644 => 100755 nzbget/rootfs/etc/services.d/nginx/run mode change 100644 => 100755 radarr/rootfs/etc/services.d/nginx/run diff --git a/emby_beta/rootfs/etc/services.d/nginx/run b/emby_beta/rootfs/etc/services.d/nginx/run old mode 100644 new mode 100755 diff --git a/guacamole/rootfs/etc/services.d/nginx/run b/guacamole/rootfs/etc/services.d/nginx/run old mode 100644 new mode 100755 diff --git a/immich/config.json b/immich/config.json index 98f99a7d5..6b5a43f76 100644 --- a/immich/config.json +++ b/immich/config.json @@ -1,6 +1,11 @@ { - "arch": ["aarch64", "amd64"], - "backup_exclude": ["**/machine-learning/*"], + "arch": [ + "aarch64", + "amd64" + ], + "backup_exclude": [ + "**/machine-learning/*" + ], "codenotary": "alexandrep.github@gmail.com", "description": "Self-hosted photo and video backup solution directly from your mobile phone", "devices": [ @@ -111,7 +116,10 @@ "ports_description": { "8080/tcp": "Web UI port" }, - "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"], + "privileged": [ + "SYS_ADMIN", + "DAC_READ_SEARCH" + ], "schema": { "DB_DATABASE_NAME": "str", "DB_HOSTNAME": "str", @@ -133,7 +141,9 @@ "networkdisks": "str?", "skip_permissions_check": "bool?" }, - "services": ["mysql:want"], + "services": [ + "mysql:want" + ], "slug": "immich", "udev": true, "url": "https://github.com/alexbelgium/hassio-addons", diff --git a/immich_cuda/config.json b/immich_cuda/config.json index fe537402a..e72def91f 100644 --- a/immich_cuda/config.json +++ b/immich_cuda/config.json @@ -1,6 +1,10 @@ { - "arch": ["amd64"], - "backup_exclude": ["**/machine-learning/*"], + "arch": [ + "amd64" + ], + "backup_exclude": [ + "**/machine-learning/*" + ], "codenotary": "alexandrep.github@gmail.com", "description": "Self-hosted photo and video backup solution directly from your mobile phone", "devices": [ @@ -111,7 +115,10 @@ "ports_description": { "8080/tcp": "Web UI port" }, - "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"], + "privileged": [ + "SYS_ADMIN", + "DAC_READ_SEARCH" + ], "schema": { "DB_DATABASE_NAME": "str", "DB_HOSTNAME": "str", @@ -133,7 +140,9 @@ "networkdisks": "str?", "skip_permissions_check": "bool?" }, - "services": ["mysql:want"], + "services": [ + "mysql:want" + ], "slug": "immich_cuda", "udev": true, "url": "https://github.com/alexbelgium/hassio-addons", diff --git a/immich_noml/config.json b/immich_noml/config.json index 36606fc27..092b19984 100644 --- a/immich_noml/config.json +++ b/immich_noml/config.json @@ -1,6 +1,11 @@ { - "arch": ["aarch64", "amd64"], - "backup_exclude": ["**/machine-learning/*"], + "arch": [ + "aarch64", + "amd64" + ], + "backup_exclude": [ + "**/machine-learning/*" + ], "codenotary": "alexandrep.github@gmail.com", "description": "Self-hosted photo and video backup solution directly from your mobile phone", "devices": [ @@ -111,7 +116,10 @@ "ports_description": { "8080/tcp": "Web UI port" }, - "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"], + "privileged": [ + "SYS_ADMIN", + "DAC_READ_SEARCH" + ], "schema": { "DB_DATABASE_NAME": "str", "DB_HOSTNAME": "str", @@ -133,7 +141,9 @@ "networkdisks": "str?", "skip_permissions_check": "bool?" }, - "services": ["mysql:want"], + "services": [ + "mysql:want" + ], "slug": "immich_noml", "udev": true, "url": "https://github.com/alexbelgium/hassio-addons", diff --git a/immich_openvino/config.json b/immich_openvino/config.json index 02c3e1a3f..e27cfea48 100644 --- a/immich_openvino/config.json +++ b/immich_openvino/config.json @@ -1,6 +1,10 @@ { - "arch": ["amd64"], - "backup_exclude": ["**/machine-learning/*"], + "arch": [ + "amd64" + ], + "backup_exclude": [ + "**/machine-learning/*" + ], "codenotary": "alexandrep.github@gmail.com", "description": "Self-hosted photo and video backup solution directly from your mobile phone", "devices": [ @@ -111,7 +115,10 @@ "ports_description": { "8080/tcp": "Web UI port" }, - "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"], + "privileged": [ + "SYS_ADMIN", + "DAC_READ_SEARCH" + ], "schema": { "DB_DATABASE_NAME": "str", "DB_HOSTNAME": "str", @@ -133,7 +140,9 @@ "networkdisks": "str?", "skip_permissions_check": "bool?" }, - "services": ["mysql:want"], + "services": [ + "mysql:want" + ], "slug": "immich_openvino", "udev": true, "url": "https://github.com/alexbelgium/hassio-addons", diff --git a/nzbget/rootfs/etc/services.d/nginx/run b/nzbget/rootfs/etc/services.d/nginx/run old mode 100644 new mode 100755 diff --git a/radarr/rootfs/etc/services.d/nginx/run b/radarr/rootfs/etc/services.d/nginx/run old mode 100644 new mode 100755