-
Notifications
You must be signed in to change notification settings - Fork 102
feat: analyser #162
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
feat: analyser #162
Changes from 16 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
ada2084
initial commit
psteinroe 031e38d
make it simpleeeer
psteinroe 60007d0
cleanup
psteinroe 2715586
simplify more and implement runner
psteinroe ab8c4e4
fix: lint
psteinroe b4bb56c
add macros
psteinroe 23f43bf
feat: analyser
psteinroe aa6bca3
cleanup
psteinroe 469ea91
feat: codegen new analyser rule
psteinroe fe7f2e0
feat: codegen promote rule
psteinroe d33599d
add codegen for linter
psteinroe 9b1493e
finish codegen
psteinroe 19a6214
add rule source
psteinroe 2fc994f
add codegen for configs
psteinroe 1b1216f
cleanup
psteinroe 13425b1
finish the beast
psteinroe 1a8adef
remove a few unnecessary layers of abstraction
psteinroe a3be0d0
test and fix options
psteinroe 24f6e40
add rules_check script
psteinroe dcfc9a5
chore: add contribution guide for analyser
psteinroe 272521f
Update .env
psteinroe 5cff158
Update crates/pg_analyse/src/context.rs
psteinroe 89296ba
Update xtask/codegen/src/lib.rs
psteinroe b9fc6eb
Update xtask/codegen/src/lib.rs
psteinroe 0dc1f98
chore: add merge-main script
psteinroe 97f6b1d
chore: merge main
psteinroe 65dbd09
chore: remove unstable is_none_or
psteinroe 87f3a86
fix: docs test
psteinroe 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 +1 @@ | ||
DATABASE_URL=postgresql://postgres:[email protected]:5432/postgres | ||
DATABASE_URL=postgresql://postgres:[email protected]:54322/postgres | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,30 @@ | ||
|
||
[package] | ||
authors.workspace = true | ||
categories.workspace = true | ||
description = "<DESCRIPTION>" | ||
edition.workspace = true | ||
homepage.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
name = "pg_analyse" | ||
repository.workspace = true | ||
version = "0.0.0" | ||
|
||
|
||
[dependencies] | ||
pg_console.workspace = true | ||
pg_diagnostics.workspace = true | ||
pg_query_ext.workspace = true | ||
pg_schema_cache.workspace = true | ||
rustc-hash = { workspace = true } | ||
|
||
biome_deserialize = { workspace = true, optional = true } | ||
biome_deserialize_macros = { workspace = true, optional = true } | ||
enumflags2.workspace = true | ||
serde = { workspace = true, features = ["derive"], optional = true } | ||
text-size.workspace = true | ||
schemars = { workspace = true, optional = true } | ||
|
||
[features] | ||
serde = ["dep:serde", "dep:schemars", "dep:biome_deserialize", "dep:biome_deserialize_macros"] |
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.