-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* first attempt at spellchecker, listing all file types and excluding some known exceptions * Move file to repo root * Exclude JSON and R files as we are less sure if they can be corrected * Add common abbreviations to avoid false positives * Fix "releative" * Fix "permision" * Fix "Setings" * Fix "untill" * Fix "buttom" * Fix "alloted" * Fix "controling" * Fix "auxiliary" * Fix "constriant" * Fix most typos in non-code files * Change config file path in GHA workflow * Fix "seperate" * Fix "excpetion" * Fix "handeling" * Fix "deafult(s)" * Fix typos in code comments or strings * Add exclusions for typos for identifiers in non-internal scopes * Fix typos in code * Fix typo in figure name * Fix "thershold" * Format code * Fix "NoInteractiveSer" * Fix "ghostOuput" * Uncommit and ignore Pipfile --------- Co-authored-by: Ludovico Bianchi <lbianchi@lbl.gov> Co-authored-by: Keith Beattie <ksbeattie@lbl.gov>
- Loading branch information
1 parent
5334847
commit 250ee8c
Showing
128 changed files
with
474 additions
and
421 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
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 |
---|---|---|
|
@@ -24,6 +24,7 @@ eggs/ | |
*.lib | ||
*.suo | ||
*.zip | ||
Pipfile | ||
|
||
# OSX | ||
*.DS_Store | ||
|
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[files] | ||
extend-exclude = [ | ||
"*.smp", | ||
"*.ui", | ||
"*.html", | ||
"*.css", | ||
"*.js", | ||
"*.svg", | ||
"*.foqus", | ||
"*.bkp", | ||
"*.acmf", | ||
"*.for", | ||
"*.his", | ||
"*.def", | ||
"*.ads", | ||
"*.pt", | ||
"*.pkl", | ||
"*.R", | ||
"*.json", | ||
] | ||
|
||
[default.extend-words] | ||
# Ignore IDAES | ||
IDAES = "IDAES" | ||
FO = "FO" # TODO: probably an abbreviation? | ||
sur = "sur" # abbreviation for 'surrogate' | ||
nd = "nd" # used as a variable name in sdoeAnalysisDialog | ||
astroid = "astroid" # Python package name | ||
# proper nouns | ||
Gess = "Gess" | ||
# false positives | ||
strat = "strat" # abbreviation of "strategy" used by Hypothesis | ||
|
||
[default.extend-identifiers] | ||
# false positives | ||
strngComps = "strngComps" # strng = strongly (connected) | ||
# true positives that are part of the API | ||
userInterupt = "userInterupt" | ||
maxTimeInterupt = "maxTimeInterupt" | ||
PyCodeInterupt = "PyCodeInterupt" | ||
simin_nam = "simin_nam" | ||
simout_nam = "simout_nam" | ||
displayAvailablityWarning = "displayAvailablityWarning" |
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
File renamed without changes
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.