chore: apply biome

This commit is contained in:
Sirz Benjie 2025-09-16 09:18:52 -05:00
parent 41be5a85a4
commit b2bd9d0b52
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E
2 changed files with 40 additions and 41 deletions

View File

@ -5,45 +5,44 @@
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only
*/ */
{ {
// REUSE-IgnoreStart // REUSE-IgnoreStart
"Add SPDX header (/* */ comments )": { "Add SPDX header (/* */ comments )": {
"scope": "javascript,typescript,css,glsl,jsonc", "scope": "javascript,typescript,css,glsl,jsonc",
"prefix": "SPDX", "prefix": "SPDX",
"body": [ "body": [
"/*", "/*",
" * SPDX-FileCopyrightText: ${CURRENT_YEAR} Pagefault Games", " * SPDX-FileCopyrightText: ${CURRENT_YEAR} Pagefault Games",
" *", " *",
" * SPDX-License-Identifier: AGPL-3.0-only", " * SPDX-License-Identifier: AGPL-3.0-only",
" */", " */",
"$0" "$0"
], ],
"description": "AGPL-3.0-only SPDX header (c style comments)", "description": "AGPL-3.0-only SPDX header (c style comments)"
}, },
"Add SPDX header (<!--> comments)": { "Add SPDX header (<!--> comments)": {
"scope": "html,markdown", "scope": "html,markdown",
"prefix": "SPDX", "prefix": "SPDX",
"body": [ "body": [
"<!--", "<!--",
"SPDX-FileCopyrightText: ${CURRENT_YEAR} Pagefault Games", "SPDX-FileCopyrightText: ${CURRENT_YEAR} Pagefault Games",
"SPDX-License-Identifier: AGPL-3.0-only", "SPDX-License-Identifier: AGPL-3.0-only",
"-->", "-->",
"$0" "$0"
], ],
"description": "AGPL-3.0-only SPDX header (html style comments)", "description": "AGPL-3.0-only SPDX header (html style comments)"
}, },
"Add SPDX header (# comments) ": { "Add SPDX header (# comments) ": {
"prefix": "SPDX", "prefix": "SPDX",
"scope": "powershell,python,yaml,shellscript,ignore,toml,git,gitattributes", "scope": "powershell,python,yaml,shellscript,ignore,toml,git,gitattributes",
"body": [ "body": [
"# SPDX-FileCopyrightText: ${CURRENT_YEAR} Pagefault Games", "# SPDX-FileCopyrightText: ${CURRENT_YEAR} Pagefault Games",
"#", "#",
"# SPDX-License-Identifier: AGPL-3.0-only", "# SPDX-License-Identifier: AGPL-3.0-only",
"$0" "$0"
], ],
"description": "AGPL-3.0-only SPDX header (# style comments)", "description": "AGPL-3.0-only SPDX header (# style comments)"
}
} // REUSE-IgnoreEnd
// REUSE-IgnoreEnd
} }