-
Notifications
You must be signed in to change notification settings - Fork 3.6k
fix: lint #7433
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
fix: lint #7433
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
e44a26b
chore: fix lint
aheckmann 5fff6c9
fix: constants check:lint command
aheckmann a7c2f61
chore(lint): permit unused vars which begin w/ _
aheckmann 4b1c75f
chore: rm dead code
aheckmann 1a80937
fix(lint): more lint fixes to constants pkg
aheckmann 882069d
fix(lint): lint the live server
aheckmann dff5f88
chore: improve clean script
aheckmann d1ceda6
fix(lint): more lint
aheckmann 7bcba27
chore: set live server process title
aheckmann 7cbe62b
chore(deps): update to turbo@2.5.5
aheckmann ac64e24
chore(live): target node22
aheckmann 932f73d
fix(dev): add missing ui pkg dependency
aheckmann 5722cf1
fix(dev): lint decorators
aheckmann b125296
fix(dev): lint space app
aheckmann 5221a7b
fix(dev): address lint issues in types pkg
aheckmann bb0f670
fix(dev): lint editor pkg
aheckmann b238a1e
chore(dev): moar lint
aheckmann dbc5694
fix(dev): live server exit code
aheckmann 707c3dd
chore: address PR feedback
aheckmann 61275e8
fix(lint): better TPageExtended type
aheckmann d67e425
chore: refactor
aheckmann 4918327
chore: revert most live server changes
aheckmann e8924fa
fix: few more lint issues
aheckmann 174942e
chore: enable ci checks
aheckmann 993fa0e
chore: address PR feedback
aheckmann 241b8ce
fix: web lint warning added to package.json
sriramveeraghanta f2d3706
fix: ci:lint command
sriramveeraghanta 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 was deleted.
Oops, something went wrong.
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,29 @@ | ||
| name: Build and lint API | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| branches: ["preview"] | ||
| types: ["opened", "synchronize", "ready_for_review", "review_requested", "reopened"] | ||
| paths: | ||
| - "apps/api/**" | ||
|
|
||
| jobs: | ||
| lint-api: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 15 | ||
| if: | | ||
| github.event.pull_request.draft == false && | ||
| github.event.pull_request.requested_reviewers != null | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: "3.x" | ||
| - name: Install Pylint | ||
| run: python -m pip install ruff | ||
| - name: Install API Dependencies | ||
| run: cd apps/api && pip install -r requirements.txt | ||
| - name: Lint apps/api | ||
| run: ruff check --fix apps/api |
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,42 @@ | ||
| name: Build and lint web apps | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| branches: ["preview"] | ||
| types: ["opened", "synchronize", "ready_for_review", "review_requested", "reopened"] | ||
| paths: | ||
| - "**.tsx?" | ||
| - "**.jsx?" | ||
| - "**.css" | ||
| - "**.json" | ||
| - "!apps/api/**" | ||
|
|
||
| jobs: | ||
| build-and-lint: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 15 | ||
| if: | | ||
| github.event.pull_request.draft == false && | ||
| github.event.pull_request.requested_reviewers != null | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 2 | ||
|
|
||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version-file: ".nvmrc" | ||
|
|
||
| - name: Install dependencies | ||
| run: yarn install --frozen-lockfile | ||
|
|
||
| - name: Build web apps | ||
| run: yarn run build | ||
|
|
||
| - name: Lint web apps | ||
| run: yarn run ci:lint | ||
|
|
||
|
|
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 @@ | ||
| lts/jod | ||
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
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
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 |
|---|---|---|
| @@ -1 +1 @@ | ||
| export type TAdditionalDocumentTypes = {}; | ||
| export type TAdditionalDocumentTypes = never; |
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.