mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-15 14:25:32 +01:00
* Remove public folder to prepare for submodule * Add submodule and update licensing * Stop serving non-asset files during build * Update pull request template * Update CODEOWNERS * Add locales submodule * Update pull request template regarding locales * remove post-checkout lefthook in favor of git config * chore: add license info to new script * Update gh pages workflow * Apply kev's suggestions from code review Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * update assets
21 lines
580 B
YAML
21 lines
580 B
YAML
# SPDX-FileCopyrightText: 2024-2025 Pagefault Games
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
pre-commit:
|
|
skip:
|
|
- merge
|
|
- rebase
|
|
commands:
|
|
biome-lint:
|
|
# Disable colors as certain IDEs don't support it in the output pane.
|
|
# Summary mode looks decent in plain ASCII anyhow
|
|
run: pnpm exec biome check --write --colors=off --reporter=summary --staged --no-errors-on-unmatched --diagnostic-level=error
|
|
stage_fixed: true
|
|
ls-lint:
|
|
run: pnpm exec ls-lint
|
|
|
|
post-merge:
|
|
commands:
|
|
update-submodules:
|
|
run: pnpm update-submodules |