Skip to content

Conversation

@quisido
Copy link
Owner

@quisido quisido commented Oct 15, 2025

No description provided.

@quisido quisido self-assigned this Oct 15, 2025
@coderabbitai

This comment was marked as outdated.

github-advanced-security[bot]

This comment was marked as outdated.

Copilot AI review requested due to automatic review settings November 6, 2025 09:25
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

Copilot reviewed 282 out of 455 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copilot AI review requested due to automatic review settings November 6, 2025 11:05
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

Copilot reviewed 282 out of 456 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copilot AI review requested due to automatic review settings November 29, 2025 05:27
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 278 out of 553 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copilot AI review requested due to automatic review settings November 30, 2025 06:53
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 278 out of 557 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copilot AI review requested due to automatic review settings November 30, 2025 20:42
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 278 out of 576 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copilot AI review requested due to automatic review settings December 1, 2025 07:39
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 278 out of 576 changed files in this pull request and generated 5 comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

"private": true,
"type": "module",
"scripts": {
"build": "exit 0 || npm run-script tsc && npm run-script vite:build",
Copy link

Copilot AI Dec 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The build script will always exit with 0 due to exit 0 ||, making the subsequent commands unreachable. Remove exit 0 || to allow the build commands to execute.

Suggested change
"build": "exit 0 || npm run-script tsc && npm run-script vite:build",
"build": "npm run-script tsc && npm run-script vite:build",

Copilot uses AI. Check for mistakes.
Comment on lines +12 to +18
"eslint": "exit 0 || eslint . --cache --color --exit-on-fatal-error",
"eslint:fix": "eslint . --cache --color --exit-on-fatal-error --fix",
"serve": "serve dist",
"tsc": "tsc --skipLibCheck",
"vite:build": "vite build",
"vitest": "vitest",
"vitest:run": "exit 0 || vitest run"
Copy link

Copilot AI Dec 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The eslint and vitest:run scripts will always exit with 0 due to exit 0 ||, making the linting and testing commands unreachable. Remove exit 0 || to allow these commands to execute.

Suggested change
"eslint": "exit 0 || eslint . --cache --color --exit-on-fatal-error",
"eslint:fix": "eslint . --cache --color --exit-on-fatal-error --fix",
"serve": "serve dist",
"tsc": "tsc --skipLibCheck",
"vite:build": "vite build",
"vitest": "vitest",
"vitest:run": "exit 0 || vitest run"
"eslint": "eslint . --cache --color --exit-on-fatal-error",
"eslint:fix": "eslint . --cache --color --exit-on-fatal-error --fix",
"serve": "serve dist",
"tsc": "tsc --skipLibCheck",
"vite:build": "vite build",
"vitest": "vitest",
"vitest:run": "vitest run"

Copilot uses AI. Check for mistakes.
Comment on lines +12 to +18
"eslint": "exit 0 || eslint . --cache --color --exit-on-fatal-error",
"eslint:fix": "eslint . --cache --color --exit-on-fatal-error --fix",
"serve": "serve dist",
"tsc": "tsc --skipLibCheck",
"vite:build": "vite build",
"vitest": "vitest",
"vitest:run": "exit 0 || vitest run"
Copy link

Copilot AI Dec 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The eslint and vitest:run scripts will always exit with 0 due to exit 0 ||, making the linting and testing commands unreachable. Remove exit 0 || to allow these commands to execute.

Suggested change
"eslint": "exit 0 || eslint . --cache --color --exit-on-fatal-error",
"eslint:fix": "eslint . --cache --color --exit-on-fatal-error --fix",
"serve": "serve dist",
"tsc": "tsc --skipLibCheck",
"vite:build": "vite build",
"vitest": "vitest",
"vitest:run": "exit 0 || vitest run"
"eslint": "eslint . --cache --color --exit-on-fatal-error",
"eslint:fix": "eslint . --cache --color --exit-on-fatal-error --fix",
"serve": "serve dist",
"tsc": "tsc --skipLibCheck",
"vite:build": "vite build",
"vitest": "vitest",
"vitest:run": "vitest run"

Copilot uses AI. Check for mistakes.
import { PARSER_OPTIONS } from './parser-options.js';

export const TYPESCRIPT_PARSER_OPTIONS: Required<Linter.ParserOptions> = {
...PARSER_OPTIONS,
Copy link

Copilot AI Dec 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The migration from project: true to projectService: true represents a significant change in how TypeScript projects are resolved. Consider adding a comment explaining this change and its implications for users of this config.

Suggested change
...PARSER_OPTIONS,
...PARSER_OPTIONS,
// NOTE: Migrated from `project: true` to `projectService: true`.
// This changes how TypeScript projects are resolved by ESLint.
// `projectService: true` enables the new project service, which may affect
// how tsconfig files are discovered and used. See TypeScript ESLint docs for details.

Copilot uses AI. Check for mistakes.
Comment on lines +1 to +2
// const BYTES_PER_GIGABYTE = 1024 * 1024 * 1024;
// const MINIMUM_SECONDS_PER_MONTH = 28 * 24 * 60 * 60;
Copy link

Copilot AI Dec 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of commenting out constants and inlining their values, consider using the constants directly or removing the commented code if the inline approach is preferred. The current implementation creates duplication and makes the code harder to maintain.

Copilot uses AI. Check for mistakes.
Copilot AI review requested due to automatic review settings December 1, 2025 08:13
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 278 out of 583 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@quisido quisido merged commit 1224542 into main Dec 1, 2025
10 of 11 checks passed
@quisido quisido deleted the game branch December 1, 2025 08:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:XXL This PR changes 1000+ lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant