Skip to content

Commit

Permalink
Update gitignore and clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelrojasmiliani committed Sep 20, 2024
1 parent eada322 commit 705ed33
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
Checks: >
clang-diagnostic-*,
clang-analyzer-*,
cppcoreguidelines-*,
-cppcoreguidelines-special-member-functions,
-cppcoreguidelines-avoid-do-while,
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-non-private-member-variables-in-classes,
modernize-*,
-modernize-use-trailing-return-type,
-modernize-concat-nested-namespaces,
misc-*,
-misc-non-private-member-variables-in-classes,
bugprone-*,
-bugprone-easily-swappable-parameters,
performance-*,
readability-*,
-readability-identifier-length,
-readability-magic-numbers
CheckOptions:
misc-include-cleaner.IgnoreHeaders: 'Eigen/.*'
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
__pycache__
*.pyc
build/*
build2/*
cmake-*
dist/*
gsplines.egg-info/*
*.stats
Expand All @@ -15,3 +17,7 @@ compile_commands.json
tests/CMakeCache.txt
tests/CMakeFiles/*
tests/Testing/*
GPATH
GRTAGS
GTAGS
tags

0 comments on commit 705ed33

Please sign in to comment.