You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tweaks to get VSCode's internal linters to quit whinging and make the… (#173)
* Tweaks to get VSCode's internal linters to quit whinging and make the ToDo plugin work nicely.
* Touch O Tidying and ToDo commenting.
* reviewer request to Update script_umdp3_checker/umdp3_conformance.py
Co-authored-by: Erica Neininger <107684099+ericaneininger@users.noreply.github.com>
* Update script_umdp3_checker/umdp3_checker_rules.py
Co-authored-by: Erica Neininger <107684099+ericaneininger@users.noreply.github.com>
* Update script_umdp3_checker/umdp3_checker_rules.py
Co-authored-by: Erica Neininger <107684099+ericaneininger@users.noreply.github.com>
* Update script_umdp3_checker/umdp3_checker_rules.py
Co-authored-by: Erica Neininger <107684099+ericaneininger@users.noreply.github.com>
* Update script_umdp3_checker/umdp3_checker_rules.py
Co-authored-by: Erica Neininger <107684099+ericaneininger@users.noreply.github.com>
* Update script_umdp3_checker/umdp3_checker_rules.py
Co-authored-by: Erica Neininger <107684099+ericaneininger@users.noreply.github.com>
* Rreviwer requested changes that I was unable to commit via GitHub's web interface
---------
Co-authored-by: Pierre Siddall <43399998+Pierre-siddall@users.noreply.github.com>
Co-authored-by: Erica Neininger <107684099+ericaneininger@users.noreply.github.com>
"Line longer than 80 characters": self.umdp3_checker.line_over_80chars,
110
+
"Line longer than 80 characters":
111
+
self.umdp3_checker.line_over_80chars,
78
112
"Line includes tab character": self.umdp3_checker.tab_detection,
79
-
'Fixed-width Integer format specifiers must have a space between themselves and the string delimiter (the " character)': self.umdp3_checker.c_integral_format_specifiers,
113
+
"Fixed-width Integer format specifiers must have a space "+
114
+
"between themselves and the string delimiter (the \" character)":
"Used an _OPENMP if-def without also testing against SHUM_USE_C_OPENMP_VIA_THREAD_UTILS. (Or _OPENMP does not come first in the test.)": self.umdp3_checker.c_openmp_define_pair_thread_utils,
90
-
"Used an _OPENMP && SHUM_USE_C_OPENMP_VIA_THREAD_UTILS if-def test in a logical combination with a third macro": self.umdp3_checker.c_openmp_define_no_combine,
91
-
"Used !defined(_OPENMP) rather than defined(_OPENMP) with #else branch": self.umdp3_checker.c_openmp_define_not,
92
-
"Used an omp #pragma (or #include <omp.h>) without protecting it with an _OPENMP if-def": self.umdp3_checker.c_protect_omp_pragma,
93
-
"Used the #ifdef style of if-def, rather than the #if defined() style": self.umdp3_checker.c_ifdef_defines,
94
-
"C Unit does not end with a final newline character": self.umdp3_checker.c_final_newline,
124
+
"File missing crown copyright statement or agreement reference":
125
+
self.umdp3_checker.check_crown_copyright,
126
+
"File missing correct code owner comment":
127
+
self.umdp3_checker.check_code_owner,
128
+
"Used an _OPENMP if-def without also testing against "+
129
+
"SHUM_USE_C_OPENMP_VIA_THREAD_UTILS. (Or _OPENMP does "+
Lists of words for Fortran checks. Some to confirm they are found in the approved form, some to test for as the intention is that they should no longer appear in the code.
8
+
Lists of words for Fortran checks. Some to confirm they are found in the
9
+
approved form, some to test for as the intention is that they should no longer
10
+
appear in the code.
9
11
"""
10
12
11
13
# Obsolescent Fortran intrinsics : These should not be used in new code and
0 commit comments