-
Notifications
You must be signed in to change notification settings - Fork 983
Add clang-tidy to libcudf
#9860
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 41 commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
9d9cf87
Add .clang-tidy file
codereport 79076d3
Clang-tiday single file
codereport 1f710f7
CMake change
codereport a79f8e8
Initial script
codereport 77c60d8
Temporary script hacks
codereport c213e09
Update script from cuml to cudf
codereport 3a9fbed
Merge branch 'branch-22.02' into clang-tidy
codereport a9b43e0
Temporary incremental changes
codereport c7285e0
Clang-tidy cpp-coreguideline changes
codereport dff04d2
Merge branch 'branch-22.02' into clang-tidy
codereport e772fc3
Merge branch 'branch-22.02' into clang-tidy
codereport 7af0249
modernize- fixes
codereport 9379001
Revert "modernize- fixes"
codereport 49aa922
modernize- fixes
codereport e557639
Clang-format fix
codereport c09e357
Pre-cache null count
codereport b546dc1
Merge branch 'branch-22.02' into clang-tidy
codereport 077ee81
Missing merge change
codereport d0f5d89
More modernize- changes
codereport 8dad976
Clang-format
codereport 97e1861
Reverst cxxopts changes
codereport 669e828
Fix
codereport 757dbba
Parquet test fix
codereport 2bfa25d
More modernize- changes
codereport abf7fc9
Clang format
codereport 1e85795
Updated/cleaned up .clang-tidy
codereport 5c094ff
More modernize- changes
codereport d89566e
Reverse python script commit to isolate
codereport e2f248f
Clang-format
codereport b8a7744
Clean up python script
codereport b4a35c7
Merge branch 'branch-22.02' into clang-tidy
codereport 0cad418
Merge branch 'branch-22.02' into clang-tidy
codereport 6d3fd75
Merge branch 'branch-22.02' into clang-tidy
codereport 8b05ed9
Merge branch 'branch-22.02' into clang-tidy
codereport c538fc4
Remove script and Cmake changes
codereport 23c6e3a
Fix
codereport eccdb9e
Fix double [[nodiscard]]
codereport 7b7aa57
Addressing PR comments
codereport 780a799
Reverst nvt3.hpp
codereport 45fc11e
Addressing PR comments
codereport 5599c85
Merge branch 'branch-22.02' into clang-tidy
codereport 346d81f
Remove CamelCase on modernize loop
codereport 8b92e54
Reverted trailing return type
codereport 3b1666a
Revert trailing return type #2
codereport 1726496
Update .clang-tidy file
codereport b06c7a4
Merge branch 'branch-22.02' into clang-tidy
codereport 5fc4fd7
Modernize changes
codereport 7f8c0d7
Merge branch 'branch-22.02' into clang-tidy
codereport 4724ce6
Addres PR comments
codereport 5bf662a
Merge branch 'branch-22.02' into clang-tidy
codereport File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
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 |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| --- | ||
| Checks: | ||
| 'modernize-*, | ||
| -modernize-use-equals-default, | ||
| -modernize-concat-nested-namespaces' | ||
|
|
||
| # -modernize-use-equals-default # auto-fix is broken (doesn't insert =default correctly) | ||
| # -modernize-concat-nested-namespaces # auto-fix is broken (can delete code) | ||
harrism marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| WarningsAsErrors: '' | ||
| HeaderFilterRegex: '' | ||
| AnalyzeTemporaryDtors: false | ||
| FormatStyle: none | ||
| CheckOptions: | ||
| - key: modernize-loop-convert.MaxCopySize | ||
| value: '16' | ||
| - key: modernize-loop-convert.MinConfidence | ||
| value: reasonable | ||
| - key: modernize-loop-convert.NamingStyle | ||
| value: CamelCase | ||
codereport marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| - key: modernize-pass-by-value.IncludeStyle | ||
| value: llvm | ||
| - key: modernize-replace-auto-ptr.IncludeStyle | ||
| value: llvm | ||
| - key: modernize-use-nullptr.NullMacros | ||
| value: 'NULL' | ||
| ... | ||
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
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.