refactor(docs): uniform formatting pass (#1363)

* refactor(docs): uniform formatting pass

* refactor: ignore formatting of specific files

* fix: add REUSE info to .prettierignore
This commit is contained in:
Travis Abendshien
2026-05-12 09:24:04 -04:00
committed by GitHub
parent eb97476dac
commit e134cb1ecb
34 changed files with 1088 additions and 1077 deletions

1
.github/FUNDING.yml vendored
View File

@@ -1,6 +1,5 @@
# SPDX-FileCopyrightText: (c) TagStudio Contributors
# SPDX-License-Identifier: GPL-3.0-only
---
patreon: cyanvoxel

View File

@@ -3,8 +3,8 @@
---
name: Bug Report
description: File a bug or issue report.
title: '[Bug]: '
labels: ['Type: Bug']
title: "[Bug]: "
labels: ["Type: Bug"]
body:
- type: markdown
attributes:

View File

@@ -3,8 +3,8 @@
---
name: Feature Request
description: Suggest a new feature.
title: '[Feature Request]: '
labels: ['Type: Enhancement']
title: "[Feature Request]: "
labels: ["Type: Enhancement"]
body:
- type: markdown
attributes:

View File

@@ -1,5 +1,6 @@
<!-- SPDX-FileCopyrightText: (c) TagStudio Contributors -->
<!-- SPDX-License-Identifier: GPL-3.0-only -->
### Summary
<!--
@@ -19,15 +20,15 @@ Thank you for your eagerness to contribute!
<!-- No requirements, just context for reviewers. -->
- Platforms Tested:
- [ ] Windows x86
- [ ] Windows ARM
- [ ] macOS x86
- [ ] macOS ARM
- [ ] Linux x86
- [ ] Linux ARM
<!-- If an unspecified platform was tested, please add it here -->
- Tested For:
- [ ] Basic functionality
- [ ] PyInstaller executable <!-- Not necessarily required, but appreciated! -->
<!-- If other important criteria was tested for, please add it here -->
- Platforms Tested:
- [ ] Windows x86
- [ ] Windows ARM
- [ ] macOS x86
- [ ] macOS ARM
- [ ] Linux x86
- [ ] Linux ARM
<!-- If an unspecified platform was tested, please add it here -->
- Tested For:
- [ ] Basic functionality
- [ ] PyInstaller executable <!-- Not necessarily required, but appreciated! -->
<!-- If other important criteria was tested for, please add it here -->

View File

@@ -21,7 +21,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: "3.12"
cache: pip
- name: Install Python dependencies

View File

@@ -30,7 +30,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: "3.12"
cache: pip
- name: Install Python dependencies
@@ -45,7 +45,7 @@ jobs:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
mkdocs-material-
- name: Execute mkdocs
run: mkdocs gh-deploy --force

View File

@@ -19,7 +19,7 @@ jobs:
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: "3.12"
cache: pip
- &install-dependencies

View File

@@ -12,11 +12,11 @@ jobs:
linux:
strategy:
matrix:
build-type: ['', portable]
build-type: ["", portable]
include:
- build-type: ''
build-flag: ''
suffix: ''
- build-type: ""
build-flag: ""
suffix: ""
- build-type: portable
build-flag: --portable
suffix: _portable
@@ -28,7 +28,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: "3.12"
cache: pip
- name: Install Python dependencies
@@ -50,18 +50,18 @@ jobs:
macos:
strategy:
matrix:
os-version: ['14', '15']
os-version: ["14", "15"]
include:
- os-version: '14'
- os-version: "14"
arch: x86_64
- os-version: '15'
- os-version: "15"
arch: aarch64
runs-on: macos-${{ matrix.os-version }}
env:
# INFO: Even though we run on 14, target towards compatibility
MACOSX_DEPLOYMENT_TARGET: '11.0'
MACOSX_DEPLOYMENT_TARGET: "11.0"
steps:
- name: Checkout repo
@@ -70,7 +70,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: "3.12"
cache: pip
- name: Install Python dependencies
@@ -78,7 +78,6 @@ jobs:
python -m pip install --upgrade uv
uv pip install --system .[pyinstaller]
- name: Execute PyInstaller
run: |
pyinstaller tagstudio.spec
@@ -92,12 +91,12 @@ jobs:
windows:
strategy:
matrix:
build-type: ['', portable]
build-type: ["", portable]
include:
- build-type: ''
build-flag: ''
suffix: ''
file-end: ''
- build-type: ""
build-flag: ""
suffix: ""
file-end: ""
- build-type: portable
build-flag: --portable
suffix: _portable
@@ -112,7 +111,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: "3.12"
cache: pip
- name: Install Python dependencies