fix: conform files to editorconfig specification

This commit is contained in:
Ben Grande 2024-07-08 17:26:34 +02:00
parent 89a4ea8073
commit 523bca2327
No known key found for this signature in database
GPG Key ID: 00C64E14F51F9E56
18 changed files with 49 additions and 36 deletions

View File

@ -45,17 +45,13 @@ jobs:
- name: Install pip packages
run: pip3 install $(cat dependencies/pip.txt)
- uses: pre-commit/action@v3.0.1
continue-on-error: true
env:
SPEC_VENDOR: Github Actions
SPEC_PACKAGER: Github Actions
- uses: editorconfig-checker/action-editorconfig-checker@main
- name: Run Editorconfig Checker
continue-on-error: true
run: editorconfig-checker
- name: Lint commits
continue-on-error: true
# yamllint disable-line rule:line-length
run: |
if test "${{ github.event_name}}" = "pull_request"
then

View File

@ -128,8 +128,8 @@ name: keys
force: True
{# Only run this state if the requirements are executed successfully #}
require:
{# Ensure successful 'qvm.clone' run to create 'tpl-keys-clone'
This module was executed in the 'clone_template' macro #}
{# Ensure successful 'qvm.clone' run to create 'tpl-keys-clone' #}
{# This module was executed in the 'clone_template' macro #}
- qvm: tpl-keys-clone
{# If qube does not exist, create it with the specified settings #}
present:

View File

@ -116,6 +116,9 @@ fi
%dnl TODO: missing '%ghost', files generated during %post, such as Qrexec policies.
%changelog
* Mon Jul 08 2024 Ben Grande <ben.grande.b@gmail.com> - f60077f
- doc: spell check
* Fri Jul 05 2024 Ben Grande <ben.grande.b@gmail.com> - 34d2943
- fix: correct markdown lint package name

View File

@ -118,6 +118,9 @@ fi
%dnl TODO: missing '%ghost', files generated during %post, such as Qrexec policies.
%changelog
* Mon Jul 08 2024 Ben Grande <ben.grande.b@gmail.com> - f60077f
- doc: spell check
* Thu Jul 04 2024 Ben Grande <ben.grande.b@gmail.com> - 383c840
- doc: lint markdown files

View File

@ -126,6 +126,9 @@ fi
%dnl TODO: missing '%ghost', files generated during %post, such as Qrexec policies.
%changelog
* Mon Jul 08 2024 Ben Grande <ben.grande.b@gmail.com> - f60077f
- doc: spell check
* Thu Jul 04 2024 Ben Grande <ben.grande.b@gmail.com> - 383c840
- doc: lint markdown files

View File

@ -130,6 +130,9 @@ fi
%dnl TODO: missing '%ghost', files generated during %post, such as Qrexec policies.
%changelog
* Mon Jul 08 2024 Ben Grande <ben.grande.b@gmail.com> - f60077f
- doc: spell check
* Sat Jul 06 2024 Ben Grande <ben.grande.b@gmail.com> - 8604887
- feat: unify cacher tag list to a single script
@ -276,6 +279,3 @@ fi
* Wed Dec 20 2023 Ben Grande <ben.grande.b@gmail.com> - 38d98ec
- fix: nft shebang and table names
* Wed Dec 20 2023 Ben Grande <ben.grande.b@gmail.com> - d3ae662
- fix: cacher client installation indentation

View File

@ -120,6 +120,9 @@ fi
%dnl TODO: missing '%ghost', files generated during %post, such as Qrexec policies.
%changelog
* Mon Jul 08 2024 Ben Grande <ben.grande.b@gmail.com> - f60077f
- doc: spell check
* Thu Jul 04 2024 Ben Grande <ben.grande.b@gmail.com> - 383c840
- doc: lint markdown files

View File

@ -12,10 +12,9 @@ usage(){
get_qube_feat(){
qube="${1}"
qvm-features "${qube}" \
| grep -e os-distribution -e os-version -e template-release \
-e template-release -e template-name \
| tr -s " " | sed "s/ /: /;s/^/ /"
qvm-features "${qube}" | \
grep -E "^(os-(distribution|version)|template-(release|name))" | \
sed "s/ / /g;s/ /: /;s/^/ /"
}
case "${1-}" in

View File

@ -44,6 +44,7 @@ take_screenshot() {
}
print_help(){
# editorconfig-checker-disable
echo "Usage: ${0##*/} [OPTIONS]
-h, --help print this help message and exit
Capture mode:
@ -57,6 +58,7 @@ Development mode:
-D, --dialog-cmd dialog tool: kdialog, zenity
-S, --screenshot-cmd screenshot tool: maim, scrot, spectacle,
xfce4-screenshooter"
# editorconfig-checker-enable
exit 1
}

View File

@ -18,7 +18,7 @@ Install Signal Desktop and creates an app qube named "signal".
```sh
sudo qubesctl top.enable signal
sudo qubesctl --targets=tpl-signal,signal state.appply
sudo qubesctl --targets=tpl-signal,signal state.apply
sudo qubesctl top.disable signal
sudo qubesctl state.apply signal.appmenus
```

View File

@ -53,7 +53,10 @@ case "${find_tool}" in
;;
esac
files="$(echo "$files" | sort -u)"
sh_files="$(echo "$sh_files" | sort -u)"
test -z "${files}" || shellcheck ${files}
test -z "${sh_files}" || shellcheck -s sh ${sh_files}
echo "${files}" | sort -u | tr " " "\n"
exit
#files="$(echo "$files" | sort -u)"
#sh_files="$(echo "$sh_files" | sort -u)"
#test -z "${files}" || shellcheck ${files}
#test -z "${sh_files}" || shellcheck -s sh ${sh_files}

View File

@ -105,7 +105,8 @@ if test "${key}" = "description"; then
fi
if test "${key}" = "summary"; then
summary="$(sed -n "/^# ${name}$/,/^## Table of Contents$/{
summary="$(sed -n -e \
"/^# ${name}$/,/^## Table of Contents$/{
/./!d; /^#/d; /^SPDX/d; /^<!--/d; /^-->/d; s/\.$//; p}" \
-- "${readme}")"
block_max_chars summary "${summary}" 70