-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/new danger code #40
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
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
3c37b91
feat: enhance semantic analysis with ABC, Protocol, and Enum tracking
djinn09 64d43db
feat: enhance semantic analysis with ABC, Protocol, and Enum tracking
djinn09 3947bff
feat: Introduce comprehensive security analysis with new danger rules…
djinn09 f937f1b
feat: Implement a new linter and analyzer with comprehensive taint an…
djinn09 0dbac98
feat: Add extensive 'danger' security rules, tests, and documentation…
djinn09 c7327b6
feat: Add extensive 'danger' security rules, tests, and documentation…
djinn09 226b1ad
feat: Add comprehensive benchmarking infrastructure, project document…
djinn09 2612a81
clippy fix
djinn09 8d8ffe6
feat: Implement clippy fix is contasnt flag for upper case thing .
djinn09 f244323
feat: Implement new danger rules, taint analysis, and advanced heuris…
djinn09 8d30fe4
feat: Implement Control Flow Graph (CFG) module for behavioral analys…
djinn09 50f22ff
feat: Introduce a taint analysis engine with a plugin architecture an…
djinn09 2197bce
feat: Introduce a taint analysis engine with a plugin architecture an…
djinn09 3a3fa56
feat: Implement core static analysis engine with security, quality, a…
djinn09 e3e0513
clippy fix
djinn09 eecf938
prek fix for benchmark and verify py
djinn09 fe11f5d
deleted lcov.info
djinn09 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
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,22 @@ | ||
| # typos configuration | ||
| # See: https://github.com/crate-ci/typos | ||
|
|
||
| [files] | ||
| # Exclude files/directories from spell checking | ||
| extend-exclude = [ | ||
| "lcov.info", | ||
| "*.lcov", | ||
| "target/", | ||
| "node_modules/", | ||
| ".venv/", | ||
| "dist/", | ||
| "*.lock", | ||
| ] | ||
|
|
||
| [default] | ||
| # Known acceptable words that should not be flagged | ||
| extend-ignore-identifiers-re = [] | ||
|
|
||
| [default.extend-words] | ||
| # Add any false positives here | ||
| # Example: "Nd" = "Nd" |
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,15 @@ | ||
| { | ||
| "recommendations": [ | ||
| "usernamehw.errorlens", | ||
| "serayuzgur.crates", | ||
| "tion.evenbettercomments", | ||
| "tamasfe.even-better-toml", | ||
| "rust-lang.rust-analyzer", | ||
| "1yib.rust-bundle", | ||
| "rodrigocfd.format-comment", | ||
| "ryanluker.vscode-coverage-gutters", | ||
| "vadimcn.vscode-lldb", | ||
| "donjayamanne.githistory", | ||
| "eamodio.gitlens" | ||
| ] | ||
| } |
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,19 @@ | ||
| { | ||
| "rust-analyzer.cargo.extraEnv": { | ||
| "PYO3_PYTHON": "${workspaceFolder}/.venv/Scripts/python.exe" | ||
| }, | ||
| "rust-analyzer.check.command": "clippy", | ||
| "rust-analyzer.check.extraArgs": [ | ||
| "--all-features", | ||
| "--", | ||
| "-W", | ||
| "clippy::complexity", | ||
| "-W", | ||
| "clippy::pedantic", | ||
| "-W", | ||
| "clippy::perf" | ||
| ], | ||
| "coverage-gutters.coverageFileNames": ["lcov.info"], | ||
| "coverage-gutters.coverageBaseDir": ".", | ||
| "coverage-gutters.showLineCoverage": true | ||
| } |
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
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
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.