-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
chore: oxc --type-aware --type-check (@miodec) #7144
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
Draft
Miodec
wants to merge
51
commits into
master
Choose a base branch
from
tsgolint
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 44 commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
12de365
plugin
Miodec 01012ec
brrr
Miodec 04e3279
update rule
Miodec ee4f0d1
update comment
Miodec 7a0908b
yeet eslint
Miodec bec7945
root dep
Miodec 303042b
move to dev
Miodec a4ce60c
i
Miodec 3eeffee
Merge branch 'master' into oxc-no-testing-access
Miodec 9e6266d
ignore in tests
Miodec 3be2a92
remove test code
Miodec 95b081f
Merge branch 'master' into tsgolint
Miodec e5b234f
cleanup
Miodec 7548fbb
refactor
Miodec aaa1bbf
Merge branch 'oxc-no-testing-access' into tsgolint
Miodec d787450
pnpm i
Miodec 08d2e46
move
Miodec b2dda96
disable ts rules in base config
Miodec d27f7b1
missing typeaware
Miodec 175d2b2
move test overrides to root config
Miodec eb944b7
remove exlint from readme
Miodec 1a2cf67
revert
Miodec e317613
revert
Miodec ec4c70d
Merge branch 'master' into tsgolint
Miodec ef3acff
fix
Miodec 6971ee9
add root config
Miodec facbd8a
ocd
Miodec 3a4b368
upgrade
Miodec b33dbd8
use type-check, fix tsconfig
Miodec 0c03e17
type check
Miodec 5718d54
remove ts-check from full-check
Miodec 52c78ab
full fix
Miodec 8822670
add lint-fast
Miodec 371e27b
lint fast first
Miodec c097e52
bring back eslint for json linting
Miodec 065f007
enable typeaware in workspace settings
Miodec 777683c
move oxc plugin config
Miodec 4a44eb6
remove directory
Miodec 64b233a
split up oxc config
Miodec 6be9d29
Merge branch 'master' into tsgolint
Miodec 1df600e
fix ignore
Miodec f074e00
use lint json
Miodec bc83dfe
use script
Miodec a40dbf3
remove
Miodec 5fa9f66
inline oxlint scripts, remove them
Miodec c25c0eb
remove eslintignore
Miodec 23e3e2e
revert
Miodec 03d21f3
bump lint version
Miodec e7fa3b4
enable no-deprecated, prefer-includes
Miodec a7c2396
Merge branch 'master' into tsgolint
Miodec b40d71c
Merge branch 'master' into tsgolint
Miodec 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 |
|---|---|---|
| @@ -1,7 +1,4 @@ | ||
| backend/dist | ||
| backend/__migration__ | ||
| dist | ||
| docker | ||
| backend/scripts | ||
| backend/private | ||
| **/vitest.config.ts | ||
| node_modules | ||
| node_modules | ||
| backend/__migration__ |
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 |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "ignorePatterns": ["node_modules", "dist", ".turbo"], | ||
| "extends": [ | ||
| "./packages/oxlint-config/index.jsonc" | ||
| // "@monkeytype/oxlint-config" | ||
| ] | ||
| } |
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 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,4 @@ | ||
| { | ||
| "ignorePatterns": ["node_modules", "__migration__", "dist", ".turbo"], | ||
| "extends": ["../packages/oxlint-config/plugin.jsonc"] | ||
| } |
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,33 +1,7 @@ | ||
| { | ||
| "ignorePatterns": ["node_modules", "__migration__", "dist", ".turbo"], | ||
| "extends": [ | ||
| "../packages/oxlint-config/index.jsonc" | ||
| // "@monkeytype/oxlint-config" | ||
| ], | ||
| "overrides": [ | ||
| { | ||
| "files": ["__tests__/**"], | ||
| "plugins": [ | ||
| "typescript", | ||
| "unicorn", | ||
| "oxc", | ||
| "import", | ||
| "node", | ||
| "promise", | ||
| "jest", | ||
| "vitest" | ||
| ], | ||
| "rules": { | ||
| "no-explicit-any": "allow", | ||
| "explicit-function-return-type": "off", | ||
| "ban-ts-comment": "off" | ||
| } | ||
| }, | ||
| { | ||
| "files": ["__tests__/**/*.d.ts"], | ||
| "rules": { | ||
| "typescript/consistent-type-definitions": "off", | ||
| "typescript/no-empty-object-type": "off" | ||
| } | ||
| } | ||
| ] | ||
| } |
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
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.
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.