Skip to content

Commit 22cb4f8

Browse files
authored
Merge pull request #743 from lootlog/feature/notifications-enhancements
Feature/notifications enhancements
2 parents f3b19df + ed37be9 commit 22cb4f8

302 files changed

Lines changed: 21161 additions & 4017 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AGENTS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ This is a pnpm monorepo managed with Turborepo. It contains multiple apps (`apps
1515
- Prefer `?.` for optional chaining.
1616
- Prefix unused variables with `_`.
1717
- Use `import type` for type-only imports.
18+
- Do not split imports from the same module into separate statements for values and types; prefer a single import using inline `type` specifiers when needed.
1819
- Avoid nested (chained) ternary expressions — use early returns or `if`/`else if` instead.
1920
- See `.oxlintrc.md` for the full linting configuration.
2021

@@ -43,3 +44,4 @@ This is a pnpm monorepo managed with Turborepo. It contains multiple apps (`apps
4344

4445
- Don't try to run the app, assume it's already running.
4546
- ABSOLUTELY DON'T assume I need backwards compatibility unless explicitely told.
47+
- If a sandbox restriction blocks a command needed for the task, immediately ask for approval to run it with elevated permissions instead of silently skipping it.

0 commit comments

Comments
 (0)