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