-
Notifications
You must be signed in to change notification settings - Fork 0
feat(team): support spaces in the team name #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
b6f3a7a
chore: add AGENT.md
divyenduz 179e86f
feat(team): support spaces in names
divyenduz b05346e
feat(team): support multiple spaces
divyenduz 8744c40
feat(team): remove unused function
divyenduz c1e1f53
feat(team): add github action to run tests in CI
divyenduz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| # ScoreLang Agent Guidelines | ||
|
|
||
| ## Commands | ||
| - Run tests: `bun test` | ||
| - Run specific test: `bun test src/lexer.test.ts` | ||
| - Build project: `bun build ./src/index.ts --compile --outfile scorelang` | ||
|
|
||
| ## Code Style Guidelines | ||
| - **Imports**: Use named imports for specific components, default exports for main classes | ||
| - **Types**: Use TypeScript with explicit type annotations, const assertions when appropriate | ||
| - **Error handling**: Use console.log for errors, return null/ILLEGAL tokens for invalid inputs | ||
| - **Naming conventions**: | ||
| - Classes: PascalCase (e.g., Lexer) | ||
| - Methods/variables: camelCase | ||
| - Constants: UPPER_SNAKE_CASE for token types | ||
| - **Formatting**: 2-space indentation, semicolons at end of statements | ||
| - **Class structure**: Private methods prefixed with 'private', constructor parameters prefixed with 'private' when appropriate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.