-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update fortitude linter to v0.7 (#201)
- Loading branch information
1 parent
c9eed65
commit ddc5704
Showing
12 changed files
with
41 additions
and
26 deletions.
There are no files selected for viewing
This file contains 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,12 +1,18 @@ | ||
[check] | ||
ignore = [ | ||
"S001", # line-too-long | ||
"S051", # deprecated-relational-operator (fix available) | ||
"S101", # trailing-whitespace | ||
"S102", # incorrect-space-before-comment, we should enable this, autofix enable | ||
"M011", # use-all (should use "only:") | ||
"M001", # procedure-not-in-module (need a per-file ignore for init.F90) | ||
"T042", # assumed-size-character-intent TODO: We should fix all instances! | ||
"line-too-long", | ||
"trailing-whitespace", # we should enable this, autofix available | ||
"incorrect-space-before-comment", # we should enable this, autofix available | ||
"use-all", # should use "only:" | ||
"assumed-size-character-intent", # TODO: We should fix all instances! | ||
"implicit-external-procedures", # requires Fortran 2018 | ||
] | ||
exclude = [ | ||
"src/fftw3.F90", | ||
"src/force_cp2k.F90", | ||
] | ||
line-length = 132 | ||
show-fixes = true | ||
[check.per-file-ignores] | ||
"src/forces.F90" = ["procedure-not-in-module"] | ||
"src/random.F90" = ["deprecated-relational-operator"] |
This file contains 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 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 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 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 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 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 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 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 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 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 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