Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"oxc.oxc-vscode",
"github.vscode-github-actions",
"yoavbls.pretty-ts-errors",
"redhat.vscode-yaml",
"GraphQL.vscode-graphql",
"GraphQL.vscode-graphql-syntax",
"vitest.explorer"
"vitest.explorer",
"webpro.vscode-knip"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ See implementation in [src/common/utils.ts](../src/common/utils.ts).
### Code Quality

- **Knip**: Dead code detection ([knip.json](../knip.json)) - ignores [**generated**/](../__generated__/), fragments, wrangler, act
- **ESLint**: Flat config ([eslint.config.js](../eslint.config.js)) with unicorn plugin (some rules disabled: `prefer-top-level-await`, `prevent-abbreviations`)
- **Oxlint**: TypeScript linting with custom rules ([.oxlintrc.json](../.oxlintrc.json))
- **TypeScript**: Strict mode with `verbatimModuleSyntax`, `noEmit`, `checkJs`
- **No console.log**: Use `@actions/core` methods (`info`, `debug`, `warning`, `error`, `setFailed`)

Expand Down
13 changes: 4 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,11 @@ updates:
- '@vitest*'
- 'vitest'
- 'vite'
eslint:
ox:
patterns:
- '@eslint/*'
- '@types/eslint'
- '@typescript-eslint/*'
- 'eslint'
- 'eslint-config-*'
- 'eslint-plugin-*'
- 'globals'
- 'typescript-eslint'
- 'oxfmt'
- 'oxlint'
- 'oxlint-tsgolint'
octokit:
patterns:
- '@octokit/*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
with:
path: |
~/.cache/
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml', '**/eslint.config.js', '**/.oxfmtrc.json', '**/tsconfig.json', '**/knip.json', '**/vitest.config.ts', '**/vitest.setup.ts') }}
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml', '**/.oxlintrc.json', '**/.oxfmtrc.json', '**/tsconfig.json', '**/knip.json', '**/vitest.config.ts', '**/vitest.setup.ts') }}
- name: Rebuild the dist/ directory
run: pnpm run build

Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/codeql.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
path: |
~/.cache/
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml', '**/eslint.config.js', '**/.oxfmtrc.json', '**/tsconfig.json', '**/knip.json', '**/vitest.config.ts', '**/vitest.setup.ts') }}
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml', '**/.oxlintrc.json', '**/.oxfmtrc.json', '**/tsconfig.json', '**/knip.json', '**/vitest.config.ts', '**/vitest.setup.ts') }}
- name: Create Release Pull Request
id: changesets
uses: changesets/action@6a0a831ff30acef54f2c6aa1cbbc1096b066edaf #v1.7.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
with:
path: |
~/.cache/
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml', '**/eslint.config.js', '**/.oxfmtrc.json', '**/tsconfig.json', '**/knip.json', '**/vitest.config.ts', '**/vitest.setup.ts') }}
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml', '**/.oxlintrc.json', '**/.oxfmtrc.json', '**/tsconfig.json', '**/knip.json', '**/vitest.config.ts', '**/vitest.setup.ts') }}
- name: Lint
run: pnpm run lint --cache-strategy content
run: pnpm run lint --format=github
- name: Typecheck
run: pnpm run tsc:check
- name: Test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
path: |
~/.cache/
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml', '**/eslint.config.js', '**/.oxfmtrc.json', '**/tsconfig.json', '**/knip.json', '**/vitest.config.ts', '**/vitest.setup.ts') }}
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml', '**/.oxlintrc.json', '**/.oxfmtrc.json', '**/tsconfig.json', '**/knip.json', '**/vitest.config.ts', '**/vitest.setup.ts') }}
- name: cli download payloads
run: pnpm run download
env:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
with:
path: |
~/.cache/
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml', '**/eslint.config.js', '**/.oxfmtrc.json', '**/tsconfig.json', '**/knip.json', '**/vitest.config.ts', '**/vitest.setup.ts') }}
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml', '**/.oxlintrc.json', '**/.oxfmtrc.json', '**/tsconfig.json', '**/knip.json', '**/vitest.config.ts', '**/vitest.setup.ts') }}
- name: cli all
run: pnpm run tsc:types
- name: Create Pull Request
Expand Down
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ pnpm-debug.log*
.DS_Store
Thumbs.db

# eslint
.eslintcache

# TypeScript cache
*.tsbuildinfo

Expand Down
Loading
Loading