diff --git a/README.adoc b/README.adoc index 3d5c21bf8a..c156d558b7 100644 --- a/README.adoc +++ b/README.adoc @@ -22,7 +22,9 @@ It is thanks to this file that you can add `tags`, `securityStandards` etc... to **** `rules/Sxxxx/common/resources` *** `rules/Sxxxx/[LANGUAGE]`: contains the language-specific RSPEC. For every rule, there must be at least one `[LANGUAGE]` subdirectory. + `[LANGUAGE]` can be any of the following: + include::supported_languages.adoc[] + **** `rules/Sxxxx/[LANGUAGE]/rule.adoc`: asciidoc file used to generate the `Sxxxx` rule description for programming language `[LANGUAGE]`. It can include parts from `*.adoc` files located in the parent directory. **** `rules/Sxxxx/[LANGUAGE]/metadata.json`: metadatas for the specific language. Each key at the top will completely override the key of the `metadata.json` file of the parent directory. @@ -77,7 +79,9 @@ A <> is somewhat more involved. . click on the grey _Run wokflow_ button (on the right). . in the field _"Comma-separated list of targeted languages"_ write the list of languages you want to specify this rule for. + They can be any of the following: + include::supported_languages.adoc[] + . click on the green _Run workflow_ button. image::img/new-rule-workflow.png[] @@ -118,7 +122,9 @@ It must be in a form `Sxxxx` where `xxxx` is the number of the rule. For example: `S100`, `S1234`, or `S6000`. . in the field _"Language to be added to the rule"_ specify one language you want to add to the rule. + It can be any of the following: + include::supported_languages.adoc[] + . click on the green _Run workflow_ button. image::img/add-language-workflow.png[] diff --git a/ci/validate_asciidoc.sh b/ci/validate_asciidoc.sh index 8d632b9262..d6ea661801 100755 --- a/ci/validate_asciidoc.sh +++ b/ci/validate_asciidoc.sh @@ -57,6 +57,21 @@ do fi else #validate asciidoc + + # Make sure include:: clauses are always more than one line away from the previous content + # Detect includes stuck to the line before + find "$dir" -name "*.adoc" -execdir sh -c 'grep -Pzl "\S[ \t]*\ninclude::" $1 | xargs -r -I@ realpath "$PWD/@"' shell {} \; > stuck + # Detect includes stuck to the line after + find "$dir" -name "*.adoc" -execdir sh -c 'grep -Pzl "include::[^\[]+\[\]\n[ \t]*[^\n]" $1 | xargs -r -I@ realpath "$PWD/@"' shell {} \; >> stuck + if [ -s stuck ]; then + echo "ERROR: These adoc files contain an include that is stuck to other content." + echo "This may result in broken tags and other display issues." + echo "Make sure there is an empty line before and after each include:" + cat stuck + exit_code=1 + fi + rm -f stuck + supportedLanguages=$(sed 's/ or//' supported_languages.adoc | tr -d '`,') for language in $dir/*/ do diff --git a/docs/asciidoc_dos_and_donts.adoc b/docs/asciidoc_dos_and_donts.adoc index 7d5be0e987..5d59aa74aa 100644 --- a/docs/asciidoc_dos_and_donts.adoc +++ b/docs/asciidoc_dos_and_donts.adoc @@ -2,11 +2,14 @@ === Include -When using multiple `include` statements, make sure that there is at least an empty line between them. +Make sure that `include` statements are surrounded by blank lines. +AsciiDoc will sometimes (depending on the version) trim whitespaces at the beginning and end of the included files. Any adjacent text will thus be stuck to the inlined content, which could lead to display issues like swallowed title tags. ==== Write ---- +== Title + include::how-to-fix-it/core.adoc[] include::how-to-fix-it/symfony.adoc[] @@ -15,6 +18,7 @@ include::how-to-fix-it/symfony.adoc[] ==== Avoid ---- +== Title include::how-to-fix-it/core.adoc[] include::how-to-fix-it/symfony.adoc[] ---- diff --git a/frontend/src/deployment/__tests__/resources/rules/S1000/cfamily/rule.adoc b/frontend/src/deployment/__tests__/resources/rules/S1000/cfamily/rule.adoc index bbb01ec606..b3d4d5459a 100644 --- a/frontend/src/deployment/__tests__/resources/rules/S1000/cfamily/rule.adoc +++ b/frontend/src/deployment/__tests__/resources/rules/S1000/cfamily/rule.adoc @@ -62,4 +62,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/frontend/src/deployment/__tests__/resources/rules/S1007/cfamily/rule.adoc b/frontend/src/deployment/__tests__/resources/rules/S1007/cfamily/rule.adoc index 50d3399646..e8f4dd5407 100644 --- a/frontend/src/deployment/__tests__/resources/rules/S1007/cfamily/rule.adoc +++ b/frontend/src/deployment/__tests__/resources/rules/S1007/cfamily/rule.adoc @@ -26,4 +26,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/frontend/src/deployment/__tests__/resources/rules/S3457/cfamily/rule.adoc b/frontend/src/deployment/__tests__/resources/rules/S3457/cfamily/rule.adoc index 00008472ed..3c86991d97 100644 --- a/frontend/src/deployment/__tests__/resources/rules/S3457/cfamily/rule.adoc +++ b/frontend/src/deployment/__tests__/resources/rules/S3457/cfamily/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/frontend/src/deployment/__tests__/resources/rules/S3457/csharp/rule.adoc b/frontend/src/deployment/__tests__/resources/rules/S3457/csharp/rule.adoc index 228f8ab0e9..db9b7f08f5 100644 --- a/frontend/src/deployment/__tests__/resources/rules/S3457/csharp/rule.adoc +++ b/frontend/src/deployment/__tests__/resources/rules/S3457/csharp/rule.adoc @@ -50,4 +50,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/frontend/src/deployment/__tests__/resources/rules/S3457/java/rule.adoc b/frontend/src/deployment/__tests__/resources/rules/S3457/java/rule.adoc index 3225ffc888..b52978dc47 100644 --- a/frontend/src/deployment/__tests__/resources/rules/S3457/java/rule.adoc +++ b/frontend/src/deployment/__tests__/resources/rules/S3457/java/rule.adoc @@ -21,4 +21,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/frontend/src/deployment/__tests__/resources/rules/S3457/python/rule.adoc b/frontend/src/deployment/__tests__/resources/rules/S3457/python/rule.adoc index 5367dc3d81..3aa4785e3f 100644 --- a/frontend/src/deployment/__tests__/resources/rules/S3457/python/rule.adoc +++ b/frontend/src/deployment/__tests__/resources/rules/S3457/python/rule.adoc @@ -69,4 +69,5 @@ include::message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/frontend/src/deployment/__tests__/resources/rules/S987/cfamily/rule.adoc b/frontend/src/deployment/__tests__/resources/rules/S987/cfamily/rule.adoc index 890a90c1a5..0f432ab115 100644 --- a/frontend/src/deployment/__tests__/resources/rules/S987/cfamily/rule.adoc +++ b/frontend/src/deployment/__tests__/resources/rules/S987/cfamily/rule.adoc @@ -23,4 +23,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rspec-tools/tests/resources/rules/S1033/cfamily/rule.adoc b/rspec-tools/tests/resources/rules/S1033/cfamily/rule.adoc index d4943a7c39..8da9fa76d2 100644 --- a/rspec-tools/tests/resources/rules/S1033/cfamily/rule.adoc +++ b/rspec-tools/tests/resources/rules/S1033/cfamily/rule.adoc @@ -50,4 +50,5 @@ include::message.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/abap/rule.adoc b/rules/S100/abap/rule.adoc index 0be25f0ee1..ffb7e9c95b 100644 --- a/rules/S100/abap/rule.adoc +++ b/rules/S100/abap/rule.adoc @@ -49,4 +49,5 @@ Regular expression used to check the [method|function|subroutine] names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/apex/rule.adoc b/rules/S100/apex/rule.adoc index 844fa23b69..16af184234 100644 --- a/rules/S100/apex/rule.adoc +++ b/rules/S100/apex/rule.adoc @@ -40,4 +40,5 @@ Regular expression used to check the function names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/cfamily/rule.adoc b/rules/S100/cfamily/rule.adoc index 709e3eea8f..f5963e758c 100644 --- a/rules/S100/cfamily/rule.adoc +++ b/rules/S100/cfamily/rule.adoc @@ -56,4 +56,5 @@ Regular expression used to check the function names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/csharp/rule.adoc b/rules/S100/csharp/rule.adoc index 943d1c676e..1327768d8d 100644 --- a/rules/S100/csharp/rule.adoc +++ b/rules/S100/csharp/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/flex/rule.adoc b/rules/S100/flex/rule.adoc index 49b6457323..d8630bc84f 100644 --- a/rules/S100/flex/rule.adoc +++ b/rules/S100/flex/rule.adoc @@ -41,4 +41,5 @@ Regular expression used to check the [method|function|subroutine] names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/go/rule.adoc b/rules/S100/go/rule.adoc index 761ace5c2d..148c70a8d9 100644 --- a/rules/S100/go/rule.adoc +++ b/rules/S100/go/rule.adoc @@ -45,4 +45,5 @@ Regular expression used to check the function names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/java/rule.adoc b/rules/S100/java/rule.adoc index dd1d724960..f6c2445829 100644 --- a/rules/S100/java/rule.adoc +++ b/rules/S100/java/rule.adoc @@ -55,4 +55,5 @@ Regular expression used to check the method names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/kotlin/rule.adoc b/rules/S100/kotlin/rule.adoc index e2ca97fa3b..73824c9b15 100644 --- a/rules/S100/kotlin/rule.adoc +++ b/rules/S100/kotlin/rule.adoc @@ -40,4 +40,5 @@ Regular expression used to check the function names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/php/rule.adoc b/rules/S100/php/rule.adoc index 588f21a74c..e3dd0b48e9 100644 --- a/rules/S100/php/rule.adoc +++ b/rules/S100/php/rule.adoc @@ -60,4 +60,5 @@ Regular expression used to check the [method|function|subroutine] names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/python/rule.adoc b/rules/S100/python/rule.adoc index 77b32c9764..1b79466f37 100644 --- a/rules/S100/python/rule.adoc +++ b/rules/S100/python/rule.adoc @@ -49,4 +49,5 @@ Regular expression used to check the [method|function|subroutine] names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/rpg/rule.adoc b/rules/S100/rpg/rule.adoc index d95ec76787..d84d592d07 100644 --- a/rules/S100/rpg/rule.adoc +++ b/rules/S100/rpg/rule.adoc @@ -64,4 +64,5 @@ Regular expression used to check the subroutine names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/ruby/rule.adoc b/rules/S100/ruby/rule.adoc index c2d81dcf74..8a46738095 100644 --- a/rules/S100/ruby/rule.adoc +++ b/rules/S100/ruby/rule.adoc @@ -50,4 +50,5 @@ Regular expression used to check the function (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/scala/rule.adoc b/rules/S100/scala/rule.adoc index 6c67dd08c5..bbd3c95dca 100644 --- a/rules/S100/scala/rule.adoc +++ b/rules/S100/scala/rule.adoc @@ -44,4 +44,5 @@ Regular expression used to check the function names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S100/swift/rule.adoc b/rules/S100/swift/rule.adoc index 04161fa1c3..c6e3028eff 100644 --- a/rules/S100/swift/rule.adoc +++ b/rules/S100/swift/rule.adoc @@ -45,4 +45,5 @@ Regular expression used to check the function names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1005/cfamily/rule.adoc b/rules/S1005/cfamily/rule.adoc index e5fc853d33..d2b9cd1cc0 100644 --- a/rules/S1005/cfamily/rule.adoc +++ b/rules/S1005/cfamily/rule.adoc @@ -44,4 +44,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1005/flex/rule.adoc b/rules/S1005/flex/rule.adoc index 11081d949f..5fde79d8f9 100644 --- a/rules/S1005/flex/rule.adoc +++ b/rules/S1005/flex/rule.adoc @@ -40,4 +40,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1005/plsql/rule.adoc b/rules/S1005/plsql/rule.adoc index a204496c2b..240e9592bb 100644 --- a/rules/S1005/plsql/rule.adoc +++ b/rules/S1005/plsql/rule.adoc @@ -37,4 +37,5 @@ Remove this "RETURN" statement. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1006/cfamily/rule.adoc b/rules/S1006/cfamily/rule.adoc index 5cb0ef9c3b..750ba81449 100644 --- a/rules/S1006/cfamily/rule.adoc +++ b/rules/S1006/cfamily/rule.adoc @@ -82,4 +82,5 @@ Remove the default value for parameter "xxx" or set it to the same value as in t (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1006/csharp/rule.adoc b/rules/S1006/csharp/rule.adoc index 48b863d6e9..9a11395773 100644 --- a/rules/S1006/csharp/rule.adoc +++ b/rules/S1006/csharp/rule.adoc @@ -146,4 +146,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/abap/rule.adoc b/rules/S101/abap/rule.adoc index 7ca3259921..c8528a492c 100644 --- a/rules/S101/abap/rule.adoc +++ b/rules/S101/abap/rule.adoc @@ -46,4 +46,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/apex/rule.adoc b/rules/S101/apex/rule.adoc index 3da88f7d3a..a8f12d1a5a 100644 --- a/rules/S101/apex/rule.adoc +++ b/rules/S101/apex/rule.adoc @@ -41,4 +41,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/cfamily/rule.adoc b/rules/S101/cfamily/rule.adoc index 58cd06e4ab..6b573a9560 100644 --- a/rules/S101/cfamily/rule.adoc +++ b/rules/S101/cfamily/rule.adoc @@ -59,4 +59,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/csharp/rule.adoc b/rules/S101/csharp/rule.adoc index 4d09ad97ac..eb1333af64 100644 --- a/rules/S101/csharp/rule.adoc +++ b/rules/S101/csharp/rule.adoc @@ -56,4 +56,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/flex/rule.adoc b/rules/S101/flex/rule.adoc index 70e2e44894..1a69dfbb0f 100644 --- a/rules/S101/flex/rule.adoc +++ b/rules/S101/flex/rule.adoc @@ -42,4 +42,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/go/rule.adoc b/rules/S101/go/rule.adoc index 5f74c450e9..dfaf2f729c 100644 --- a/rules/S101/go/rule.adoc +++ b/rules/S101/go/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/java/rule.adoc b/rules/S101/java/rule.adoc index fe1d21493e..2275f0a2f1 100644 --- a/rules/S101/java/rule.adoc +++ b/rules/S101/java/rule.adoc @@ -26,4 +26,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/javascript/rule.adoc b/rules/S101/javascript/rule.adoc index 62378d3a18..cedcc63611 100644 --- a/rules/S101/javascript/rule.adoc +++ b/rules/S101/javascript/rule.adoc @@ -34,4 +34,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/kotlin/rule.adoc b/rules/S101/kotlin/rule.adoc index fe1d21493e..2275f0a2f1 100644 --- a/rules/S101/kotlin/rule.adoc +++ b/rules/S101/kotlin/rule.adoc @@ -26,4 +26,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/php/rule.adoc b/rules/S101/php/rule.adoc index fe1d21493e..2275f0a2f1 100644 --- a/rules/S101/php/rule.adoc +++ b/rules/S101/php/rule.adoc @@ -26,4 +26,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/python/rule.adoc b/rules/S101/python/rule.adoc index 890f2da8f9..ac78d1063e 100644 --- a/rules/S101/python/rule.adoc +++ b/rules/S101/python/rule.adoc @@ -65,4 +65,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/ruby/rule.adoc b/rules/S101/ruby/rule.adoc index b47c5eef42..6d842c5aa9 100644 --- a/rules/S101/ruby/rule.adoc +++ b/rules/S101/ruby/rule.adoc @@ -45,4 +45,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/scala/rule.adoc b/rules/S101/scala/rule.adoc index fc61cac4ad..ac25b1e2a8 100644 --- a/rules/S101/scala/rule.adoc +++ b/rules/S101/scala/rule.adoc @@ -25,4 +25,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/swift/rule.adoc b/rules/S101/swift/rule.adoc index fe1d21493e..2275f0a2f1 100644 --- a/rules/S101/swift/rule.adoc +++ b/rules/S101/swift/rule.adoc @@ -26,4 +26,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S101/vbnet/rule.adoc b/rules/S101/vbnet/rule.adoc index 468c8b4828..ab07f3710d 100644 --- a/rules/S101/vbnet/rule.adoc +++ b/rules/S101/vbnet/rule.adoc @@ -61,4 +61,5 @@ Regular expression used to check the class names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/abap/rule.adoc b/rules/S103/abap/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/abap/rule.adoc +++ b/rules/S103/abap/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/apex/rule.adoc b/rules/S103/apex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/apex/rule.adoc +++ b/rules/S103/apex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/cfamily/rule.adoc b/rules/S103/cfamily/rule.adoc index 04f996e060..b3fd46b745 100644 --- a/rules/S103/cfamily/rule.adoc +++ b/rules/S103/cfamily/rule.adoc @@ -26,4 +26,5 @@ The maximum authorized line length (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/csharp/rule.adoc b/rules/S103/csharp/rule.adoc index 4bc6720be9..fb9a0cccff 100644 --- a/rules/S103/csharp/rule.adoc +++ b/rules/S103/csharp/rule.adoc @@ -26,4 +26,5 @@ The maximum authorized line length. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/flex/rule.adoc b/rules/S103/flex/rule.adoc index 6d47bd512d..1fd200736d 100644 --- a/rules/S103/flex/rule.adoc +++ b/rules/S103/flex/rule.adoc @@ -26,4 +26,5 @@ The maximum authorized line length. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/html/rule.adoc b/rules/S103/html/rule.adoc index 71dc583023..94b65ade12 100644 --- a/rules/S103/html/rule.adoc +++ b/rules/S103/html/rule.adoc @@ -26,4 +26,5 @@ The maximum authorized line length. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/java/rule.adoc b/rules/S103/java/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/java/rule.adoc +++ b/rules/S103/java/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/javascript/rule.adoc b/rules/S103/javascript/rule.adoc index e0ba5923e2..d626ad1eba 100644 --- a/rules/S103/javascript/rule.adoc +++ b/rules/S103/javascript/rule.adoc @@ -26,4 +26,5 @@ The maximum authorized line length. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/kotlin/rule.adoc b/rules/S103/kotlin/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/kotlin/rule.adoc +++ b/rules/S103/kotlin/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/php/rule.adoc b/rules/S103/php/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/php/rule.adoc +++ b/rules/S103/php/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/pli/rule.adoc b/rules/S103/pli/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/pli/rule.adoc +++ b/rules/S103/pli/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/plsql/rule.adoc b/rules/S103/plsql/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/plsql/rule.adoc +++ b/rules/S103/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/python/rule.adoc b/rules/S103/python/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/python/rule.adoc +++ b/rules/S103/python/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/ruby/rule.adoc b/rules/S103/ruby/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/ruby/rule.adoc +++ b/rules/S103/ruby/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/scala/rule.adoc b/rules/S103/scala/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/scala/rule.adoc +++ b/rules/S103/scala/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/swift/rule.adoc b/rules/S103/swift/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/swift/rule.adoc +++ b/rules/S103/swift/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/tsql/rule.adoc b/rules/S103/tsql/rule.adoc index 4bc6720be9..fb9a0cccff 100644 --- a/rules/S103/tsql/rule.adoc +++ b/rules/S103/tsql/rule.adoc @@ -26,4 +26,5 @@ The maximum authorized line length. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/vb6/rule.adoc b/rules/S103/vb6/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/vb6/rule.adoc +++ b/rules/S103/vb6/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/vbnet/rule.adoc b/rules/S103/vbnet/rule.adoc index 5785b50a96..21876585cb 100644 --- a/rules/S103/vbnet/rule.adoc +++ b/rules/S103/vbnet/rule.adoc @@ -27,4 +27,5 @@ The maximum authorized line length. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S103/xml/rule.adoc b/rules/S103/xml/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S103/xml/rule.adoc +++ b/rules/S103/xml/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1034/cfamily/rule.adoc b/rules/S1034/cfamily/rule.adoc index 1447c5cb00..2bb40f59fd 100644 --- a/rules/S1034/cfamily/rule.adoc +++ b/rules/S1034/cfamily/rule.adoc @@ -17,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/abap/rule.adoc b/rules/S104/abap/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/abap/rule.adoc +++ b/rules/S104/abap/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/apex/rule.adoc b/rules/S104/apex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/apex/rule.adoc +++ b/rules/S104/apex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/cfamily/rule.adoc b/rules/S104/cfamily/rule.adoc index c27dc22aec..b8d5af05a1 100644 --- a/rules/S104/cfamily/rule.adoc +++ b/rules/S104/cfamily/rule.adoc @@ -27,4 +27,5 @@ The maximum authorized lines (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/csharp/rule.adoc b/rules/S104/csharp/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/csharp/rule.adoc +++ b/rules/S104/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/go/rule.adoc b/rules/S104/go/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/go/rule.adoc +++ b/rules/S104/go/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/html/rule.adoc b/rules/S104/html/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/html/rule.adoc +++ b/rules/S104/html/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/java/rule.adoc b/rules/S104/java/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/java/rule.adoc +++ b/rules/S104/java/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/javascript/rule.adoc b/rules/S104/javascript/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/javascript/rule.adoc +++ b/rules/S104/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/kotlin/rule.adoc b/rules/S104/kotlin/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/kotlin/rule.adoc +++ b/rules/S104/kotlin/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/php/rule.adoc b/rules/S104/php/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/php/rule.adoc +++ b/rules/S104/php/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/plsql/rule.adoc b/rules/S104/plsql/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/plsql/rule.adoc +++ b/rules/S104/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/python/rule.adoc b/rules/S104/python/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/python/rule.adoc +++ b/rules/S104/python/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/rpg/rule.adoc b/rules/S104/rpg/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/rpg/rule.adoc +++ b/rules/S104/rpg/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/ruby/rule.adoc b/rules/S104/ruby/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/ruby/rule.adoc +++ b/rules/S104/ruby/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/scala/rule.adoc b/rules/S104/scala/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/scala/rule.adoc +++ b/rules/S104/scala/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/swift/rule.adoc b/rules/S104/swift/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/swift/rule.adoc +++ b/rules/S104/swift/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/tsql/rule.adoc b/rules/S104/tsql/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/tsql/rule.adoc +++ b/rules/S104/tsql/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/vb6/rule.adoc b/rules/S104/vb6/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S104/vb6/rule.adoc +++ b/rules/S104/vb6/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S104/vbnet/rule.adoc b/rules/S104/vbnet/rule.adoc index cbf607e50d..8683dd5537 100644 --- a/rules/S104/vbnet/rule.adoc +++ b/rules/S104/vbnet/rule.adoc @@ -26,4 +26,5 @@ Maximum authorized lines in a file. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1041/cfamily/rule.adoc b/rules/S1041/cfamily/rule.adoc index e5ab9fa623..328a030035 100644 --- a/rules/S1041/cfamily/rule.adoc +++ b/rules/S1041/cfamily/rule.adoc @@ -48,4 +48,5 @@ Add a "catch ( ... )" handler to catch the possibly thrown exceptions. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1041/plsql/rule.adoc b/rules/S1041/plsql/rule.adoc index 9d30a6b764..223a082d54 100644 --- a/rules/S1041/plsql/rule.adoc +++ b/rules/S1041/plsql/rule.adoc @@ -78,4 +78,5 @@ false (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1045/cfamily/rule.adoc b/rules/S1045/cfamily/rule.adoc index 9ac2d4fdba..341c3ad9cf 100644 --- a/rules/S1045/cfamily/rule.adoc +++ b/rules/S1045/cfamily/rule.adoc @@ -24,4 +24,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1045/php/rule.adoc b/rules/S1045/php/rule.adoc index 89327b3368..834d193ec9 100644 --- a/rules/S1045/php/rule.adoc +++ b/rules/S1045/php/rule.adoc @@ -55,4 +55,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1045/python/rule.adoc b/rules/S1045/python/rule.adoc index fa5227e7d8..9d0ae10c13 100644 --- a/rules/S1045/python/rule.adoc +++ b/rules/S1045/python/rule.adoc @@ -103,4 +103,5 @@ message should be: 'Exceptions will be caught here.' (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1048/cfamily/rule.adoc b/rules/S1048/cfamily/rule.adoc index 8ec02bd5db..e72b6c795f 100644 --- a/rules/S1048/cfamily/rule.adoc +++ b/rules/S1048/cfamily/rule.adoc @@ -54,4 +54,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1048/vbnet/rule.adoc b/rules/S1048/vbnet/rule.adoc index 75efefc2de..0fc1290bd2 100644 --- a/rules/S1048/vbnet/rule.adoc +++ b/rules/S1048/vbnet/rule.adoc @@ -57,4 +57,5 @@ The 'throw' statement. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/abap/rule.adoc b/rules/S105/abap/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/abap/rule.adoc +++ b/rules/S105/abap/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/apex/rule.adoc b/rules/S105/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/apex/rule.adoc +++ b/rules/S105/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/cfamily/rule.adoc b/rules/S105/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/cfamily/rule.adoc +++ b/rules/S105/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/cobol/rule.adoc b/rules/S105/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/cobol/rule.adoc +++ b/rules/S105/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/csharp/rule.adoc b/rules/S105/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/csharp/rule.adoc +++ b/rules/S105/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/html/rule.adoc b/rules/S105/html/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/html/rule.adoc +++ b/rules/S105/html/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/java/rule.adoc b/rules/S105/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/java/rule.adoc +++ b/rules/S105/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/javascript/rule.adoc b/rules/S105/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/javascript/rule.adoc +++ b/rules/S105/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/kotlin/rule.adoc b/rules/S105/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/kotlin/rule.adoc +++ b/rules/S105/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/php/rule.adoc b/rules/S105/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/php/rule.adoc +++ b/rules/S105/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/ruby/rule.adoc b/rules/S105/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/ruby/rule.adoc +++ b/rules/S105/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/scala/rule.adoc b/rules/S105/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/scala/rule.adoc +++ b/rules/S105/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/swift/rule.adoc b/rules/S105/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/swift/rule.adoc +++ b/rules/S105/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/tsql/rule.adoc b/rules/S105/tsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/tsql/rule.adoc +++ b/rules/S105/tsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/vb6/rule.adoc b/rules/S105/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/vb6/rule.adoc +++ b/rules/S105/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/vbnet/rule.adoc b/rules/S105/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S105/vbnet/rule.adoc +++ b/rules/S105/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S105/xml/rule.adoc b/rules/S105/xml/rule.adoc index 1713a6a398..25bfd8b448 100644 --- a/rules/S105/xml/rule.adoc +++ b/rules/S105/xml/rule.adoc @@ -32,4 +32,5 @@ message: "This line has tab characters." (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S106/cfamily/rule.adoc b/rules/S106/cfamily/rule.adoc index 94c2164887..987c2a850a 100644 --- a/rules/S106/cfamily/rule.adoc +++ b/rules/S106/cfamily/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S106/java/rule.adoc b/rules/S106/java/rule.adoc index a1715a38d7..0910798fd0 100644 --- a/rules/S106/java/rule.adoc +++ b/rules/S106/java/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S106/javascript/rule.adoc b/rules/S106/javascript/rule.adoc index 2851daa990..ff4fc0e627 100644 --- a/rules/S106/javascript/rule.adoc +++ b/rules/S106/javascript/rule.adoc @@ -30,4 +30,5 @@ Replace this usage of console.{log|warn|error} by a logger. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1065/cfamily/rule.adoc b/rules/S1065/cfamily/rule.adoc index 6e51c08d37..50b5b2501e 100644 --- a/rules/S1065/cfamily/rule.adoc +++ b/rules/S1065/cfamily/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1065/java/rule.adoc b/rules/S1065/java/rule.adoc index 68be7a7a0a..58710704c7 100644 --- a/rules/S1065/java/rule.adoc +++ b/rules/S1065/java/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1065/plsql/rule.adoc b/rules/S1065/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1065/plsql/rule.adoc +++ b/rules/S1065/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1065/swift/rule.adoc b/rules/S1065/swift/rule.adoc index a0c6655a29..d1f8069d05 100644 --- a/rules/S1065/swift/rule.adoc +++ b/rules/S1065/swift/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1065/tsql/rule.adoc b/rules/S1065/tsql/rule.adoc index 782146e92f..fca3d262ef 100644 --- a/rules/S1065/tsql/rule.adoc +++ b/rules/S1065/tsql/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/abap/rule.adoc b/rules/S1066/abap/rule.adoc index fcbd5ce801..25a8be34f9 100644 --- a/rules/S1066/abap/rule.adoc +++ b/rules/S1066/abap/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/apex/rule.adoc b/rules/S1066/apex/rule.adoc index afbe34cf2c..c394fb2955 100644 --- a/rules/S1066/apex/rule.adoc +++ b/rules/S1066/apex/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/cfamily/rule.adoc b/rules/S1066/cfamily/rule.adoc index 312aa69562..e9dfbd483c 100644 --- a/rules/S1066/cfamily/rule.adoc +++ b/rules/S1066/cfamily/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/cobol/rule.adoc b/rules/S1066/cobol/rule.adoc index 0d35530d78..908db46e32 100644 --- a/rules/S1066/cobol/rule.adoc +++ b/rules/S1066/cobol/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/csharp/rule.adoc b/rules/S1066/csharp/rule.adoc index f083114c1c..db6c35ea56 100644 --- a/rules/S1066/csharp/rule.adoc +++ b/rules/S1066/csharp/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/flex/rule.adoc b/rules/S1066/flex/rule.adoc index 5b854d9db1..dce5633594 100644 --- a/rules/S1066/flex/rule.adoc +++ b/rules/S1066/flex/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/go/rule.adoc b/rules/S1066/go/rule.adoc index f384ac47d2..c6ba464800 100644 --- a/rules/S1066/go/rule.adoc +++ b/rules/S1066/go/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/java/rule.adoc b/rules/S1066/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1066/java/rule.adoc +++ b/rules/S1066/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/javascript/rule.adoc b/rules/S1066/javascript/rule.adoc index 86c5d70797..ae47820857 100644 --- a/rules/S1066/javascript/rule.adoc +++ b/rules/S1066/javascript/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/kotlin/rule.adoc b/rules/S1066/kotlin/rule.adoc index db7b48bb29..4b33db43cd 100644 --- a/rules/S1066/kotlin/rule.adoc +++ b/rules/S1066/kotlin/rule.adoc @@ -31,4 +31,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/php/rule.adoc b/rules/S1066/php/rule.adoc index 8afb7a618f..1d854942a1 100644 --- a/rules/S1066/php/rule.adoc +++ b/rules/S1066/php/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/plsql/rule.adoc b/rules/S1066/plsql/rule.adoc index a3fb8e20b3..8456758a0b 100644 --- a/rules/S1066/plsql/rule.adoc +++ b/rules/S1066/plsql/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/python/rule.adoc b/rules/S1066/python/rule.adoc index 761f81990e..3536aca51e 100644 --- a/rules/S1066/python/rule.adoc +++ b/rules/S1066/python/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/ruby/rule.adoc b/rules/S1066/ruby/rule.adoc index f5a8bb274e..f13de9461b 100644 --- a/rules/S1066/ruby/rule.adoc +++ b/rules/S1066/ruby/rule.adoc @@ -52,4 +52,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/scala/rule.adoc b/rules/S1066/scala/rule.adoc index e8e3abfd60..f2b5b9516a 100644 --- a/rules/S1066/scala/rule.adoc +++ b/rules/S1066/scala/rule.adoc @@ -39,4 +39,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/swift/rule.adoc b/rules/S1066/swift/rule.adoc index 57ea9bcacf..c93cbdba01 100644 --- a/rules/S1066/swift/rule.adoc +++ b/rules/S1066/swift/rule.adoc @@ -51,4 +51,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/tsql/rule.adoc b/rules/S1066/tsql/rule.adoc index a0be22c321..1addbc989c 100644 --- a/rules/S1066/tsql/rule.adoc +++ b/rules/S1066/tsql/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/vb6/rule.adoc b/rules/S1066/vb6/rule.adoc index b1b96d3364..8c31e8d361 100644 --- a/rules/S1066/vb6/rule.adoc +++ b/rules/S1066/vb6/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1066/vbnet/rule.adoc b/rules/S1066/vbnet/rule.adoc index ed190402e7..843b2127d2 100644 --- a/rules/S1066/vbnet/rule.adoc +++ b/rules/S1066/vbnet/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/abap/rule.adoc b/rules/S1067/abap/rule.adoc index 4ca598fa4d..89e6daae5d 100644 --- a/rules/S1067/abap/rule.adoc +++ b/rules/S1067/abap/rule.adoc @@ -30,4 +30,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/apex/rule.adoc b/rules/S1067/apex/rule.adoc index eb3d404bdd..9bfefd513a 100644 --- a/rules/S1067/apex/rule.adoc +++ b/rules/S1067/apex/rule.adoc @@ -35,4 +35,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/cfamily/rule.adoc b/rules/S1067/cfamily/rule.adoc index 91762ea4f9..2b062b49eb 100644 --- a/rules/S1067/cfamily/rule.adoc +++ b/rules/S1067/cfamily/rule.adoc @@ -33,4 +33,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/cobol/rule.adoc b/rules/S1067/cobol/rule.adoc index 71bbe39665..1e4eff0039 100644 --- a/rules/S1067/cobol/rule.adoc +++ b/rules/S1067/cobol/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/csharp/rule.adoc b/rules/S1067/csharp/rule.adoc index 65d7bb358c..b5299fde34 100644 --- a/rules/S1067/csharp/rule.adoc +++ b/rules/S1067/csharp/rule.adoc @@ -34,4 +34,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/go/rule.adoc b/rules/S1067/go/rule.adoc index 91590e49d0..8e705c6d9b 100644 --- a/rules/S1067/go/rule.adoc +++ b/rules/S1067/go/rule.adoc @@ -33,4 +33,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/java/rule.adoc b/rules/S1067/java/rule.adoc index f60b20f1bb..3fffa9ab5f 100644 --- a/rules/S1067/java/rule.adoc +++ b/rules/S1067/java/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/javascript/rule.adoc b/rules/S1067/javascript/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1067/javascript/rule.adoc +++ b/rules/S1067/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/kotlin/rule.adoc b/rules/S1067/kotlin/rule.adoc index 14a1047bd8..99b7655f4d 100644 --- a/rules/S1067/kotlin/rule.adoc +++ b/rules/S1067/kotlin/rule.adoc @@ -33,4 +33,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/php/rule.adoc b/rules/S1067/php/rule.adoc index fa8474c8bf..ca2d234b3a 100644 --- a/rules/S1067/php/rule.adoc +++ b/rules/S1067/php/rule.adoc @@ -33,4 +33,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/rpg/rule.adoc b/rules/S1067/rpg/rule.adoc index 76f2a556a5..6ed0ae7a0c 100644 --- a/rules/S1067/rpg/rule.adoc +++ b/rules/S1067/rpg/rule.adoc @@ -56,4 +56,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/ruby/rule.adoc b/rules/S1067/ruby/rule.adoc index 590a127be5..b870fa128d 100644 --- a/rules/S1067/ruby/rule.adoc +++ b/rules/S1067/ruby/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/scala/rule.adoc b/rules/S1067/scala/rule.adoc index 6189c7baf0..0621789bfa 100644 --- a/rules/S1067/scala/rule.adoc +++ b/rules/S1067/scala/rule.adoc @@ -35,4 +35,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/swift/rule.adoc b/rules/S1067/swift/rule.adoc index 40b787d317..99d6649921 100644 --- a/rules/S1067/swift/rule.adoc +++ b/rules/S1067/swift/rule.adoc @@ -33,4 +33,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/tsql/rule.adoc b/rules/S1067/tsql/rule.adoc index 7a25e157d6..7496abad50 100644 --- a/rules/S1067/tsql/rule.adoc +++ b/rules/S1067/tsql/rule.adoc @@ -29,4 +29,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/vb6/rule.adoc b/rules/S1067/vb6/rule.adoc index 626e64603c..5c65c82b50 100644 --- a/rules/S1067/vb6/rule.adoc +++ b/rules/S1067/vb6/rule.adoc @@ -39,4 +39,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1067/vbnet/rule.adoc b/rules/S1067/vbnet/rule.adoc index 43ea87d4b1..a3a3f9a315 100644 --- a/rules/S1067/vbnet/rule.adoc +++ b/rules/S1067/vbnet/rule.adoc @@ -49,4 +49,5 @@ Maximum number of allowed conditional operators in an expression (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1068/cfamily/rule.adoc b/rules/S1068/cfamily/rule.adoc index 1248ed36a9..1ec24daeb6 100644 --- a/rules/S1068/cfamily/rule.adoc +++ b/rules/S1068/cfamily/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1068/flex/rule.adoc b/rules/S1068/flex/rule.adoc index 9470ba0d18..72f6c94d51 100644 --- a/rules/S1068/flex/rule.adoc +++ b/rules/S1068/flex/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1068/java/rule.adoc b/rules/S1068/java/rule.adoc index 56e496c95a..45f7cf3f13 100644 --- a/rules/S1068/java/rule.adoc +++ b/rules/S1068/java/rule.adoc @@ -82,4 +82,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1068/php/rule.adoc b/rules/S1068/php/rule.adoc index e8c64d7ccf..f0e30ea0a7 100644 --- a/rules/S1068/php/rule.adoc +++ b/rules/S1068/php/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1068/plsql/rule.adoc b/rules/S1068/plsql/rule.adoc index b673df1371..e6492bb618 100644 --- a/rules/S1068/plsql/rule.adoc +++ b/rules/S1068/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1068/rpg/rule.adoc b/rules/S1068/rpg/rule.adoc index f5b18d1778..0b081c1f2f 100644 --- a/rules/S1068/rpg/rule.adoc +++ b/rules/S1068/rpg/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1068/vb6/rule.adoc b/rules/S1068/vb6/rule.adoc index 01a915016f..0e373e4210 100644 --- a/rules/S1068/vb6/rule.adoc +++ b/rules/S1068/vb6/rule.adoc @@ -38,4 +38,5 @@ Remove this unused "xxx" private variable. It is set n times but never read. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1069/cobol/rule.adoc b/rules/S1069/cobol/rule.adoc index 8468dc4797..65f9da8855 100644 --- a/rules/S1069/cobol/rule.adoc +++ b/rules/S1069/cobol/rule.adoc @@ -61,4 +61,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1069/plsql/rule.adoc b/rules/S1069/plsql/rule.adoc index 6b7012c517..8a3adc4a0e 100644 --- a/rules/S1069/plsql/rule.adoc +++ b/rules/S1069/plsql/rule.adoc @@ -28,4 +28,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/apex/rule.adoc b/rules/S107/apex/rule.adoc index 4316b7797b..c251544f54 100644 --- a/rules/S107/apex/rule.adoc +++ b/rules/S107/apex/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/cfamily/rule.adoc b/rules/S107/cfamily/rule.adoc index e9a22a184a..50e040123e 100644 --- a/rules/S107/cfamily/rule.adoc +++ b/rules/S107/cfamily/rule.adoc @@ -59,4 +59,5 @@ Maximum authorized number of parameters (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/csharp/rule.adoc b/rules/S107/csharp/rule.adoc index 068b54fbd2..4c64d387fe 100644 --- a/rules/S107/csharp/rule.adoc +++ b/rules/S107/csharp/rule.adoc @@ -63,4 +63,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/flex/rule.adoc b/rules/S107/flex/rule.adoc index 36b4521e85..57a7faeb92 100644 --- a/rules/S107/flex/rule.adoc +++ b/rules/S107/flex/rule.adoc @@ -48,4 +48,5 @@ Maximum authorized number of parameters (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/go/rule.adoc b/rules/S107/go/rule.adoc index a94c8e2cb4..83cf059449 100644 --- a/rules/S107/go/rule.adoc +++ b/rules/S107/go/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/javascript/rule.adoc b/rules/S107/javascript/rule.adoc index cb519d64a2..681a615595 100644 --- a/rules/S107/javascript/rule.adoc +++ b/rules/S107/javascript/rule.adoc @@ -71,4 +71,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/kotlin/rule.adoc b/rules/S107/kotlin/rule.adoc index 30650eb787..866462ba1e 100644 --- a/rules/S107/kotlin/rule.adoc +++ b/rules/S107/kotlin/rule.adoc @@ -41,4 +41,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/php/rule.adoc b/rules/S107/php/rule.adoc index 793fd8c0ab..ac4f53a7fc 100644 --- a/rules/S107/php/rule.adoc +++ b/rules/S107/php/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/pli/rule.adoc b/rules/S107/pli/rule.adoc index 5d3f8c8065..6df6494a4d 100644 --- a/rules/S107/pli/rule.adoc +++ b/rules/S107/pli/rule.adoc @@ -60,4 +60,5 @@ Maximum authorized number of parameters (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/plsql/rule.adoc b/rules/S107/plsql/rule.adoc index 9991b1c580..360044dfd3 100644 --- a/rules/S107/plsql/rule.adoc +++ b/rules/S107/plsql/rule.adoc @@ -87,4 +87,5 @@ The maximum number of function and procedure parameters allowed. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/ruby/rule.adoc b/rules/S107/ruby/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S107/ruby/rule.adoc +++ b/rules/S107/ruby/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/scala/rule.adoc b/rules/S107/scala/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S107/scala/rule.adoc +++ b/rules/S107/scala/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/tsql/rule.adoc b/rules/S107/tsql/rule.adoc index a7a773d971..b5d02b3935 100644 --- a/rules/S107/tsql/rule.adoc +++ b/rules/S107/tsql/rule.adoc @@ -28,4 +28,5 @@ Maximum authorized number of parameters (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/vb6/rule.adoc b/rules/S107/vb6/rule.adoc index 8e93e51972..895e0cd855 100644 --- a/rules/S107/vb6/rule.adoc +++ b/rules/S107/vb6/rule.adoc @@ -48,4 +48,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S107/vbnet/rule.adoc b/rules/S107/vbnet/rule.adoc index ebc6691fee..2692f03360 100644 --- a/rules/S107/vbnet/rule.adoc +++ b/rules/S107/vbnet/rule.adoc @@ -69,4 +69,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1075/cfamily/rule.adoc b/rules/S1075/cfamily/rule.adoc index eae6b564bd..5af49cc7e8 100644 --- a/rules/S1075/cfamily/rule.adoc +++ b/rules/S1075/cfamily/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1075/java/rule.adoc b/rules/S1075/java/rule.adoc index c4012fb820..f4377d461e 100644 --- a/rules/S1075/java/rule.adoc +++ b/rules/S1075/java/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1075/php/rule.adoc b/rules/S1075/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1075/php/rule.adoc +++ b/rules/S1075/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1075/swift/rule.adoc b/rules/S1075/swift/rule.adoc index ced2e5f302..d600cd19e7 100644 --- a/rules/S1075/swift/rule.adoc +++ b/rules/S1075/swift/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1075/vbnet/rule.adoc b/rules/S1075/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1075/vbnet/rule.adoc +++ b/rules/S1075/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/abap/rule.adoc b/rules/S108/abap/rule.adoc index 4a20b26266..86d2fa05a7 100644 --- a/rules/S108/abap/rule.adoc +++ b/rules/S108/abap/rule.adoc @@ -1,6 +1,7 @@ :example: abap/code-example.adoc include::../description.adoc[] + include::../exceptions.adoc[] ifdef::env-github,rspecator-view[] @@ -16,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/apex/rule.adoc b/rules/S108/apex/rule.adoc index 8f3620c078..62f4209a38 100644 --- a/rules/S108/apex/rule.adoc +++ b/rules/S108/apex/rule.adoc @@ -1,6 +1,7 @@ :example: apex/code-example.adoc include::../description.adoc[] + include::../exceptions.adoc[] ifdef::env-github,rspecator-view[] @@ -16,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/cfamily/rule.adoc b/rules/S108/cfamily/rule.adoc index 6d57cf12c8..ef679d4dfe 100644 --- a/rules/S108/cfamily/rule.adoc +++ b/rules/S108/cfamily/rule.adoc @@ -58,4 +58,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/csharp/rule.adoc b/rules/S108/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S108/csharp/rule.adoc +++ b/rules/S108/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/flex/rule.adoc b/rules/S108/flex/rule.adoc index aca9352db4..e306d3840d 100644 --- a/rules/S108/flex/rule.adoc +++ b/rules/S108/flex/rule.adoc @@ -1,6 +1,7 @@ :example: flex/code-example.adoc include::../description.adoc[] + include::../exceptions.adoc[] ifdef::env-github,rspecator-view[] @@ -16,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/go/rule.adoc b/rules/S108/go/rule.adoc index 3d4fa514cf..44c91aa002 100644 --- a/rules/S108/go/rule.adoc +++ b/rules/S108/go/rule.adoc @@ -22,4 +22,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/java/rule.adoc b/rules/S108/java/rule.adoc index fc5c40ac78..3bb900e06d 100644 --- a/rules/S108/java/rule.adoc +++ b/rules/S108/java/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/javascript/rule.adoc b/rules/S108/javascript/rule.adoc index 1d1fd2455d..2e79f6ffc6 100644 --- a/rules/S108/javascript/rule.adoc +++ b/rules/S108/javascript/rule.adoc @@ -21,4 +21,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/kotlin/rule.adoc b/rules/S108/kotlin/rule.adoc index f5b258bde4..9885194126 100644 --- a/rules/S108/kotlin/rule.adoc +++ b/rules/S108/kotlin/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/php/rule.adoc b/rules/S108/php/rule.adoc index 5ff65798b3..a5fb3a5700 100644 --- a/rules/S108/php/rule.adoc +++ b/rules/S108/php/rule.adoc @@ -1,6 +1,7 @@ :example: php/code-example.adoc include::../description.adoc[] + include::../exceptions.adoc[] ifdef::env-github,rspecator-view[] @@ -16,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/python/rule.adoc b/rules/S108/python/rule.adoc index 522651e4e4..dd42157d42 100644 --- a/rules/S108/python/rule.adoc +++ b/rules/S108/python/rule.adoc @@ -1,6 +1,7 @@ :example: python/code-example.adoc include::../description.adoc[] + include::../exceptions.adoc[] ifdef::env-github,rspecator-view[] @@ -16,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/rpg/rule.adoc b/rules/S108/rpg/rule.adoc index 3ae0cd979f..818f3f3680 100644 --- a/rules/S108/rpg/rule.adoc +++ b/rules/S108/rpg/rule.adoc @@ -1,6 +1,7 @@ :example: rpg/code-example.adoc include::../description.adoc[] + include::../exceptions.adoc[] ifdef::env-github,rspecator-view[] @@ -16,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/ruby/rule.adoc b/rules/S108/ruby/rule.adoc index 88b5141900..d495a50243 100644 --- a/rules/S108/ruby/rule.adoc +++ b/rules/S108/ruby/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/scala/rule.adoc b/rules/S108/scala/rule.adoc index 8d132e2987..263206c25e 100644 --- a/rules/S108/scala/rule.adoc +++ b/rules/S108/scala/rule.adoc @@ -1,6 +1,7 @@ :example: scala/code-example.adoc include::../description.adoc[] + include::../exceptions.adoc[] ifdef::env-github,rspecator-view[] @@ -16,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/swift/rule.adoc b/rules/S108/swift/rule.adoc index 372a006e62..8d0560a110 100644 --- a/rules/S108/swift/rule.adoc +++ b/rules/S108/swift/rule.adoc @@ -1,6 +1,7 @@ :example: swift/code-example.adoc include::../description.adoc[] + include::../exceptions.adoc[] ifdef::env-github,rspecator-view[] @@ -16,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/vb6/rule.adoc b/rules/S108/vb6/rule.adoc index 66e0cbf792..e1a1d9776e 100644 --- a/rules/S108/vb6/rule.adoc +++ b/rules/S108/vb6/rule.adoc @@ -1,6 +1,7 @@ :example: vb6/code-example.adoc include::../description.adoc[] + include::../exceptions.adoc[] ifdef::env-github,rspecator-view[] @@ -16,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S108/vbnet/rule.adoc b/rules/S108/vbnet/rule.adoc index a11e032e37..9e429e6161 100644 --- a/rules/S108/vbnet/rule.adoc +++ b/rules/S108/vbnet/rule.adoc @@ -1,6 +1,7 @@ :example: vbnet/code-example.adoc include::../description.adoc[] + include::../exceptions.adoc[] ifdef::env-github,rspecator-view[] @@ -16,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S109/abap/rule.adoc b/rules/S109/abap/rule.adoc index 8473db54c0..173dcb1b27 100644 --- a/rules/S109/abap/rule.adoc +++ b/rules/S109/abap/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S109/cfamily/rule.adoc b/rules/S109/cfamily/rule.adoc index e1b518f5a1..d9674a0b75 100644 --- a/rules/S109/cfamily/rule.adoc +++ b/rules/S109/cfamily/rule.adoc @@ -63,4 +63,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S109/cobol/rule.adoc b/rules/S109/cobol/rule.adoc index e553c348ee..dea269094e 100644 --- a/rules/S109/cobol/rule.adoc +++ b/rules/S109/cobol/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S109/csharp/rule.adoc b/rules/S109/csharp/rule.adoc index 27afe4cd1c..d655c536ca 100644 --- a/rules/S109/csharp/rule.adoc +++ b/rules/S109/csharp/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S109/java/rule.adoc b/rules/S109/java/rule.adoc index 59fbc284e0..b196d1007a 100644 --- a/rules/S109/java/rule.adoc +++ b/rules/S109/java/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S109/javascript/rule.adoc b/rules/S109/javascript/rule.adoc index 639f68a9b6..046f5195cf 100644 --- a/rules/S109/javascript/rule.adoc +++ b/rules/S109/javascript/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S109/plsql/rule.adoc b/rules/S109/plsql/rule.adoc index 0038e13781..24f9a1c9fb 100644 --- a/rules/S109/plsql/rule.adoc +++ b/rules/S109/plsql/rule.adoc @@ -36,4 +36,5 @@ Comma separated list of allowed exceptions (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S109/rpg/rule.adoc b/rules/S109/rpg/rule.adoc index 806adf53d4..a5df0008d1 100644 --- a/rules/S109/rpg/rule.adoc +++ b/rules/S109/rpg/rule.adoc @@ -42,4 +42,5 @@ Use a named constant for this reference to XXX. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S109/vb6/rule.adoc b/rules/S109/vb6/rule.adoc index e98c581d2d..deeca82d8d 100644 --- a/rules/S109/vb6/rule.adoc +++ b/rules/S109/vb6/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S109/vbnet/rule.adoc b/rules/S109/vbnet/rule.adoc index c7054688b4..dad0227f91 100644 --- a/rules/S109/vbnet/rule.adoc +++ b/rules/S109/vbnet/rule.adoc @@ -61,4 +61,5 @@ _STRING_ (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1103/cfamily/rule.adoc b/rules/S1103/cfamily/rule.adoc index a6d52e0bf0..28bfcfcb4d 100644 --- a/rules/S1103/cfamily/rule.adoc +++ b/rules/S1103/cfamily/rule.adoc @@ -28,4 +28,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1103/java/rule.adoc b/rules/S1103/java/rule.adoc index 8da192c816..db3658936e 100644 --- a/rules/S1103/java/rule.adoc +++ b/rules/S1103/java/rule.adoc @@ -21,4 +21,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1103/pli/rule.adoc b/rules/S1103/pli/rule.adoc index f128ca6224..37f2af1cf8 100644 --- a/rules/S1103/pli/rule.adoc +++ b/rules/S1103/pli/rule.adoc @@ -32,4 +32,5 @@ Remove this misleading nested comment starting with character "/*" (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1103/plsql/rule.adoc b/rules/S1103/plsql/rule.adoc index 2105dcd7a7..fb479cac14 100644 --- a/rules/S1103/plsql/rule.adoc +++ b/rules/S1103/plsql/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1104/csharp/rule.adoc b/rules/S1104/csharp/rule.adoc index 0016b1fc35..e458971701 100644 --- a/rules/S1104/csharp/rule.adoc +++ b/rules/S1104/csharp/rule.adoc @@ -66,4 +66,5 @@ Field identifier. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1104/java/rule.adoc b/rules/S1104/java/rule.adoc index 4cd69cbe8e..86e118cc9d 100644 --- a/rules/S1104/java/rule.adoc +++ b/rules/S1104/java/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1105/java/rule.adoc b/rules/S1105/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1105/java/rule.adoc +++ b/rules/S1105/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1105/javascript/rule.adoc b/rules/S1105/javascript/rule.adoc index 0f75448a90..edf39d0412 100644 --- a/rules/S1105/javascript/rule.adoc +++ b/rules/S1105/javascript/rule.adoc @@ -78,4 +78,5 @@ enforced brace-style: 1tbs, stroustrup or allman. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1105/php/rule.adoc b/rules/S1105/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1105/php/rule.adoc +++ b/rules/S1105/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1105/swift/rule.adoc b/rules/S1105/swift/rule.adoc index 745103cc90..a5953abaa5 100644 --- a/rules/S1105/swift/rule.adoc +++ b/rules/S1105/swift/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1106/java/rule.adoc b/rules/S1106/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1106/java/rule.adoc +++ b/rules/S1106/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1106/php/rule.adoc b/rules/S1106/php/rule.adoc index ce6d87e403..df69e37a53 100644 --- a/rules/S1106/php/rule.adoc +++ b/rules/S1106/php/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1107/java/rule.adoc b/rules/S1107/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1107/java/rule.adoc +++ b/rules/S1107/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1108/java/rule.adoc b/rules/S1108/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1108/java/rule.adoc +++ b/rules/S1108/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1109/csharp/rule.adoc b/rules/S1109/csharp/rule.adoc index 2767a6a3a7..274e547df5 100644 --- a/rules/S1109/csharp/rule.adoc +++ b/rules/S1109/csharp/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1109/java/rule.adoc b/rules/S1109/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1109/java/rule.adoc +++ b/rules/S1109/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1109/php/rule.adoc b/rules/S1109/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1109/php/rule.adoc +++ b/rules/S1109/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1109/swift/rule.adoc b/rules/S1109/swift/rule.adoc index 0b8d5d9654..532d7498ba 100644 --- a/rules/S1109/swift/rule.adoc +++ b/rules/S1109/swift/rule.adoc @@ -41,4 +41,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1110/python/rule.adoc b/rules/S1110/python/rule.adoc index f5c0b30736..aef5cdaa4e 100644 --- a/rules/S1110/python/rule.adoc +++ b/rules/S1110/python/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1110/rspecator.adoc b/rules/S1110/rspecator.adoc index 22ee4ccac8..c6fd2dac12 100644 --- a/rules/S1110/rspecator.adoc +++ b/rules/S1110/rspecator.adoc @@ -13,4 +13,5 @@ include::highlighting.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S1116/cfamily/rule.adoc b/rules/S1116/cfamily/rule.adoc index 897f92ea95..b894f91cf0 100644 --- a/rules/S1116/cfamily/rule.adoc +++ b/rules/S1116/cfamily/rule.adoc @@ -67,4 +67,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1116/csharp/rule.adoc b/rules/S1116/csharp/rule.adoc index ea959f14c9..5897c18a61 100644 --- a/rules/S1116/csharp/rule.adoc +++ b/rules/S1116/csharp/rule.adoc @@ -56,4 +56,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1116/css/rule.adoc b/rules/S1116/css/rule.adoc index aec81cf0f9..31ec35e8d5 100644 --- a/rules/S1116/css/rule.adoc +++ b/rules/S1116/css/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1116/flex/rule.adoc b/rules/S1116/flex/rule.adoc index 9826b70e01..590cff7d16 100644 --- a/rules/S1116/flex/rule.adoc +++ b/rules/S1116/flex/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1116/go/rule.adoc b/rules/S1116/go/rule.adoc index b14cee4eef..42d45c5c85 100644 --- a/rules/S1116/go/rule.adoc +++ b/rules/S1116/go/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1116/java/rule.adoc b/rules/S1116/java/rule.adoc index f21219acf9..4f5b2326ae 100644 --- a/rules/S1116/java/rule.adoc +++ b/rules/S1116/java/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1116/javascript/rule.adoc b/rules/S1116/javascript/rule.adoc index f9bb19506b..9466db028e 100644 --- a/rules/S1116/javascript/rule.adoc +++ b/rules/S1116/javascript/rule.adoc @@ -61,4 +61,5 @@ Remove this extra semicolon. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1116/php/rule.adoc b/rules/S1116/php/rule.adoc index 2babad3b47..15d7a047d3 100644 --- a/rules/S1116/php/rule.adoc +++ b/rules/S1116/php/rule.adoc @@ -46,4 +46,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1116/tsql/rule.adoc b/rules/S1116/tsql/rule.adoc index e261b1323d..0915bcdc8e 100644 --- a/rules/S1116/tsql/rule.adoc +++ b/rules/S1116/tsql/rule.adoc @@ -16,4 +16,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1116/vb6/rule.adoc b/rules/S1116/vb6/rule.adoc index 629dee1568..77c51b7ede 100644 --- a/rules/S1116/vb6/rule.adoc +++ b/rules/S1116/vb6/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1118/java/rule.adoc b/rules/S1118/java/rule.adoc index 46af1c3531..1b46380e11 100644 --- a/rules/S1118/java/rule.adoc +++ b/rules/S1118/java/rule.adoc @@ -55,4 +55,5 @@ Add a private constructor to hide the implicit public one. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1119/java/rule.adoc b/rules/S1119/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1119/java/rule.adoc +++ b/rules/S1119/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S112/java/rule.adoc b/rules/S112/java/rule.adoc index e479a3b339..e0c507375f 100644 --- a/rules/S112/java/rule.adoc +++ b/rules/S112/java/rule.adoc @@ -60,4 +60,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S112/php/rule.adoc b/rules/S112/php/rule.adoc index 1f424a635f..bc99ef7c97 100644 --- a/rules/S112/php/rule.adoc +++ b/rules/S112/php/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S112/python/rule.adoc b/rules/S112/python/rule.adoc index e3201961ef..049ef2d193 100644 --- a/rules/S112/python/rule.adoc +++ b/rules/S112/python/rule.adoc @@ -116,4 +116,5 @@ The "Exception" or "BaseException" class instantiation (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S112/vbnet/rule.adoc b/rules/S112/vbnet/rule.adoc index 9da6074617..9dd6dc6fd9 100644 --- a/rules/S112/vbnet/rule.adoc +++ b/rules/S112/vbnet/rule.adoc @@ -45,4 +45,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1120/abap/rule.adoc b/rules/S1120/abap/rule.adoc index cb06d09804..8d617d1c75 100644 --- a/rules/S1120/abap/rule.adoc +++ b/rules/S1120/abap/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1120/vb6/rule.adoc b/rules/S1120/vb6/rule.adoc index 25c47ae4c9..7f5fb2eccd 100644 --- a/rules/S1120/vb6/rule.adoc +++ b/rules/S1120/vb6/rule.adoc @@ -54,4 +54,5 @@ Correct the indentation of this and the following X lines. This line should star (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1120/xml/rule.adoc b/rules/S1120/xml/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1120/xml/rule.adoc +++ b/rules/S1120/xml/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1121/cfamily/rule.adoc b/rules/S1121/cfamily/rule.adoc index 61bc16ee6d..adc8a40c95 100644 --- a/rules/S1121/cfamily/rule.adoc +++ b/rules/S1121/cfamily/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1121/java/rule.adoc b/rules/S1121/java/rule.adoc index 45d190b779..1897f15fc5 100644 --- a/rules/S1121/java/rule.adoc +++ b/rules/S1121/java/rule.adoc @@ -46,4 +46,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1121/javascript/rule.adoc b/rules/S1121/javascript/rule.adoc index a53730a86d..e3f3f1a6e3 100644 --- a/rules/S1121/javascript/rule.adoc +++ b/rules/S1121/javascript/rule.adoc @@ -52,4 +52,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1121/php/rule.adoc b/rules/S1121/php/rule.adoc index b4c63948ed..8d4aadcd09 100644 --- a/rules/S1121/php/rule.adoc +++ b/rules/S1121/php/rule.adoc @@ -54,4 +54,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1123/cfamily/rule.adoc b/rules/S1123/cfamily/rule.adoc index cae4aeaca7..bba9234ffb 100644 --- a/rules/S1123/cfamily/rule.adoc +++ b/rules/S1123/cfamily/rule.adoc @@ -51,4 +51,5 @@ Add an explanation. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1123/csharp/rule.adoc b/rules/S1123/csharp/rule.adoc index 6a1aa308d8..0dedf8e949 100644 --- a/rules/S1123/csharp/rule.adoc +++ b/rules/S1123/csharp/rule.adoc @@ -44,4 +44,5 @@ Add an explanation. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1123/java/rule.adoc b/rules/S1123/java/rule.adoc index dbe989eb3c..19d93c8a63 100644 --- a/rules/S1123/java/rule.adoc +++ b/rules/S1123/java/rule.adoc @@ -84,4 +84,5 @@ Add the missing [@Deprecated annotation | @deprecated Javadoc tag]. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1123/vbnet/rule.adoc b/rules/S1123/vbnet/rule.adoc index 7874c35ded..9c428a60ca 100644 --- a/rules/S1123/vbnet/rule.adoc +++ b/rules/S1123/vbnet/rule.adoc @@ -46,4 +46,5 @@ Add an explanation. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1124/java/rule.adoc b/rules/S1124/java/rule.adoc index 27f5b08794..29e0958b50 100644 --- a/rules/S1124/java/rule.adoc +++ b/rules/S1124/java/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1124/php/rule.adoc b/rules/S1124/php/rule.adoc index 41ba042d12..31668268db 100644 --- a/rules/S1124/php/rule.adoc +++ b/rules/S1124/php/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1125/apex/rule.adoc b/rules/S1125/apex/rule.adoc index 24800d8ae2..32f138da19 100644 --- a/rules/S1125/apex/rule.adoc +++ b/rules/S1125/apex/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1125/csharp/rule.adoc b/rules/S1125/csharp/rule.adoc index 979c77f935..41d6367f4e 100644 --- a/rules/S1125/csharp/rule.adoc +++ b/rules/S1125/csharp/rule.adoc @@ -59,4 +59,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1125/flex/rule.adoc b/rules/S1125/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1125/flex/rule.adoc +++ b/rules/S1125/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1125/go/rule.adoc b/rules/S1125/go/rule.adoc index fe4a382f77..59bca8f64f 100644 --- a/rules/S1125/go/rule.adoc +++ b/rules/S1125/go/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1125/java/rule.adoc b/rules/S1125/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1125/java/rule.adoc +++ b/rules/S1125/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1125/kotlin/rule.adoc b/rules/S1125/kotlin/rule.adoc index ce431f8aa0..81021333f6 100644 --- a/rules/S1125/kotlin/rule.adoc +++ b/rules/S1125/kotlin/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1125/plsql/rule.adoc b/rules/S1125/plsql/rule.adoc index 234eaa8465..e4b17225f9 100644 --- a/rules/S1125/plsql/rule.adoc +++ b/rules/S1125/plsql/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1125/scala/rule.adoc b/rules/S1125/scala/rule.adoc index 678795e583..9a1e1aa7ad 100644 --- a/rules/S1125/scala/rule.adoc +++ b/rules/S1125/scala/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1125/swift/rule.adoc b/rules/S1125/swift/rule.adoc index 0f59c5b6f0..6098373538 100644 --- a/rules/S1125/swift/rule.adoc +++ b/rules/S1125/swift/rule.adoc @@ -60,4 +60,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1125/vb6/rule.adoc b/rules/S1125/vb6/rule.adoc index 8fbe78fd8b..9bbc4be671 100644 --- a/rules/S1125/vb6/rule.adoc +++ b/rules/S1125/vb6/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1125/vbnet/rule.adoc b/rules/S1125/vbnet/rule.adoc index 066650f5a2..9d9d1750da 100644 --- a/rules/S1125/vbnet/rule.adoc +++ b/rules/S1125/vbnet/rule.adoc @@ -61,4 +61,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1126/java/rule.adoc b/rules/S1126/java/rule.adoc index fcab9001d8..a51deb2446 100644 --- a/rules/S1126/java/rule.adoc +++ b/rules/S1126/java/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1126/javascript/rule.adoc b/rules/S1126/javascript/rule.adoc index cf87f1f268..dddb6bc440 100644 --- a/rules/S1126/javascript/rule.adoc +++ b/rules/S1126/javascript/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1126/php/rule.adoc b/rules/S1126/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1126/php/rule.adoc +++ b/rules/S1126/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1126/plsql/rule.adoc b/rules/S1126/plsql/rule.adoc index 254d000eb2..e730905c44 100644 --- a/rules/S1126/plsql/rule.adoc +++ b/rules/S1126/plsql/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1126/vb6/rule.adoc b/rules/S1126/vb6/rule.adoc index ea4cf9fa43..6d93d31400 100644 --- a/rules/S1126/vb6/rule.adoc +++ b/rules/S1126/vb6/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1128/css/rule.adoc b/rules/S1128/css/rule.adoc index 6143ae7e77..61d3bf9e83 100644 --- a/rules/S1128/css/rule.adoc +++ b/rules/S1128/css/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1128/java/rule.adoc b/rules/S1128/java/rule.adoc index 998250366b..1b37c82440 100644 --- a/rules/S1128/java/rule.adoc +++ b/rules/S1128/java/rule.adoc @@ -21,4 +21,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1128/kotlin/rule.adoc b/rules/S1128/kotlin/rule.adoc index a94a1c5fb0..b958f28db0 100644 --- a/rules/S1128/kotlin/rule.adoc +++ b/rules/S1128/kotlin/rule.adoc @@ -59,4 +59,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S113/cfamily/rule.adoc b/rules/S113/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S113/cfamily/rule.adoc +++ b/rules/S113/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S113/csharp/rule.adoc b/rules/S113/csharp/rule.adoc index 313e9d0540..f3f38fec69 100644 --- a/rules/S113/csharp/rule.adoc +++ b/rules/S113/csharp/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S113/java/rule.adoc b/rules/S113/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S113/java/rule.adoc +++ b/rules/S113/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S113/javascript/rule.adoc b/rules/S113/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S113/javascript/rule.adoc +++ b/rules/S113/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S113/php/rule.adoc b/rules/S113/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S113/php/rule.adoc +++ b/rules/S113/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S113/python/rule.adoc b/rules/S113/python/rule.adoc index c81c87c0aa..8250bf1b73 100644 --- a/rules/S113/python/rule.adoc +++ b/rules/S113/python/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S113/swift/rule.adoc b/rules/S113/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S113/swift/rule.adoc +++ b/rules/S113/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1131/cfamily/rule.adoc b/rules/S1131/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1131/cfamily/rule.adoc +++ b/rules/S1131/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1131/javascript/rule.adoc b/rules/S1131/javascript/rule.adoc index 3ed7deffbd..63c369cfeb 100644 --- a/rules/S1131/javascript/rule.adoc +++ b/rules/S1131/javascript/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1131/plsql/rule.adoc b/rules/S1131/plsql/rule.adoc index 4db671341e..8a12e41f0d 100644 --- a/rules/S1131/plsql/rule.adoc +++ b/rules/S1131/plsql/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1131/python/rule.adoc b/rules/S1131/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1131/python/rule.adoc +++ b/rules/S1131/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1131/swift/rule.adoc b/rules/S1131/swift/rule.adoc index e70037f88c..4f18464f4f 100644 --- a/rules/S1131/swift/rule.adoc +++ b/rules/S1131/swift/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1131/vb6/rule.adoc b/rules/S1131/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1131/vb6/rule.adoc +++ b/rules/S1131/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1133/cfamily/rule.adoc b/rules/S1133/cfamily/rule.adoc index 91bf99071c..8ceda7dbc2 100644 --- a/rules/S1133/cfamily/rule.adoc +++ b/rules/S1133/cfamily/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1133/csharp/rule.adoc b/rules/S1133/csharp/rule.adoc index c9a8cdcacb..e01adf3a5d 100644 --- a/rules/S1133/csharp/rule.adoc +++ b/rules/S1133/csharp/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1133/java/rule.adoc b/rules/S1133/java/rule.adoc index 8eca63c153..076a374867 100644 --- a/rules/S1133/java/rule.adoc +++ b/rules/S1133/java/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1133/swift/rule.adoc b/rules/S1133/swift/rule.adoc index 25833d327d..3016f47a0d 100644 --- a/rules/S1133/swift/rule.adoc +++ b/rules/S1133/swift/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1133/vbnet/rule.adoc b/rules/S1133/vbnet/rule.adoc index c6094fcf70..4a09f742f2 100644 --- a/rules/S1133/vbnet/rule.adoc +++ b/rules/S1133/vbnet/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/apex/rule.adoc b/rules/S1135/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1135/apex/rule.adoc +++ b/rules/S1135/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/cfamily/rule.adoc b/rules/S1135/cfamily/rule.adoc index 7630d8d51e..e5da48dced 100644 --- a/rules/S1135/cfamily/rule.adoc +++ b/rules/S1135/cfamily/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/cloudformation/rule.adoc b/rules/S1135/cloudformation/rule.adoc index 44681277ac..031ae7202d 100644 --- a/rules/S1135/cloudformation/rule.adoc +++ b/rules/S1135/cloudformation/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/cobol/rule.adoc b/rules/S1135/cobol/rule.adoc index ae8f220138..86f4292ca6 100644 --- a/rules/S1135/cobol/rule.adoc +++ b/rules/S1135/cobol/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/csharp/rule.adoc b/rules/S1135/csharp/rule.adoc index d854747171..23ead9d203 100644 --- a/rules/S1135/csharp/rule.adoc +++ b/rules/S1135/csharp/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/docker/rule.adoc b/rules/S1135/docker/rule.adoc index bd69b4ac48..8b3a57589b 100644 --- a/rules/S1135/docker/rule.adoc +++ b/rules/S1135/docker/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/flex/rule.adoc b/rules/S1135/flex/rule.adoc index 6172f34806..43bfb0cf17 100644 --- a/rules/S1135/flex/rule.adoc +++ b/rules/S1135/flex/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/go/rule.adoc b/rules/S1135/go/rule.adoc index 3e63852e89..affe08646a 100644 --- a/rules/S1135/go/rule.adoc +++ b/rules/S1135/go/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/html/rule.adoc b/rules/S1135/html/rule.adoc index 7d2b765717..4b97c53b36 100644 --- a/rules/S1135/html/rule.adoc +++ b/rules/S1135/html/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/java/rule.adoc b/rules/S1135/java/rule.adoc index 57591a7890..b2e6bebe38 100644 --- a/rules/S1135/java/rule.adoc +++ b/rules/S1135/java/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/javascript/rule.adoc b/rules/S1135/javascript/rule.adoc index 5a667cea2c..2d51d9b3f2 100644 --- a/rules/S1135/javascript/rule.adoc +++ b/rules/S1135/javascript/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/kotlin/rule.adoc b/rules/S1135/kotlin/rule.adoc index 6a5794f13e..7e32e315c1 100644 --- a/rules/S1135/kotlin/rule.adoc +++ b/rules/S1135/kotlin/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/kubernetes/rule.adoc b/rules/S1135/kubernetes/rule.adoc index 28cd35c2ca..ab72e3078e 100644 --- a/rules/S1135/kubernetes/rule.adoc +++ b/rules/S1135/kubernetes/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/php/rule.adoc b/rules/S1135/php/rule.adoc index 5b90deb7b9..e14f364d9d 100644 --- a/rules/S1135/php/rule.adoc +++ b/rules/S1135/php/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/plsql/rule.adoc b/rules/S1135/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1135/plsql/rule.adoc +++ b/rules/S1135/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/python/rule.adoc b/rules/S1135/python/rule.adoc index 1bee919006..ceaed7a299 100644 --- a/rules/S1135/python/rule.adoc +++ b/rules/S1135/python/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/ruby/rule.adoc b/rules/S1135/ruby/rule.adoc index 823fd28c73..180e08cce1 100644 --- a/rules/S1135/ruby/rule.adoc +++ b/rules/S1135/ruby/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/scala/rule.adoc b/rules/S1135/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1135/scala/rule.adoc +++ b/rules/S1135/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/swift/rule.adoc b/rules/S1135/swift/rule.adoc index 07ed16e7bf..fb6d822a4d 100644 --- a/rules/S1135/swift/rule.adoc +++ b/rules/S1135/swift/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/terraform/rule.adoc b/rules/S1135/terraform/rule.adoc index ab1ad433e0..6616d43f04 100644 --- a/rules/S1135/terraform/rule.adoc +++ b/rules/S1135/terraform/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/tsql/rule.adoc b/rules/S1135/tsql/rule.adoc index e086aec689..db1c418c81 100644 --- a/rules/S1135/tsql/rule.adoc +++ b/rules/S1135/tsql/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/vb6/rule.adoc b/rules/S1135/vb6/rule.adoc index d30838e6b0..3e3c5c81bf 100644 --- a/rules/S1135/vb6/rule.adoc +++ b/rules/S1135/vb6/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/vbnet/rule.adoc b/rules/S1135/vbnet/rule.adoc index c44e993fcd..fc8199b554 100644 --- a/rules/S1135/vbnet/rule.adoc +++ b/rules/S1135/vbnet/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1135/xml/rule.adoc b/rules/S1135/xml/rule.adoc index c6084a0bf7..30d53c3a94 100644 --- a/rules/S1135/xml/rule.adoc +++ b/rules/S1135/xml/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1138/abap/rule.adoc b/rules/S1138/abap/rule.adoc index 685cda1202..31b74b5b36 100644 --- a/rules/S1138/abap/rule.adoc +++ b/rules/S1138/abap/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1138/cobol/rule.adoc b/rules/S1138/cobol/rule.adoc index 8ac6ae7955..a709f48361 100644 --- a/rules/S1138/cobol/rule.adoc +++ b/rules/S1138/cobol/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1138/plsql/rule.adoc b/rules/S1138/plsql/rule.adoc index 41b1c2881d..0b0637a407 100644 --- a/rules/S1138/plsql/rule.adoc +++ b/rules/S1138/plsql/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S114/abap/rule.adoc b/rules/S114/abap/rule.adoc index d76d3b3ead..cbef998ddb 100644 --- a/rules/S114/abap/rule.adoc +++ b/rules/S114/abap/rule.adoc @@ -49,4 +49,5 @@ Regular expression used to check the interface names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S114/java/rule.adoc b/rules/S114/java/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S114/java/rule.adoc +++ b/rules/S114/java/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S114/php/rule.adoc b/rules/S114/php/rule.adoc index 3e69859d9d..ac672f7696 100644 --- a/rules/S114/php/rule.adoc +++ b/rules/S114/php/rule.adoc @@ -33,4 +33,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S114/swift/rule.adoc b/rules/S114/swift/rule.adoc index 8b41c1719c..8658b8ed79 100644 --- a/rules/S114/swift/rule.adoc +++ b/rules/S114/swift/rule.adoc @@ -48,4 +48,5 @@ Regular expression used to check the protocol names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S114/vbnet/rule.adoc b/rules/S114/vbnet/rule.adoc index aa1030be33..2bd82c768d 100644 --- a/rules/S114/vbnet/rule.adoc +++ b/rules/S114/vbnet/rule.adoc @@ -58,4 +58,5 @@ Regular expression used to check the interface names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1141/cfamily/rule.adoc b/rules/S1141/cfamily/rule.adoc index 93a32adc65..f6f09438dc 100644 --- a/rules/S1141/cfamily/rule.adoc +++ b/rules/S1141/cfamily/rule.adoc @@ -57,4 +57,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1141/java/rule.adoc b/rules/S1141/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1141/java/rule.adoc +++ b/rules/S1141/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1142/cfamily/rule.adoc b/rules/S1142/cfamily/rule.adoc index a70dabee0e..20c6933703 100644 --- a/rules/S1142/cfamily/rule.adoc +++ b/rules/S1142/cfamily/rule.adoc @@ -79,4 +79,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1142/flex/rule.adoc b/rules/S1142/flex/rule.adoc index ef1cf78b48..38d5d05787 100644 --- a/rules/S1142/flex/rule.adoc +++ b/rules/S1142/flex/rule.adoc @@ -39,4 +39,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1142/java/rule.adoc b/rules/S1142/java/rule.adoc index eb6b52f4cb..2a4d4be9ee 100644 --- a/rules/S1142/java/rule.adoc +++ b/rules/S1142/java/rule.adoc @@ -50,4 +50,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1142/php/rule.adoc b/rules/S1142/php/rule.adoc index 29336dec80..964bbfc678 100644 --- a/rules/S1142/php/rule.adoc +++ b/rules/S1142/php/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1142/python/rule.adoc b/rules/S1142/python/rule.adoc index 833a46258e..bc313eeb5c 100644 --- a/rules/S1142/python/rule.adoc +++ b/rules/S1142/python/rule.adoc @@ -46,4 +46,5 @@ message should be one of: (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1142/swift/rule.adoc b/rules/S1142/swift/rule.adoc index e35c0ab5be..baf9ab33dd 100644 --- a/rules/S1142/swift/rule.adoc +++ b/rules/S1142/swift/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1143/cfamily/rule.adoc b/rules/S1143/cfamily/rule.adoc index 0e1d653712..6388c4570a 100644 --- a/rules/S1143/cfamily/rule.adoc +++ b/rules/S1143/cfamily/rule.adoc @@ -57,4 +57,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1143/java/rule.adoc b/rules/S1143/java/rule.adoc index 1853771d09..b4a4440b17 100644 --- a/rules/S1143/java/rule.adoc +++ b/rules/S1143/java/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1143/javascript/rule.adoc b/rules/S1143/javascript/rule.adoc index 66bddf1a60..fb11f4cf70 100644 --- a/rules/S1143/javascript/rule.adoc +++ b/rules/S1143/javascript/rule.adoc @@ -56,4 +56,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1143/kotlin/rule.adoc b/rules/S1143/kotlin/rule.adoc index cf1f2012fe..f726b1e24a 100644 --- a/rules/S1143/kotlin/rule.adoc +++ b/rules/S1143/kotlin/rule.adoc @@ -90,4 +90,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1144/apex/rule.adoc b/rules/S1144/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1144/apex/rule.adoc +++ b/rules/S1144/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1144/cfamily/rule.adoc b/rules/S1144/cfamily/rule.adoc index d3aa8e10db..7bc1f085c6 100644 --- a/rules/S1144/cfamily/rule.adoc +++ b/rules/S1144/cfamily/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1144/flex/rule.adoc b/rules/S1144/flex/rule.adoc index e29d052b98..1b0d90cabb 100644 --- a/rules/S1144/flex/rule.adoc +++ b/rules/S1144/flex/rule.adoc @@ -46,4 +46,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1144/java/rule.adoc b/rules/S1144/java/rule.adoc index 403161a35e..e594d63e81 100644 --- a/rules/S1144/java/rule.adoc +++ b/rules/S1144/java/rule.adoc @@ -60,4 +60,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1144/kotlin/rule.adoc b/rules/S1144/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1144/kotlin/rule.adoc +++ b/rules/S1144/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1144/php/rule.adoc b/rules/S1144/php/rule.adoc index 3562d8c71d..8e994c1832 100644 --- a/rules/S1144/php/rule.adoc +++ b/rules/S1144/php/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1144/python/rule.adoc b/rules/S1144/python/rule.adoc index b8d17f15ba..c50ceb41d5 100644 --- a/rules/S1144/python/rule.adoc +++ b/rules/S1144/python/rule.adoc @@ -72,4 +72,5 @@ Remove this unused class-private "XXXX" method (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1144/scala/rule.adoc b/rules/S1144/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1144/scala/rule.adoc +++ b/rules/S1144/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1144/swift/rule.adoc b/rules/S1144/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1144/swift/rule.adoc +++ b/rules/S1144/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/abap/rule.adoc b/rules/S1145/abap/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1145/abap/rule.adoc +++ b/rules/S1145/abap/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/apex/rule.adoc b/rules/S1145/apex/rule.adoc index 06664dcc10..e1dcb8f444 100644 --- a/rules/S1145/apex/rule.adoc +++ b/rules/S1145/apex/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/cfamily/rule.adoc b/rules/S1145/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1145/cfamily/rule.adoc +++ b/rules/S1145/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/csharp/rule.adoc b/rules/S1145/csharp/rule.adoc index 3593e20620..f374ebf738 100644 --- a/rules/S1145/csharp/rule.adoc +++ b/rules/S1145/csharp/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/flex/rule.adoc b/rules/S1145/flex/rule.adoc index d35fb9aaaa..fab4700b9e 100644 --- a/rules/S1145/flex/rule.adoc +++ b/rules/S1145/flex/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/go/rule.adoc b/rules/S1145/go/rule.adoc index c1c886b024..d7f6a52f32 100644 --- a/rules/S1145/go/rule.adoc +++ b/rules/S1145/go/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/java/rule.adoc b/rules/S1145/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1145/java/rule.adoc +++ b/rules/S1145/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/kotlin/rule.adoc b/rules/S1145/kotlin/rule.adoc index 31079fc69d..501b8d2bca 100644 --- a/rules/S1145/kotlin/rule.adoc +++ b/rules/S1145/kotlin/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/pli/rule.adoc b/rules/S1145/pli/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1145/pli/rule.adoc +++ b/rules/S1145/pli/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/plsql/rule.adoc b/rules/S1145/plsql/rule.adoc index 80ae768d83..efe95be5c8 100644 --- a/rules/S1145/plsql/rule.adoc +++ b/rules/S1145/plsql/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/python/rule.adoc b/rules/S1145/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1145/python/rule.adoc +++ b/rules/S1145/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/rpg/rule.adoc b/rules/S1145/rpg/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1145/rpg/rule.adoc +++ b/rules/S1145/rpg/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/ruby/rule.adoc b/rules/S1145/ruby/rule.adoc index 2d8ece10cb..cf1ead734c 100644 --- a/rules/S1145/ruby/rule.adoc +++ b/rules/S1145/ruby/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/scala/rule.adoc b/rules/S1145/scala/rule.adoc index 72af233b67..c33e723fe1 100644 --- a/rules/S1145/scala/rule.adoc +++ b/rules/S1145/scala/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/swift/rule.adoc b/rules/S1145/swift/rule.adoc index e3b203e05a..b2d0d9ab68 100644 --- a/rules/S1145/swift/rule.adoc +++ b/rules/S1145/swift/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/vb6/rule.adoc b/rules/S1145/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1145/vb6/rule.adoc +++ b/rules/S1145/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1145/vbnet/rule.adoc b/rules/S1145/vbnet/rule.adoc index 7a0e9b961b..a3df70281c 100644 --- a/rules/S1145/vbnet/rule.adoc +++ b/rules/S1145/vbnet/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1147/csharp/rule.adoc b/rules/S1147/csharp/rule.adoc index 6b0eba2c38..7f668ee620 100644 --- a/rules/S1147/csharp/rule.adoc +++ b/rules/S1147/csharp/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1147/pli/rule.adoc b/rules/S1147/pli/rule.adoc index 9e61b03d1d..9de5f453c0 100644 --- a/rules/S1147/pli/rule.adoc +++ b/rules/S1147/pli/rule.adoc @@ -23,4 +23,5 @@ Remove this "STOP" statement (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S115/flex/rule.adoc b/rules/S115/flex/rule.adoc index 39955ca0b5..b6f90a368d 100644 --- a/rules/S115/flex/rule.adoc +++ b/rules/S115/flex/rule.adoc @@ -33,4 +33,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S115/java/rule.adoc b/rules/S115/java/rule.adoc index adbc54e91f..a55e7c6886 100644 --- a/rules/S115/java/rule.adoc +++ b/rules/S115/java/rule.adoc @@ -45,4 +45,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S115/php/rule.adoc b/rules/S115/php/rule.adoc index 32c6aab007..ea9633f4cb 100644 --- a/rules/S115/php/rule.adoc +++ b/rules/S115/php/rule.adoc @@ -41,4 +41,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S115/plsql/rule.adoc b/rules/S115/plsql/rule.adoc index 0c1ab0fa87..eb2e2e3901 100644 --- a/rules/S115/plsql/rule.adoc +++ b/rules/S115/plsql/rule.adoc @@ -54,4 +54,5 @@ The regular expression the name should match. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S115/vb6/rule.adoc b/rules/S115/vb6/rule.adoc index 313287b754..7c84223602 100644 --- a/rules/S115/vb6/rule.adoc +++ b/rules/S115/vb6/rule.adoc @@ -33,4 +33,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/abap/rule.adoc b/rules/S1151/abap/rule.adoc index f2ce709ff4..5ce59243ff 100644 --- a/rules/S1151/abap/rule.adoc +++ b/rules/S1151/abap/rule.adoc @@ -55,4 +55,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/apex/rule.adoc b/rules/S1151/apex/rule.adoc index 5c2e53ab8f..5e5c33ed0d 100644 --- a/rules/S1151/apex/rule.adoc +++ b/rules/S1151/apex/rule.adoc @@ -58,4 +58,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/cfamily/rule.adoc b/rules/S1151/cfamily/rule.adoc index d0d104bc2f..570fa41afe 100644 --- a/rules/S1151/cfamily/rule.adoc +++ b/rules/S1151/cfamily/rule.adoc @@ -77,4 +77,5 @@ Maximum Number of Lines (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/csharp/rule.adoc b/rules/S1151/csharp/rule.adoc index 021ef6a55f..fb4068c875 100644 --- a/rules/S1151/csharp/rule.adoc +++ b/rules/S1151/csharp/rule.adoc @@ -81,4 +81,5 @@ Maximum number of lines of code (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/flex/rule.adoc b/rules/S1151/flex/rule.adoc index b9de2b3aff..a1f4649f7b 100644 --- a/rules/S1151/flex/rule.adoc +++ b/rules/S1151/flex/rule.adoc @@ -55,4 +55,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/go/rule.adoc b/rules/S1151/go/rule.adoc index 76b158144c..4d3ba37832 100644 --- a/rules/S1151/go/rule.adoc +++ b/rules/S1151/go/rule.adoc @@ -61,4 +61,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/java/rule.adoc b/rules/S1151/java/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1151/java/rule.adoc +++ b/rules/S1151/java/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/kotlin/rule.adoc b/rules/S1151/kotlin/rule.adoc index d1db1aa768..1a5a2b1c0d 100644 --- a/rules/S1151/kotlin/rule.adoc +++ b/rules/S1151/kotlin/rule.adoc @@ -58,4 +58,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/php/rule.adoc b/rules/S1151/php/rule.adoc index 668642a539..93ecad61c7 100644 --- a/rules/S1151/php/rule.adoc +++ b/rules/S1151/php/rule.adoc @@ -67,4 +67,5 @@ Maximum number of lines of code (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/plsql/rule.adoc b/rules/S1151/plsql/rule.adoc index 70149ee91f..d3ce946574 100644 --- a/rules/S1151/plsql/rule.adoc +++ b/rules/S1151/plsql/rule.adoc @@ -57,4 +57,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/rpg/rule.adoc b/rules/S1151/rpg/rule.adoc index 9ee566ec4f..dbd43fe996 100644 --- a/rules/S1151/rpg/rule.adoc +++ b/rules/S1151/rpg/rule.adoc @@ -73,4 +73,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/ruby/rule.adoc b/rules/S1151/ruby/rule.adoc index da6724a256..d7df4ef49b 100644 --- a/rules/S1151/ruby/rule.adoc +++ b/rules/S1151/ruby/rule.adoc @@ -57,4 +57,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/scala/rule.adoc b/rules/S1151/scala/rule.adoc index 12a8552e56..14faa5c05b 100644 --- a/rules/S1151/scala/rule.adoc +++ b/rules/S1151/scala/rule.adoc @@ -54,4 +54,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/swift/rule.adoc b/rules/S1151/swift/rule.adoc index 4621002cb5..b2b3bbcfa2 100644 --- a/rules/S1151/swift/rule.adoc +++ b/rules/S1151/swift/rule.adoc @@ -55,4 +55,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/tsql/rule.adoc b/rules/S1151/tsql/rule.adoc index e186058602..66547edee4 100644 --- a/rules/S1151/tsql/rule.adoc +++ b/rules/S1151/tsql/rule.adoc @@ -64,4 +64,5 @@ Maximum number of lines of code (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/vb6/rule.adoc b/rules/S1151/vb6/rule.adoc index 84f9567dff..596255d542 100644 --- a/rules/S1151/vb6/rule.adoc +++ b/rules/S1151/vb6/rule.adoc @@ -53,4 +53,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1151/vbnet/rule.adoc b/rules/S1151/vbnet/rule.adoc index 5b66b81460..71bcfadc95 100644 --- a/rules/S1151/vbnet/rule.adoc +++ b/rules/S1151/vbnet/rule.adoc @@ -65,4 +65,5 @@ Maximum number of lines of code (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1155/cfamily/rule.adoc b/rules/S1155/cfamily/rule.adoc index 5c67f2b872..fa87f753aa 100644 --- a/rules/S1155/cfamily/rule.adoc +++ b/rules/S1155/cfamily/rule.adoc @@ -44,4 +44,5 @@ Use empty() or is_empty() to check whether the container is empty or not. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1155/java/rule.adoc b/rules/S1155/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1155/java/rule.adoc +++ b/rules/S1155/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1155/php/rule.adoc b/rules/S1155/php/rule.adoc index e743081de6..2eead136fb 100644 --- a/rules/S1155/php/rule.adoc +++ b/rules/S1155/php/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S116/cfamily/rule.adoc b/rules/S116/cfamily/rule.adoc index 077491008f..7f597bdd2f 100644 --- a/rules/S116/cfamily/rule.adoc +++ b/rules/S116/cfamily/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S116/csharp/rule.adoc b/rules/S116/csharp/rule.adoc index 61dc9d392c..4a28298887 100644 --- a/rules/S116/csharp/rule.adoc +++ b/rules/S116/csharp/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S116/flex/rule.adoc b/rules/S116/flex/rule.adoc index e9086f23cc..abae7bffde 100644 --- a/rules/S116/flex/rule.adoc +++ b/rules/S116/flex/rule.adoc @@ -48,4 +48,5 @@ Regular expression used to check the field names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S116/java/rule.adoc b/rules/S116/java/rule.adoc index 015af54146..f4cc3e822b 100644 --- a/rules/S116/java/rule.adoc +++ b/rules/S116/java/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S116/php/rule.adoc b/rules/S116/php/rule.adoc index d91346167c..305e504be7 100644 --- a/rules/S116/php/rule.adoc +++ b/rules/S116/php/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S116/python/rule.adoc b/rules/S116/python/rule.adoc index e667b2c10e..cfa1659eac 100644 --- a/rules/S116/python/rule.adoc +++ b/rules/S116/python/rule.adoc @@ -46,4 +46,5 @@ Regular expression used to check the field names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S116/swift/rule.adoc b/rules/S116/swift/rule.adoc index c82177837c..0a932e7ae9 100644 --- a/rules/S116/swift/rule.adoc +++ b/rules/S116/swift/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1164/csharp/rule.adoc b/rules/S1164/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S1164/csharp/rule.adoc +++ b/rules/S1164/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1164/java/rule.adoc b/rules/S1164/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S1164/java/rule.adoc +++ b/rules/S1164/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1166/abap/rule.adoc b/rules/S1166/abap/rule.adoc index b58d1d4f91..27e2b068da 100644 --- a/rules/S1166/abap/rule.adoc +++ b/rules/S1166/abap/rule.adoc @@ -51,4 +51,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1166/java/rule.adoc b/rules/S1166/java/rule.adoc index 6aa0e04393..eb8f1f89b0 100644 --- a/rules/S1166/java/rule.adoc +++ b/rules/S1166/java/rule.adoc @@ -30,4 +30,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1166/plsql/rule.adoc b/rules/S1166/plsql/rule.adoc index e5d75b6c95..4fe8232606 100644 --- a/rules/S1166/plsql/rule.adoc +++ b/rules/S1166/plsql/rule.adoc @@ -60,4 +60,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1168/csharp/rule.adoc b/rules/S1168/csharp/rule.adoc index c1cbf59b2c..580af5790e 100644 --- a/rules/S1168/csharp/rule.adoc +++ b/rules/S1168/csharp/rule.adoc @@ -83,4 +83,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1168/java/rule.adoc b/rules/S1168/java/rule.adoc index 340a3f2dbf..e7635d649e 100644 --- a/rules/S1168/java/rule.adoc +++ b/rules/S1168/java/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/apex/rule.adoc b/rules/S117/apex/rule.adoc index 04221f269c..7b3472436b 100644 --- a/rules/S117/apex/rule.adoc +++ b/rules/S117/apex/rule.adoc @@ -39,4 +39,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/cfamily/rule.adoc b/rules/S117/cfamily/rule.adoc index 91c556e83f..311ea59a9f 100644 --- a/rules/S117/cfamily/rule.adoc +++ b/rules/S117/cfamily/rule.adoc @@ -55,4 +55,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/flex/rule.adoc b/rules/S117/flex/rule.adoc index fcf34add5f..dd81796bac 100644 --- a/rules/S117/flex/rule.adoc +++ b/rules/S117/flex/rule.adoc @@ -52,4 +52,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/go/rule.adoc b/rules/S117/go/rule.adoc index 71a55c2527..5c003be81c 100644 --- a/rules/S117/go/rule.adoc +++ b/rules/S117/go/rule.adoc @@ -39,4 +39,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/java/rule.adoc b/rules/S117/java/rule.adoc index 4c5129ab72..5bc52efb85 100644 --- a/rules/S117/java/rule.adoc +++ b/rules/S117/java/rule.adoc @@ -70,4 +70,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/javascript/rule.adoc b/rules/S117/javascript/rule.adoc index 4c12463830..833311db94 100644 --- a/rules/S117/javascript/rule.adoc +++ b/rules/S117/javascript/rule.adoc @@ -47,4 +47,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/kotlin/rule.adoc b/rules/S117/kotlin/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S117/kotlin/rule.adoc +++ b/rules/S117/kotlin/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/php/rule.adoc b/rules/S117/php/rule.adoc index 0c0e605b74..cd6b83e6b5 100644 --- a/rules/S117/php/rule.adoc +++ b/rules/S117/php/rule.adoc @@ -50,4 +50,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/plsql/rule.adoc b/rules/S117/plsql/rule.adoc index 2c6c6103b2..dc815e96e8 100644 --- a/rules/S117/plsql/rule.adoc +++ b/rules/S117/plsql/rule.adoc @@ -46,4 +46,5 @@ The regular expression the name should match (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/python/rule.adoc b/rules/S117/python/rule.adoc index ef8336bf40..4e2014e276 100644 --- a/rules/S117/python/rule.adoc +++ b/rules/S117/python/rule.adoc @@ -37,4 +37,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/ruby/rule.adoc b/rules/S117/ruby/rule.adoc index 5764e81ecc..2ec4615f98 100644 --- a/rules/S117/ruby/rule.adoc +++ b/rules/S117/ruby/rule.adoc @@ -17,4 +17,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/scala/rule.adoc b/rules/S117/scala/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S117/scala/rule.adoc +++ b/rules/S117/scala/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/swift/rule.adoc b/rules/S117/swift/rule.adoc index f233bb0b9b..51ae7d412c 100644 --- a/rules/S117/swift/rule.adoc +++ b/rules/S117/swift/rule.adoc @@ -26,4 +26,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/tsql/rule.adoc b/rules/S117/tsql/rule.adoc index 37801c1921..d0c8bdbd51 100644 --- a/rules/S117/tsql/rule.adoc +++ b/rules/S117/tsql/rule.adoc @@ -42,4 +42,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S117/vbnet/rule.adoc b/rules/S117/vbnet/rule.adoc index ab9bee6156..b6bb81a2b0 100644 --- a/rules/S117/vbnet/rule.adoc +++ b/rules/S117/vbnet/rule.adoc @@ -63,4 +63,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1170/flex/rule.adoc b/rules/S1170/flex/rule.adoc index 09a6e97ffc..3b056f596f 100644 --- a/rules/S1170/flex/rule.adoc +++ b/rules/S1170/flex/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1170/java/rule.adoc b/rules/S1170/java/rule.adoc index ba51358f09..fffce437e7 100644 --- a/rules/S1170/java/rule.adoc +++ b/rules/S1170/java/rule.adoc @@ -46,4 +46,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/apex/rule.adoc b/rules/S1172/apex/rule.adoc index bfb27260ac..b854854fd9 100644 --- a/rules/S1172/apex/rule.adoc +++ b/rules/S1172/apex/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/cfamily/rule.adoc b/rules/S1172/cfamily/rule.adoc index f0dfaefd57..76642e6fbc 100644 --- a/rules/S1172/cfamily/rule.adoc +++ b/rules/S1172/cfamily/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/flex/rule.adoc b/rules/S1172/flex/rule.adoc index 4ad4ece6de..9c0ecc129a 100644 --- a/rules/S1172/flex/rule.adoc +++ b/rules/S1172/flex/rule.adoc @@ -75,4 +75,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/go/rule.adoc b/rules/S1172/go/rule.adoc index 3a7c2ecd59..77b62c91cb 100644 --- a/rules/S1172/go/rule.adoc +++ b/rules/S1172/go/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/java/rule.adoc b/rules/S1172/java/rule.adoc index 2f48c74c53..bcd151ad47 100644 --- a/rules/S1172/java/rule.adoc +++ b/rules/S1172/java/rule.adoc @@ -78,4 +78,5 @@ Remove the unused method parameter(s) "{}". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/kotlin/rule.adoc b/rules/S1172/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1172/kotlin/rule.adoc +++ b/rules/S1172/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/php/rule.adoc b/rules/S1172/php/rule.adoc index 8f4a8e51b0..f2f07d9075 100644 --- a/rules/S1172/php/rule.adoc +++ b/rules/S1172/php/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/plsql/rule.adoc b/rules/S1172/plsql/rule.adoc index 6c2377d47e..78d3a5eb12 100644 --- a/rules/S1172/plsql/rule.adoc +++ b/rules/S1172/plsql/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/python/rule.adoc b/rules/S1172/python/rule.adoc index 4408c6466b..5de8d93e0f 100644 --- a/rules/S1172/python/rule.adoc +++ b/rules/S1172/python/rule.adoc @@ -54,4 +54,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/ruby/rule.adoc b/rules/S1172/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1172/ruby/rule.adoc +++ b/rules/S1172/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/scala/rule.adoc b/rules/S1172/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1172/scala/rule.adoc +++ b/rules/S1172/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/swift/rule.adoc b/rules/S1172/swift/rule.adoc index e421e08b10..c2ced16299 100644 --- a/rules/S1172/swift/rule.adoc +++ b/rules/S1172/swift/rule.adoc @@ -46,4 +46,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/tsql/rule.adoc b/rules/S1172/tsql/rule.adoc index f91d259c67..c7234c027d 100644 --- a/rules/S1172/tsql/rule.adoc +++ b/rules/S1172/tsql/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1172/vbnet/rule.adoc b/rules/S1172/vbnet/rule.adoc index 4dcfec4022..09a4805019 100644 --- a/rules/S1172/vbnet/rule.adoc +++ b/rules/S1172/vbnet/rule.adoc @@ -60,4 +60,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1176/flex/rule.adoc b/rules/S1176/flex/rule.adoc index f63bc65974..f86dbbd384 100644 --- a/rules/S1176/flex/rule.adoc +++ b/rules/S1176/flex/rule.adoc @@ -130,4 +130,5 @@ All return type of public methods should be documented (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1176/java/rule.adoc b/rules/S1176/java/rule.adoc index 003810cad4..4c5a919457 100644 --- a/rules/S1176/java/rule.adoc +++ b/rules/S1176/java/rule.adoc @@ -160,4 +160,5 @@ Pattern of classes which should adhere to this constraint. Ex : **/api/** (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1176/php/rule.adoc b/rules/S1176/php/rule.adoc index e2a2f0be43..b7edacf7a2 100644 --- a/rules/S1176/php/rule.adoc +++ b/rules/S1176/php/rule.adoc @@ -184,4 +184,5 @@ Require that variable documentation contain an "@var" tag (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1181/java/rule.adoc b/rules/S1181/java/rule.adoc index be1465262a..b176612880 100644 --- a/rules/S1181/java/rule.adoc +++ b/rules/S1181/java/rule.adoc @@ -46,4 +46,5 @@ Catch Exception instead of [Throwable|Error] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1185/cfamily/rule.adoc b/rules/S1185/cfamily/rule.adoc index 73b4c6cdb5..a1a78187d4 100644 --- a/rules/S1185/cfamily/rule.adoc +++ b/rules/S1185/cfamily/rule.adoc @@ -106,4 +106,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1185/flex/rule.adoc b/rules/S1185/flex/rule.adoc index dce48f5f94..93d9b6b5fe 100644 --- a/rules/S1185/flex/rule.adoc +++ b/rules/S1185/flex/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1185/java/rule.adoc b/rules/S1185/java/rule.adoc index fb6cf05320..c71dfa547f 100644 --- a/rules/S1185/java/rule.adoc +++ b/rules/S1185/java/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1185/php/rule.adoc b/rules/S1185/php/rule.adoc index fcf66dd40a..ecc661c45a 100644 --- a/rules/S1185/php/rule.adoc +++ b/rules/S1185/php/rule.adoc @@ -66,4 +66,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/apex/rule.adoc b/rules/S1186/apex/rule.adoc index 520eac3479..068dc7966a 100644 --- a/rules/S1186/apex/rule.adoc +++ b/rules/S1186/apex/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/cfamily/rule.adoc b/rules/S1186/cfamily/rule.adoc index 2aafd48ddd..5cf757037f 100644 --- a/rules/S1186/cfamily/rule.adoc +++ b/rules/S1186/cfamily/rule.adoc @@ -55,4 +55,5 @@ Add a nested comment explaining why this method is empty, or complete the implem (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/flex/rule.adoc b/rules/S1186/flex/rule.adoc index c37f38adec..28ff143d9a 100644 --- a/rules/S1186/flex/rule.adoc +++ b/rules/S1186/flex/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/go/rule.adoc b/rules/S1186/go/rule.adoc index 9d0debf013..c1d00a76c3 100644 --- a/rules/S1186/go/rule.adoc +++ b/rules/S1186/go/rule.adoc @@ -35,4 +35,5 @@ Add a nested comment explaining why this function is empty or complete the imple (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/java/rule.adoc b/rules/S1186/java/rule.adoc index a35757819b..276dd9b41a 100644 --- a/rules/S1186/java/rule.adoc +++ b/rules/S1186/java/rule.adoc @@ -64,4 +64,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/javascript/rule.adoc b/rules/S1186/javascript/rule.adoc index a23e13f742..a1bb16f6e7 100644 --- a/rules/S1186/javascript/rule.adoc +++ b/rules/S1186/javascript/rule.adoc @@ -61,4 +61,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/kotlin/rule.adoc b/rules/S1186/kotlin/rule.adoc index 8d029bdd06..8f3528960a 100644 --- a/rules/S1186/kotlin/rule.adoc +++ b/rules/S1186/kotlin/rule.adoc @@ -20,4 +20,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/php/rule.adoc b/rules/S1186/php/rule.adoc index 111a7e4beb..4bfc244122 100644 --- a/rules/S1186/php/rule.adoc +++ b/rules/S1186/php/rule.adoc @@ -54,4 +54,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/python/rule.adoc b/rules/S1186/python/rule.adoc index 9c0b00a375..1a1625f09b 100644 --- a/rules/S1186/python/rule.adoc +++ b/rules/S1186/python/rule.adoc @@ -88,4 +88,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/ruby/rule.adoc b/rules/S1186/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1186/ruby/rule.adoc +++ b/rules/S1186/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/scala/rule.adoc b/rules/S1186/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1186/scala/rule.adoc +++ b/rules/S1186/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/swift/rule.adoc b/rules/S1186/swift/rule.adoc index f8d2598433..ae9a507adb 100644 --- a/rules/S1186/swift/rule.adoc +++ b/rules/S1186/swift/rule.adoc @@ -51,4 +51,5 @@ Add a nested comment explaining why this [function|closure] is empty, or complet (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/vb6/rule.adoc b/rules/S1186/vb6/rule.adoc index a342e59038..ce8b2df283 100644 --- a/rules/S1186/vb6/rule.adoc +++ b/rules/S1186/vb6/rule.adoc @@ -24,4 +24,5 @@ Add a nested comment explaining why this method is empty, throw an error or comp (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/vbnet/rule.adoc b/rules/S1186/vbnet/rule.adoc index 1cc193e1a1..26cc1edb64 100644 --- a/rules/S1186/vbnet/rule.adoc +++ b/rules/S1186/vbnet/rule.adoc @@ -32,4 +32,5 @@ Add a nested comment explaining why this method is empty, throw a NotSupportedEx (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1186/why-dotnet.adoc b/rules/S1186/why-dotnet.adoc index 1063aa5172..0ce0a4b485 100644 --- a/rules/S1186/why-dotnet.adoc +++ b/rules/S1186/why-dotnet.adoc @@ -12,15 +12,21 @@ Here are a few examples: * The {operationName} will never be implemented. + -- + include::{notsupportedCode}[] + -- * The {operationName} will be implemented in the future. + -- + include::{notimplementedCode}[] + -- * The {operationName} implementation is empty intentionally. + -- + include::{commentCode}[] + -- diff --git a/rules/S1188/cfamily/rule.adoc b/rules/S1188/cfamily/rule.adoc index 420b5f7704..82261ce533 100644 --- a/rules/S1188/cfamily/rule.adoc +++ b/rules/S1188/cfamily/rule.adoc @@ -31,4 +31,5 @@ Maximum allowed lines in a lambda (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1188/csharp/rule.adoc b/rules/S1188/csharp/rule.adoc index 95884d9495..557a592d51 100644 --- a/rules/S1188/csharp/rule.adoc +++ b/rules/S1188/csharp/rule.adoc @@ -18,4 +18,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1188/java/rule.adoc b/rules/S1188/java/rule.adoc index 5856942d6a..046279cced 100644 --- a/rules/S1188/java/rule.adoc +++ b/rules/S1188/java/rule.adoc @@ -17,4 +17,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1188/swift/rule.adoc b/rules/S1188/swift/rule.adoc index 71a0d16383..dd105c2dad 100644 --- a/rules/S1188/swift/rule.adoc +++ b/rules/S1188/swift/rule.adoc @@ -31,4 +31,5 @@ Maximum allowed lines in a closure (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S119/java/rule.adoc b/rules/S119/java/rule.adoc index e2c7cdda2c..6ffe3f4c92 100644 --- a/rules/S119/java/rule.adoc +++ b/rules/S119/java/rule.adoc @@ -49,4 +49,5 @@ Regular expression used to check the type parameter names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S119/swift/rule.adoc b/rules/S119/swift/rule.adoc index 9795f7c510..dc00965d27 100644 --- a/rules/S119/swift/rule.adoc +++ b/rules/S119/swift/rule.adoc @@ -39,4 +39,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/abap/rule.adoc b/rules/S1192/abap/rule.adoc index 9ac1da6ed0..1e28244374 100644 --- a/rules/S1192/abap/rule.adoc +++ b/rules/S1192/abap/rule.adoc @@ -47,4 +47,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/apex/rule.adoc b/rules/S1192/apex/rule.adoc index 26b41e1206..b5d0944203 100644 --- a/rules/S1192/apex/rule.adoc +++ b/rules/S1192/apex/rule.adoc @@ -57,4 +57,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/cobol/rule.adoc b/rules/S1192/cobol/rule.adoc index f58a07452e..bae1eacbb1 100644 --- a/rules/S1192/cobol/rule.adoc +++ b/rules/S1192/cobol/rule.adoc @@ -56,4 +56,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/go/rule.adoc b/rules/S1192/go/rule.adoc index 773090527b..77366c44d7 100644 --- a/rules/S1192/go/rule.adoc +++ b/rules/S1192/go/rule.adoc @@ -49,4 +49,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/java/rule.adoc b/rules/S1192/java/rule.adoc index f1b6b4a28e..4b4a6c8399 100644 --- a/rules/S1192/java/rule.adoc +++ b/rules/S1192/java/rule.adoc @@ -57,4 +57,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/javascript/rule.adoc b/rules/S1192/javascript/rule.adoc index b920c94d6f..c431fdc7b3 100644 --- a/rules/S1192/javascript/rule.adoc +++ b/rules/S1192/javascript/rule.adoc @@ -23,4 +23,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/kotlin/rule.adoc b/rules/S1192/kotlin/rule.adoc index 444265bf54..cda4c35384 100644 --- a/rules/S1192/kotlin/rule.adoc +++ b/rules/S1192/kotlin/rule.adoc @@ -61,4 +61,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/plsql/rule.adoc b/rules/S1192/plsql/rule.adoc index 7642e128f7..12de32eadf 100644 --- a/rules/S1192/plsql/rule.adoc +++ b/rules/S1192/plsql/rule.adoc @@ -49,4 +49,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/python/rule.adoc b/rules/S1192/python/rule.adoc index 80456256f4..77e5e5010b 100644 --- a/rules/S1192/python/rule.adoc +++ b/rules/S1192/python/rule.adoc @@ -62,4 +62,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/rpg/rule.adoc b/rules/S1192/rpg/rule.adoc index 10accd7160..c7e491d0b3 100644 --- a/rules/S1192/rpg/rule.adoc +++ b/rules/S1192/rpg/rule.adoc @@ -67,4 +67,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/ruby/rule.adoc b/rules/S1192/ruby/rule.adoc index 70aa1855b8..8e9a43f096 100644 --- a/rules/S1192/ruby/rule.adoc +++ b/rules/S1192/ruby/rule.adoc @@ -48,4 +48,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/scala/rule.adoc b/rules/S1192/scala/rule.adoc index df0ef4f7bb..3ad22cf22b 100644 --- a/rules/S1192/scala/rule.adoc +++ b/rules/S1192/scala/rule.adoc @@ -48,4 +48,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/swift/rule.adoc b/rules/S1192/swift/rule.adoc index e8cd2666c9..33f2efdc82 100644 --- a/rules/S1192/swift/rule.adoc +++ b/rules/S1192/swift/rule.adoc @@ -45,4 +45,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/tsql/rule.adoc b/rules/S1192/tsql/rule.adoc index 0567c8cdac..ce74d47150 100644 --- a/rules/S1192/tsql/rule.adoc +++ b/rules/S1192/tsql/rule.adoc @@ -52,4 +52,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1192/vbnet/rule.adoc b/rules/S1192/vbnet/rule.adoc index 5047034163..0f709c04d4 100644 --- a/rules/S1192/vbnet/rule.adoc +++ b/rules/S1192/vbnet/rule.adoc @@ -75,4 +75,5 @@ secondaries: all instances of the string literal (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1197/java/rule.adoc b/rules/S1197/java/rule.adoc index 8063162b7c..101ea70a76 100644 --- a/rules/S1197/java/rule.adoc +++ b/rules/S1197/java/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1197/vbnet/rule.adoc b/rules/S1197/vbnet/rule.adoc index 2aa2b6120b..a3b491c1b0 100644 --- a/rules/S1197/vbnet/rule.adoc +++ b/rules/S1197/vbnet/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1199/cfamily/rule.adoc b/rules/S1199/cfamily/rule.adoc index 7677ebcc2f..968d13850d 100644 --- a/rules/S1199/cfamily/rule.adoc +++ b/rules/S1199/cfamily/rule.adoc @@ -81,4 +81,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1199/csharp/rule.adoc b/rules/S1199/csharp/rule.adoc index 331096bdc0..f1c441ba99 100644 --- a/rules/S1199/csharp/rule.adoc +++ b/rules/S1199/csharp/rule.adoc @@ -56,4 +56,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1199/java/rule.adoc b/rules/S1199/java/rule.adoc index 8196a911cd..3b9be50fc0 100644 --- a/rules/S1199/java/rule.adoc +++ b/rules/S1199/java/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S120/flex/rule.adoc b/rules/S120/flex/rule.adoc index 9fa895224d..1c773206a8 100644 --- a/rules/S120/flex/rule.adoc +++ b/rules/S120/flex/rule.adoc @@ -48,4 +48,5 @@ Regular expression used to check the package names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S120/java/rule.adoc b/rules/S120/java/rule.adoc index 7496b70e4e..b70e2f8f64 100644 --- a/rules/S120/java/rule.adoc +++ b/rules/S120/java/rule.adoc @@ -44,4 +44,5 @@ Regular expression used to check the package names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S120/plsql/rule.adoc b/rules/S120/plsql/rule.adoc index 861c78a78f..9efcebc867 100644 --- a/rules/S120/plsql/rule.adoc +++ b/rules/S120/plsql/rule.adoc @@ -29,4 +29,5 @@ The regular expression package names should match. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1200/java/rule.adoc b/rules/S1200/java/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1200/java/rule.adoc +++ b/rules/S1200/java/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1200/php/rule.adoc b/rules/S1200/php/rule.adoc index 7804b6ba2e..569ad7ce95 100644 --- a/rules/S1200/php/rule.adoc +++ b/rules/S1200/php/rule.adoc @@ -48,4 +48,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1200/vbnet/rule.adoc b/rules/S1200/vbnet/rule.adoc index 88a8dece50..f318729e11 100644 --- a/rules/S1200/vbnet/rule.adoc +++ b/rules/S1200/vbnet/rule.adoc @@ -58,4 +58,5 @@ Maximum number of classes a single class is allowed to depend upon (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1206/csharp/rule.adoc b/rules/S1206/csharp/rule.adoc index 862d0b7626..1ed8711da1 100644 --- a/rules/S1206/csharp/rule.adoc +++ b/rules/S1206/csharp/rule.adoc @@ -59,4 +59,5 @@ The [class|struct] name. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1206/java/rule.adoc b/rules/S1206/java/rule.adoc index b957ce911f..b30e386e12 100644 --- a/rules/S1206/java/rule.adoc +++ b/rules/S1206/java/rule.adoc @@ -27,4 +27,5 @@ This [enum|class] overrides "hashCode()|equals()" and should therefore also over (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S121/cfamily/rule.adoc b/rules/S121/cfamily/rule.adoc index eb1f2631fb..8d00fa396b 100644 --- a/rules/S121/cfamily/rule.adoc +++ b/rules/S121/cfamily/rule.adoc @@ -22,4 +22,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S121/csharp/rule.adoc b/rules/S121/csharp/rule.adoc index 8f0f5b89f0..3dbaa47e33 100644 --- a/rules/S121/csharp/rule.adoc +++ b/rules/S121/csharp/rule.adoc @@ -16,4 +16,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S121/java/rule.adoc b/rules/S121/java/rule.adoc index e882ba3a17..4ff6e4d9b6 100644 --- a/rules/S121/java/rule.adoc +++ b/rules/S121/java/rule.adoc @@ -21,4 +21,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S121/javascript/rule.adoc b/rules/S121/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S121/javascript/rule.adoc +++ b/rules/S121/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S121/kotlin/rule.adoc b/rules/S121/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S121/kotlin/rule.adoc +++ b/rules/S121/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S121/php/rule.adoc b/rules/S121/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S121/php/rule.adoc +++ b/rules/S121/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S121/pli/rule.adoc b/rules/S121/pli/rule.adoc index aa27de4711..90e7fd06af 100644 --- a/rules/S121/pli/rule.adoc +++ b/rules/S121/pli/rule.adoc @@ -47,4 +47,5 @@ Add a "DO ... END" to this statement to this "xxx". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S121/tsql/rule.adoc b/rules/S121/tsql/rule.adoc index 4f1c828fed..4e7034aaf7 100644 --- a/rules/S121/tsql/rule.adoc +++ b/rules/S121/tsql/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1210/csharp/rule.adoc b/rules/S1210/csharp/rule.adoc index d682d0ba30..4d1c36af1b 100644 --- a/rules/S1210/csharp/rule.adoc +++ b/rules/S1210/csharp/rule.adoc @@ -71,4 +71,5 @@ When implementing {0}, you should also override {1}. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1210/java/rule.adoc b/rules/S1210/java/rule.adoc index f7d2d490ae..ca36560bd3 100644 --- a/rules/S1210/java/rule.adoc +++ b/rules/S1210/java/rule.adoc @@ -58,4 +58,5 @@ Override "equals(Object obj)" to comply with the contract of the "compareTo(T o) (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1213/java/rule.adoc b/rules/S1213/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1213/java/rule.adoc +++ b/rules/S1213/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1215/csharp/rspecator.adoc b/rules/S1215/csharp/rspecator.adoc index fb752db343..a064d7b164 100644 --- a/rules/S1215/csharp/rspecator.adoc +++ b/rules/S1215/csharp/rspecator.adoc @@ -13,4 +13,5 @@ Refactor the code to remove this use of 'XXX'. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S1215/java/rule.adoc b/rules/S1215/java/rule.adoc index 077004d669..fbf3190225 100644 --- a/rules/S1215/java/rule.adoc +++ b/rules/S1215/java/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1219/cfamily/rule.adoc b/rules/S1219/cfamily/rule.adoc index 3485b7be34..68852c364d 100644 --- a/rules/S1219/cfamily/rule.adoc +++ b/rules/S1219/cfamily/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1219/java/rule.adoc b/rules/S1219/java/rule.adoc index d336c1c868..37e52c9a6d 100644 --- a/rules/S1219/java/rule.adoc +++ b/rules/S1219/java/rule.adoc @@ -68,4 +68,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1219/javascript/rule.adoc b/rules/S1219/javascript/rule.adoc index 6d2b818437..f2061330be 100644 --- a/rules/S1219/javascript/rule.adoc +++ b/rules/S1219/javascript/rule.adoc @@ -81,4 +81,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/abap/rule.adoc b/rules/S122/abap/rule.adoc index 34bb9b7827..79f2b6691a 100644 --- a/rules/S122/abap/rule.adoc +++ b/rules/S122/abap/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/apex/rule.adoc b/rules/S122/apex/rule.adoc index f79215a8bd..a4c53c321a 100644 --- a/rules/S122/apex/rule.adoc +++ b/rules/S122/apex/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/cfamily/rule.adoc b/rules/S122/cfamily/rule.adoc index fe0f7dd46e..641ecca1a4 100644 --- a/rules/S122/cfamily/rule.adoc +++ b/rules/S122/cfamily/rule.adoc @@ -47,4 +47,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/cobol/rule.adoc b/rules/S122/cobol/rule.adoc index d03ee8c9db..88b65647a5 100644 --- a/rules/S122/cobol/rule.adoc +++ b/rules/S122/cobol/rule.adoc @@ -28,4 +28,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/csharp/rule.adoc b/rules/S122/csharp/rule.adoc index 861e2dc41b..5240c5aace 100644 --- a/rules/S122/csharp/rule.adoc +++ b/rules/S122/csharp/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/flex/rule.adoc b/rules/S122/flex/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S122/flex/rule.adoc +++ b/rules/S122/flex/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/go/rule.adoc b/rules/S122/go/rule.adoc index a627a5d7bd..b685810afc 100644 --- a/rules/S122/go/rule.adoc +++ b/rules/S122/go/rule.adoc @@ -27,4 +27,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/java/rule.adoc b/rules/S122/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S122/java/rule.adoc +++ b/rules/S122/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/javascript/rule.adoc b/rules/S122/javascript/rule.adoc index 3e0f69e05f..b93bd2ed91 100644 --- a/rules/S122/javascript/rule.adoc +++ b/rules/S122/javascript/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/kotlin/rule.adoc b/rules/S122/kotlin/rule.adoc index 5caa8b7811..85a4fe09ca 100644 --- a/rules/S122/kotlin/rule.adoc +++ b/rules/S122/kotlin/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/php/rule.adoc b/rules/S122/php/rule.adoc index 4e74c73c4f..59829f7a1d 100644 --- a/rules/S122/php/rule.adoc +++ b/rules/S122/php/rule.adoc @@ -25,4 +25,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/pli/rule.adoc b/rules/S122/pli/rule.adoc index a8034be026..ca2686e8f7 100644 --- a/rules/S122/pli/rule.adoc +++ b/rules/S122/pli/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/plsql/rule.adoc b/rules/S122/plsql/rule.adoc index 774ace5c7c..014434502c 100644 --- a/rules/S122/plsql/rule.adoc +++ b/rules/S122/plsql/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/python/rule.adoc b/rules/S122/python/rule.adoc index e43b2712a0..4cff47415a 100644 --- a/rules/S122/python/rule.adoc +++ b/rules/S122/python/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/ruby/rule.adoc b/rules/S122/ruby/rule.adoc index d1a4dc44b3..2e6e83448b 100644 --- a/rules/S122/ruby/rule.adoc +++ b/rules/S122/ruby/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/scala/rule.adoc b/rules/S122/scala/rule.adoc index 1ccfa80638..cae11e7d31 100644 --- a/rules/S122/scala/rule.adoc +++ b/rules/S122/scala/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/swift/rule.adoc b/rules/S122/swift/rule.adoc index 3e19b8360e..ea2ba8aec4 100644 --- a/rules/S122/swift/rule.adoc +++ b/rules/S122/swift/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/tsql/rule.adoc b/rules/S122/tsql/rule.adoc index 8030f74597..580828253a 100644 --- a/rules/S122/tsql/rule.adoc +++ b/rules/S122/tsql/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/vb6/rule.adoc b/rules/S122/vb6/rule.adoc index fe775ddabc..52f7ef0d76 100644 --- a/rules/S122/vb6/rule.adoc +++ b/rules/S122/vb6/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S122/vbnet/rule.adoc b/rules/S122/vbnet/rule.adoc index efd48e8aff..6f59cf87c5 100644 --- a/rules/S122/vbnet/rule.adoc +++ b/rules/S122/vbnet/rule.adoc @@ -18,4 +18,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1223/java/rule.adoc b/rules/S1223/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1223/java/rule.adoc +++ b/rules/S1223/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1224/cfamily/rule.adoc b/rules/S1224/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S1224/cfamily/rule.adoc +++ b/rules/S1224/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1224/csharp/rule.adoc b/rules/S1224/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S1224/csharp/rule.adoc +++ b/rules/S1224/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1224/flex/rule.adoc b/rules/S1224/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S1224/flex/rule.adoc +++ b/rules/S1224/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1224/java/rule.adoc b/rules/S1224/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S1224/java/rule.adoc +++ b/rules/S1224/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1224/vbnet/rule.adoc b/rules/S1224/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S1224/vbnet/rule.adoc +++ b/rules/S1224/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1226/cfamily/rule.adoc b/rules/S1226/cfamily/rule.adoc index d3ca5ed98f..8da3038372 100644 --- a/rules/S1226/cfamily/rule.adoc +++ b/rules/S1226/cfamily/rule.adoc @@ -45,4 +45,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1226/csharp/rule.adoc b/rules/S1226/csharp/rule.adoc index 8e98af8746..efad33e9eb 100644 --- a/rules/S1226/csharp/rule.adoc +++ b/rules/S1226/csharp/rule.adoc @@ -32,4 +32,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1226/java/rule.adoc b/rules/S1226/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1226/java/rule.adoc +++ b/rules/S1226/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1226/javascript/rule.adoc b/rules/S1226/javascript/rule.adoc index d9b7d0579f..828a460416 100644 --- a/rules/S1226/javascript/rule.adoc +++ b/rules/S1226/javascript/rule.adoc @@ -46,4 +46,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1226/php/rule.adoc b/rules/S1226/php/rule.adoc index edd746c3f2..00e54018bb 100644 --- a/rules/S1226/php/rule.adoc +++ b/rules/S1226/php/rule.adoc @@ -30,4 +30,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1226/python/rule.adoc b/rules/S1226/python/rule.adoc index 9c90f5f9c5..309867f199 100644 --- a/rules/S1226/python/rule.adoc +++ b/rules/S1226/python/rule.adoc @@ -25,4 +25,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1226/vbnet/rule.adoc b/rules/S1226/vbnet/rule.adoc index ec08a1c0d3..1fcdf6e19c 100644 --- a/rules/S1226/vbnet/rule.adoc +++ b/rules/S1226/vbnet/rule.adoc @@ -53,4 +53,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1227/cfamily/rule.adoc b/rules/S1227/cfamily/rule.adoc index 13642673c6..d515157e73 100644 --- a/rules/S1227/cfamily/rule.adoc +++ b/rules/S1227/cfamily/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1227/csharp/rule.adoc b/rules/S1227/csharp/rule.adoc index 905926a911..31b237d2cc 100644 --- a/rules/S1227/csharp/rule.adoc +++ b/rules/S1227/csharp/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1238/abap/rule.adoc b/rules/S1238/abap/rule.adoc index 14a60d12c4..b624f81ac3 100644 --- a/rules/S1238/abap/rule.adoc +++ b/rules/S1238/abap/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1238/cfamily/rule.adoc b/rules/S1238/cfamily/rule.adoc index c290c358cb..ce949b26f7 100644 --- a/rules/S1238/cfamily/rule.adoc +++ b/rules/S1238/cfamily/rule.adoc @@ -61,4 +61,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S124/flex/rule.adoc b/rules/S124/flex/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S124/flex/rule.adoc +++ b/rules/S124/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S124/pli/rule.adoc b/rules/S124/pli/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S124/pli/rule.adoc +++ b/rules/S124/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S124/plsql/rule.adoc b/rules/S124/plsql/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S124/plsql/rule.adoc +++ b/rules/S124/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S124/python/rule.adoc b/rules/S124/python/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S124/python/rule.adoc +++ b/rules/S124/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1244/cfamily/rule.adoc b/rules/S1244/cfamily/rule.adoc index 5625f964f8..403d019743 100644 --- a/rules/S1244/cfamily/rule.adoc +++ b/rules/S1244/cfamily/rule.adoc @@ -46,4 +46,5 @@ Replace this ("==" or "!=") with a more tolerant comparison operation (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1244/csharp/rule.adoc b/rules/S1244/csharp/rule.adoc index ddc282fa83..9ea5f639aa 100644 --- a/rules/S1244/csharp/rule.adoc +++ b/rules/S1244/csharp/rule.adoc @@ -55,4 +55,5 @@ Do not check floating point [in]equality with exact values, use [a range | `Floa (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1244/javascript/rule.adoc b/rules/S1244/javascript/rule.adoc index 7d61d2c076..ae78ee8ec1 100644 --- a/rules/S1244/javascript/rule.adoc +++ b/rules/S1244/javascript/rule.adoc @@ -37,4 +37,5 @@ Replace this ("==" or "!=") with a more tolerant comparison operation. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1244/swift/rule.adoc b/rules/S1244/swift/rule.adoc index 87ad75ff85..b5a9c806cf 100644 --- a/rules/S1244/swift/rule.adoc +++ b/rules/S1244/swift/rule.adoc @@ -50,4 +50,5 @@ Equality tests should not be made with floating point values. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/abap/rule.adoc b/rules/S125/abap/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/abap/rule.adoc +++ b/rules/S125/abap/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/apex/rule.adoc b/rules/S125/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/apex/rule.adoc +++ b/rules/S125/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/cfamily/rule.adoc b/rules/S125/cfamily/rule.adoc index 83c18f17e3..8e2bb289a6 100644 --- a/rules/S125/cfamily/rule.adoc +++ b/rules/S125/cfamily/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/cobol/rule.adoc b/rules/S125/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/cobol/rule.adoc +++ b/rules/S125/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/csharp/rule.adoc b/rules/S125/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/csharp/rule.adoc +++ b/rules/S125/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/flex/rule.adoc b/rules/S125/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/flex/rule.adoc +++ b/rules/S125/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/html/rule.adoc b/rules/S125/html/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/html/rule.adoc +++ b/rules/S125/html/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/java/rule.adoc b/rules/S125/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/java/rule.adoc +++ b/rules/S125/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/javascript/rule.adoc b/rules/S125/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/javascript/rule.adoc +++ b/rules/S125/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/kotlin/rule.adoc b/rules/S125/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/kotlin/rule.adoc +++ b/rules/S125/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/php/rule.adoc b/rules/S125/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/php/rule.adoc +++ b/rules/S125/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/plsql/rule.adoc b/rules/S125/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/plsql/rule.adoc +++ b/rules/S125/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/python/rule.adoc b/rules/S125/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/python/rule.adoc +++ b/rules/S125/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/rpg/rule.adoc b/rules/S125/rpg/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/rpg/rule.adoc +++ b/rules/S125/rpg/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/scala/rule.adoc b/rules/S125/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/scala/rule.adoc +++ b/rules/S125/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/swift/rule.adoc b/rules/S125/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/swift/rule.adoc +++ b/rules/S125/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/tsql/rule.adoc b/rules/S125/tsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/tsql/rule.adoc +++ b/rules/S125/tsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S125/xml/rule.adoc b/rules/S125/xml/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S125/xml/rule.adoc +++ b/rules/S125/xml/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/abap/rule.adoc b/rules/S126/abap/rule.adoc index d0927ec903..633a33e66e 100644 --- a/rules/S126/abap/rule.adoc +++ b/rules/S126/abap/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/apex/rule.adoc b/rules/S126/apex/rule.adoc index d649086ac6..243d7325e7 100644 --- a/rules/S126/apex/rule.adoc +++ b/rules/S126/apex/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/cfamily/rule.adoc b/rules/S126/cfamily/rule.adoc index 73bd2af722..b328aebb20 100644 --- a/rules/S126/cfamily/rule.adoc +++ b/rules/S126/cfamily/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/csharp/rule.adoc b/rules/S126/csharp/rule.adoc index ab1090fd56..0dbb1a1de5 100644 --- a/rules/S126/csharp/rule.adoc +++ b/rules/S126/csharp/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/go/rule.adoc b/rules/S126/go/rule.adoc index ab3e33f4bc..61ad394d3a 100644 --- a/rules/S126/go/rule.adoc +++ b/rules/S126/go/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/java/rule.adoc b/rules/S126/java/rule.adoc index d4dc2786d3..4b3a55d48e 100644 --- a/rules/S126/java/rule.adoc +++ b/rules/S126/java/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/javascript/rule.adoc b/rules/S126/javascript/rule.adoc index 1e4d15dc23..50647c5f06 100644 --- a/rules/S126/javascript/rule.adoc +++ b/rules/S126/javascript/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/kotlin/rule.adoc b/rules/S126/kotlin/rule.adoc index f29112f512..55c3084115 100644 --- a/rules/S126/kotlin/rule.adoc +++ b/rules/S126/kotlin/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/php/rule.adoc b/rules/S126/php/rule.adoc index b2c982831c..aa76f9dcf2 100644 --- a/rules/S126/php/rule.adoc +++ b/rules/S126/php/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/plsql/rule.adoc b/rules/S126/plsql/rule.adoc index a82f8bd75a..d8537c7558 100644 --- a/rules/S126/plsql/rule.adoc +++ b/rules/S126/plsql/rule.adoc @@ -54,4 +54,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/rpg/rule.adoc b/rules/S126/rpg/rule.adoc index f7cba4e710..1d9ea39578 100644 --- a/rules/S126/rpg/rule.adoc +++ b/rules/S126/rpg/rule.adoc @@ -68,4 +68,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/ruby/rule.adoc b/rules/S126/ruby/rule.adoc index 72e4b1f9b1..f6a7b37f2b 100644 --- a/rules/S126/ruby/rule.adoc +++ b/rules/S126/ruby/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/scala/rule.adoc b/rules/S126/scala/rule.adoc index 12c112b326..8c4f976837 100644 --- a/rules/S126/scala/rule.adoc +++ b/rules/S126/scala/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/swift/rule.adoc b/rules/S126/swift/rule.adoc index 96161e717d..4e418cc0fb 100644 --- a/rules/S126/swift/rule.adoc +++ b/rules/S126/swift/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/tsql/rule.adoc b/rules/S126/tsql/rule.adoc index 2da0df8735..2edc77603b 100644 --- a/rules/S126/tsql/rule.adoc +++ b/rules/S126/tsql/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S126/vbnet/rule.adoc b/rules/S126/vbnet/rule.adoc index 0b322f7be2..c0699432b3 100644 --- a/rules/S126/vbnet/rule.adoc +++ b/rules/S126/vbnet/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1264/cfamily/rule.adoc b/rules/S1264/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1264/cfamily/rule.adoc +++ b/rules/S1264/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1264/csharp/rule.adoc b/rules/S1264/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1264/csharp/rule.adoc +++ b/rules/S1264/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1264/java/rule.adoc b/rules/S1264/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1264/java/rule.adoc +++ b/rules/S1264/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1264/javascript/rule.adoc b/rules/S1264/javascript/rule.adoc index c70e53200a..f5a3c3db67 100644 --- a/rules/S1264/javascript/rule.adoc +++ b/rules/S1264/javascript/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1264/php/rule.adoc b/rules/S1264/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1264/php/rule.adoc +++ b/rules/S1264/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S127/cfamily/rule.adoc b/rules/S127/cfamily/rule.adoc index 82b4ef5896..a6bfc01f15 100644 --- a/rules/S127/cfamily/rule.adoc +++ b/rules/S127/cfamily/rule.adoc @@ -48,4 +48,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S127/csharp/rule.adoc b/rules/S127/csharp/rule.adoc index 55f5eb8514..fe3ac07f1c 100644 --- a/rules/S127/csharp/rule.adoc +++ b/rules/S127/csharp/rule.adoc @@ -53,4 +53,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S127/flex/rule.adoc b/rules/S127/flex/rule.adoc index cfe28872a8..6409bfac36 100644 --- a/rules/S127/flex/rule.adoc +++ b/rules/S127/flex/rule.adoc @@ -38,4 +38,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S127/java/rule.adoc b/rules/S127/java/rule.adoc index e4023153a4..f670ace053 100644 --- a/rules/S127/java/rule.adoc +++ b/rules/S127/java/rule.adoc @@ -35,4 +35,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S127/javascript/rule.adoc b/rules/S127/javascript/rule.adoc index 389a532938..a0c191038e 100644 --- a/rules/S127/javascript/rule.adoc +++ b/rules/S127/javascript/rule.adoc @@ -56,4 +56,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S127/php/rule.adoc b/rules/S127/php/rule.adoc index d2d2675bbb..bd4a93e4bf 100644 --- a/rules/S127/php/rule.adoc +++ b/rules/S127/php/rule.adoc @@ -38,4 +38,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1270/cfamily/rule.adoc b/rules/S1270/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1270/cfamily/rule.adoc +++ b/rules/S1270/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S128/cfamily/rule.adoc b/rules/S128/cfamily/rule.adoc index bd01bc5281..675ce625a8 100644 --- a/rules/S128/cfamily/rule.adoc +++ b/rules/S128/cfamily/rule.adoc @@ -71,4 +71,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S128/flex/rule.adoc b/rules/S128/flex/rule.adoc index 3715e35cf2..f9277384cc 100644 --- a/rules/S128/flex/rule.adoc +++ b/rules/S128/flex/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S128/java/rule.adoc b/rules/S128/java/rule.adoc index ef2ddeec34..f7cd76258e 100644 --- a/rules/S128/java/rule.adoc +++ b/rules/S128/java/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S128/javascript/rule.adoc b/rules/S128/javascript/rule.adoc index e6692cacd6..3d3304b070 100644 --- a/rules/S128/javascript/rule.adoc +++ b/rules/S128/javascript/rule.adoc @@ -46,4 +46,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S128/php/rule.adoc b/rules/S128/php/rule.adoc index 69f5fc5768..f737b32226 100644 --- a/rules/S128/php/rule.adoc +++ b/rules/S128/php/rule.adoc @@ -74,4 +74,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S129/cfamily/rule.adoc b/rules/S129/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S129/cfamily/rule.adoc +++ b/rules/S129/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S129/flex/rule.adoc b/rules/S129/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S129/flex/rule.adoc +++ b/rules/S129/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S129/java/rule.adoc b/rules/S129/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S129/java/rule.adoc +++ b/rules/S129/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1291/cfamily/rule.adoc b/rules/S1291/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1291/cfamily/rule.adoc +++ b/rules/S1291/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1291/cobol/rule.adoc b/rules/S1291/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1291/cobol/rule.adoc +++ b/rules/S1291/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1291/java/rule.adoc b/rules/S1291/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1291/java/rule.adoc +++ b/rules/S1291/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1291/php/rule.adoc b/rules/S1291/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1291/php/rule.adoc +++ b/rules/S1291/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1291/plsql/rule.adoc b/rules/S1291/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1291/plsql/rule.adoc +++ b/rules/S1291/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1291/python/rule.adoc b/rules/S1291/python/rule.adoc index 56ee94b370..b934047e0c 100644 --- a/rules/S1291/python/rule.adoc +++ b/rules/S1291/python/rule.adoc @@ -24,4 +24,5 @@ Is ``++#NOSONAR++`` used to exclude false-positive or to hide real quality flaw? (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1291/tsql/rule.adoc b/rules/S1291/tsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1291/tsql/rule.adoc +++ b/rules/S1291/tsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1301/abap/rule.adoc b/rules/S1301/abap/rule.adoc index 271e139191..f28ae68c01 100644 --- a/rules/S1301/abap/rule.adoc +++ b/rules/S1301/abap/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1301/cfamily/rule.adoc b/rules/S1301/cfamily/rule.adoc index f0a76348ee..bac78f1511 100644 --- a/rules/S1301/cfamily/rule.adoc +++ b/rules/S1301/cfamily/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1301/csharp/rule.adoc b/rules/S1301/csharp/rule.adoc index 2baabbc4f6..51d426a007 100644 --- a/rules/S1301/csharp/rule.adoc +++ b/rules/S1301/csharp/rule.adoc @@ -57,4 +57,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1301/flex/rule.adoc b/rules/S1301/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1301/flex/rule.adoc +++ b/rules/S1301/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1301/java/rule.adoc b/rules/S1301/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1301/java/rule.adoc +++ b/rules/S1301/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1301/javascript/rule.adoc b/rules/S1301/javascript/rule.adoc index 41ae1dc2eb..0d9787df1b 100644 --- a/rules/S1301/javascript/rule.adoc +++ b/rules/S1301/javascript/rule.adoc @@ -21,4 +21,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1301/php/rule.adoc b/rules/S1301/php/rule.adoc index fc7c987a17..e6bcccf772 100644 --- a/rules/S1301/php/rule.adoc +++ b/rules/S1301/php/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1301/swift/rule.adoc b/rules/S1301/swift/rule.adoc index 3b3a1f4919..8407f63569 100644 --- a/rules/S1301/swift/rule.adoc +++ b/rules/S1301/swift/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1301/vb6/rule.adoc b/rules/S1301/vb6/rule.adoc index 18da54cc0d..46b9ce9577 100644 --- a/rules/S1301/vb6/rule.adoc +++ b/rules/S1301/vb6/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1301/vbnet/rule.adoc b/rules/S1301/vbnet/rule.adoc index 063e3a9f1e..aa003ca9ef 100644 --- a/rules/S1301/vbnet/rule.adoc +++ b/rules/S1301/vbnet/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1309/csharp/rule.adoc b/rules/S1309/csharp/rule.adoc index d54362e2c8..52e360fcf4 100644 --- a/rules/S1309/csharp/rule.adoc +++ b/rules/S1309/csharp/rule.adoc @@ -30,4 +30,5 @@ Do not suppress issues. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1309/java/rule.adoc b/rules/S1309/java/rule.adoc index b68b13d32f..57e0fda082 100644 --- a/rules/S1309/java/rule.adoc +++ b/rules/S1309/java/rule.adoc @@ -38,4 +38,5 @@ Comma separated list of warnings that can be suppressed. Example: 'unchecked, ca (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/abap/rule.adoc b/rules/S131/abap/rule.adoc index b18be94006..ac23f61525 100644 --- a/rules/S131/abap/rule.adoc +++ b/rules/S131/abap/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/apex/rule.adoc b/rules/S131/apex/rule.adoc index 5cc793be08..304b17bb97 100644 --- a/rules/S131/apex/rule.adoc +++ b/rules/S131/apex/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/cfamily/rule.adoc b/rules/S131/cfamily/rule.adoc index b928e1f184..2087f2fc4a 100644 --- a/rules/S131/cfamily/rule.adoc +++ b/rules/S131/cfamily/rule.adoc @@ -67,4 +67,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/cobol/rule.adoc b/rules/S131/cobol/rule.adoc index 07c48329a0..595ee04d7b 100644 --- a/rules/S131/cobol/rule.adoc +++ b/rules/S131/cobol/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/csharp/rule.adoc b/rules/S131/csharp/rule.adoc index 133358a628..39fa830341 100644 --- a/rules/S131/csharp/rule.adoc +++ b/rules/S131/csharp/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/flex/rule.adoc b/rules/S131/flex/rule.adoc index b520315219..a76f804f1f 100644 --- a/rules/S131/flex/rule.adoc +++ b/rules/S131/flex/rule.adoc @@ -54,4 +54,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/go/rule.adoc b/rules/S131/go/rule.adoc index 18ed3f5d62..7fb40b3e12 100644 --- a/rules/S131/go/rule.adoc +++ b/rules/S131/go/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/java/rule.adoc b/rules/S131/java/rule.adoc index 4c84e22df9..b73ed733ea 100644 --- a/rules/S131/java/rule.adoc +++ b/rules/S131/java/rule.adoc @@ -86,4 +86,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/javascript/rule.adoc b/rules/S131/javascript/rule.adoc index b506066419..e0d96994df 100644 --- a/rules/S131/javascript/rule.adoc +++ b/rules/S131/javascript/rule.adoc @@ -104,4 +104,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/kotlin/rule.adoc b/rules/S131/kotlin/rule.adoc index d24dada13d..15875511bd 100644 --- a/rules/S131/kotlin/rule.adoc +++ b/rules/S131/kotlin/rule.adoc @@ -57,4 +57,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/php/rule.adoc b/rules/S131/php/rule.adoc index 3c84aeb40a..9ce114c7ed 100644 --- a/rules/S131/php/rule.adoc +++ b/rules/S131/php/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/pli/rule.adoc b/rules/S131/pli/rule.adoc index 2efd023074..ebd62bdc0e 100644 --- a/rules/S131/pli/rule.adoc +++ b/rules/S131/pli/rule.adoc @@ -53,4 +53,5 @@ Add an "OTHERWISE" to this "SELECT". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/plsql/rule.adoc b/rules/S131/plsql/rule.adoc index e5daa787be..a2990f7603 100644 --- a/rules/S131/plsql/rule.adoc +++ b/rules/S131/plsql/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/ruby/rule.adoc b/rules/S131/ruby/rule.adoc index e4bbb5aca8..424fe68055 100644 --- a/rules/S131/ruby/rule.adoc +++ b/rules/S131/ruby/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/scala/rule.adoc b/rules/S131/scala/rule.adoc index 4b4bea24d9..ee10346760 100644 --- a/rules/S131/scala/rule.adoc +++ b/rules/S131/scala/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/tsql/rule.adoc b/rules/S131/tsql/rule.adoc index d85a43dc27..4296eb22c6 100644 --- a/rules/S131/tsql/rule.adoc +++ b/rules/S131/tsql/rule.adoc @@ -45,4 +45,5 @@ Add an "ELSE" clause to this "CASE" statement. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/vb6/rule.adoc b/rules/S131/vb6/rule.adoc index 2a86f4d848..b9bed0fe6d 100644 --- a/rules/S131/vb6/rule.adoc +++ b/rules/S131/vb6/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S131/vbnet/rule.adoc b/rules/S131/vbnet/rule.adoc index 3e1483f298..477d925cea 100644 --- a/rules/S131/vbnet/rule.adoc +++ b/rules/S131/vbnet/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1311/abap/rule.adoc b/rules/S1311/abap/rule.adoc index 4acad513af..ad748d8188 100644 --- a/rules/S1311/abap/rule.adoc +++ b/rules/S1311/abap/rule.adoc @@ -17,4 +17,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1311/cfamily/rule.adoc b/rules/S1311/cfamily/rule.adoc index 6c871bc25f..34ecd12c96 100644 --- a/rules/S1311/cfamily/rule.adoc +++ b/rules/S1311/cfamily/rule.adoc @@ -26,4 +26,5 @@ Maximum complexity allowed. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1311/flex/rule.adoc b/rules/S1311/flex/rule.adoc index 263a801c5a..7e00b5f55d 100644 --- a/rules/S1311/flex/rule.adoc +++ b/rules/S1311/flex/rule.adoc @@ -26,4 +26,5 @@ Maximum complexity allowed. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1311/java/rule.adoc b/rules/S1311/java/rule.adoc index 33687d0cfc..e1e3e5696e 100644 --- a/rules/S1311/java/rule.adoc +++ b/rules/S1311/java/rule.adoc @@ -19,4 +19,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1311/php/rule.adoc b/rules/S1311/php/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1311/php/rule.adoc +++ b/rules/S1311/php/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1311/python/rule.adoc b/rules/S1311/python/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1311/python/rule.adoc +++ b/rules/S1311/python/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1311/swift/rule.adoc b/rules/S1311/swift/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1311/swift/rule.adoc +++ b/rules/S1311/swift/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1312/flex/rule.adoc b/rules/S1312/flex/rule.adoc index a0e50c7351..d9a3e15797 100644 --- a/rules/S1312/flex/rule.adoc +++ b/rules/S1312/flex/rule.adoc @@ -37,4 +37,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1312/java/rule.adoc b/rules/S1312/java/rule.adoc index fa9e3ec453..04717e81d5 100644 --- a/rules/S1312/java/rule.adoc +++ b/rules/S1312/java/rule.adoc @@ -42,4 +42,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/abap/rule.adoc b/rules/S1313/abap/rule.adoc index 936e8c5343..add5efcdfb 100644 --- a/rules/S1313/abap/rule.adoc +++ b/rules/S1313/abap/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/apex/rule.adoc b/rules/S1313/apex/rule.adoc index 5d2af0f36c..7602501ee0 100644 --- a/rules/S1313/apex/rule.adoc +++ b/rules/S1313/apex/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/cfamily/rule.adoc b/rules/S1313/cfamily/rule.adoc index 367a946d27..9adc88ddab 100644 --- a/rules/S1313/cfamily/rule.adoc +++ b/rules/S1313/cfamily/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/cobol/rule.adoc b/rules/S1313/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1313/cobol/rule.adoc +++ b/rules/S1313/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/csharp/rule.adoc b/rules/S1313/csharp/rule.adoc index 3b5901ee61..66fd2275b6 100644 --- a/rules/S1313/csharp/rule.adoc +++ b/rules/S1313/csharp/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/flex/rule.adoc b/rules/S1313/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1313/flex/rule.adoc +++ b/rules/S1313/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/go/rule.adoc b/rules/S1313/go/rule.adoc index 95c7f1d028..36a148f391 100644 --- a/rules/S1313/go/rule.adoc +++ b/rules/S1313/go/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/java/rule.adoc b/rules/S1313/java/rule.adoc index 33d40329d0..e974236ef8 100644 --- a/rules/S1313/java/rule.adoc +++ b/rules/S1313/java/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/javascript/rule.adoc b/rules/S1313/javascript/rule.adoc index d8833edf4e..30eb94e5e6 100644 --- a/rules/S1313/javascript/rule.adoc +++ b/rules/S1313/javascript/rule.adoc @@ -55,4 +55,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/kotlin/rule.adoc b/rules/S1313/kotlin/rule.adoc index 50a09f4065..65c394b171 100644 --- a/rules/S1313/kotlin/rule.adoc +++ b/rules/S1313/kotlin/rule.adoc @@ -46,4 +46,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/php/rule.adoc b/rules/S1313/php/rule.adoc index 6d82a0e500..50be164532 100644 --- a/rules/S1313/php/rule.adoc +++ b/rules/S1313/php/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/plsql/rule.adoc b/rules/S1313/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1313/plsql/rule.adoc +++ b/rules/S1313/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/python/rule.adoc b/rules/S1313/python/rule.adoc index c18bfb08d1..adedd3280b 100644 --- a/rules/S1313/python/rule.adoc +++ b/rules/S1313/python/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/rpg/rule.adoc b/rules/S1313/rpg/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1313/rpg/rule.adoc +++ b/rules/S1313/rpg/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/ruby/rule.adoc b/rules/S1313/ruby/rule.adoc index 1557966e39..aa6e0ca8c9 100644 --- a/rules/S1313/ruby/rule.adoc +++ b/rules/S1313/ruby/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/rust/rule.adoc b/rules/S1313/rust/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1313/rust/rule.adoc +++ b/rules/S1313/rust/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/scala/rule.adoc b/rules/S1313/scala/rule.adoc index c88d728a14..bf7ac95973 100644 --- a/rules/S1313/scala/rule.adoc +++ b/rules/S1313/scala/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/swift/rule.adoc b/rules/S1313/swift/rule.adoc index 1b736f3642..78dcf657ce 100644 --- a/rules/S1313/swift/rule.adoc +++ b/rules/S1313/swift/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/tsql/rule.adoc b/rules/S1313/tsql/rule.adoc index cd7011f6be..0bf17970ba 100644 --- a/rules/S1313/tsql/rule.adoc +++ b/rules/S1313/tsql/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/vb6/rule.adoc b/rules/S1313/vb6/rule.adoc index 7cc6207d1b..345bccca6a 100644 --- a/rules/S1313/vb6/rule.adoc +++ b/rules/S1313/vb6/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1313/vbnet/rule.adoc b/rules/S1313/vbnet/rule.adoc index 4cade5dec7..8e90765855 100644 --- a/rules/S1313/vbnet/rule.adoc +++ b/rules/S1313/vbnet/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1314/cfamily/rule.adoc b/rules/S1314/cfamily/rule.adoc index 9c3528d75b..4247f66114 100644 --- a/rules/S1314/cfamily/rule.adoc +++ b/rules/S1314/cfamily/rule.adoc @@ -55,4 +55,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1314/flex/rule.adoc b/rules/S1314/flex/rule.adoc index 054d909a7a..2c665d22e7 100644 --- a/rules/S1314/flex/rule.adoc +++ b/rules/S1314/flex/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1314/go/rule.adoc b/rules/S1314/go/rule.adoc index aabfc214fb..cbf36744e9 100644 --- a/rules/S1314/go/rule.adoc +++ b/rules/S1314/go/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1314/java/rule.adoc b/rules/S1314/java/rule.adoc index f26e9bb9f5..c7cc46c14a 100644 --- a/rules/S1314/java/rule.adoc +++ b/rules/S1314/java/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1314/javascript/rule.adoc b/rules/S1314/javascript/rule.adoc index 9e9c758219..9e0da689aa 100644 --- a/rules/S1314/javascript/rule.adoc +++ b/rules/S1314/javascript/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1314/php/rule.adoc b/rules/S1314/php/rule.adoc index 0775b24d33..79d7b281a4 100644 --- a/rules/S1314/php/rule.adoc +++ b/rules/S1314/php/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1314/ruby/rule.adoc b/rules/S1314/ruby/rule.adoc index 8a51829b68..8b867f21b6 100644 --- a/rules/S1314/ruby/rule.adoc +++ b/rules/S1314/ruby/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S133/abap/rule.adoc b/rules/S133/abap/rule.adoc index cfe5186446..2487eedb08 100644 --- a/rules/S133/abap/rule.adoc +++ b/rules/S133/abap/rule.adoc @@ -20,4 +20,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S133/java/rule.adoc b/rules/S133/java/rule.adoc index e09295f017..d295c5c8c6 100644 --- a/rules/S133/java/rule.adoc +++ b/rules/S133/java/rule.adoc @@ -23,4 +23,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/abap/rule.adoc b/rules/S134/abap/rule.adoc index a43e098e9e..5e7e9577ff 100644 --- a/rules/S134/abap/rule.adoc +++ b/rules/S134/abap/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/apex/rule.adoc b/rules/S134/apex/rule.adoc index 9caf20546b..03e666841c 100644 --- a/rules/S134/apex/rule.adoc +++ b/rules/S134/apex/rule.adoc @@ -45,4 +45,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/cobol/rule.adoc b/rules/S134/cobol/rule.adoc index 7aa3140bf6..0e2a8b27fd 100644 --- a/rules/S134/cobol/rule.adoc +++ b/rules/S134/cobol/rule.adoc @@ -49,4 +49,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/csharp/rule.adoc b/rules/S134/csharp/rule.adoc index 816584432b..96433f7d2d 100644 --- a/rules/S134/csharp/rule.adoc +++ b/rules/S134/csharp/rule.adoc @@ -49,4 +49,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/flex/rule.adoc b/rules/S134/flex/rule.adoc index 291674f2e7..836de6e4f7 100644 --- a/rules/S134/flex/rule.adoc +++ b/rules/S134/flex/rule.adoc @@ -44,4 +44,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/go/rule.adoc b/rules/S134/go/rule.adoc index cce936e131..8aaf57d775 100644 --- a/rules/S134/go/rule.adoc +++ b/rules/S134/go/rule.adoc @@ -54,4 +54,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/java/rule.adoc b/rules/S134/java/rule.adoc index c6d364f05f..2f767391f7 100644 --- a/rules/S134/java/rule.adoc +++ b/rules/S134/java/rule.adoc @@ -42,4 +42,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/javascript/rule.adoc b/rules/S134/javascript/rule.adoc index 9851ad80cd..13f55e8652 100644 --- a/rules/S134/javascript/rule.adoc +++ b/rules/S134/javascript/rule.adoc @@ -42,4 +42,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/kotlin/rule.adoc b/rules/S134/kotlin/rule.adoc index 1823650cd7..a20769c1b9 100644 --- a/rules/S134/kotlin/rule.adoc +++ b/rules/S134/kotlin/rule.adoc @@ -22,4 +22,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/php/rule.adoc b/rules/S134/php/rule.adoc index 1a20be2e38..628feee527 100644 --- a/rules/S134/php/rule.adoc +++ b/rules/S134/php/rule.adoc @@ -54,4 +54,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/pli/rule.adoc b/rules/S134/pli/rule.adoc index 51455e7b7b..f857a4f137 100644 --- a/rules/S134/pli/rule.adoc +++ b/rules/S134/pli/rule.adoc @@ -22,4 +22,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/plsql/rule.adoc b/rules/S134/plsql/rule.adoc index 901d7e7100..f509892aee 100644 --- a/rules/S134/plsql/rule.adoc +++ b/rules/S134/plsql/rule.adoc @@ -32,4 +32,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/python/rule.adoc b/rules/S134/python/rule.adoc index d9497d891d..650fcbcd33 100644 --- a/rules/S134/python/rule.adoc +++ b/rules/S134/python/rule.adoc @@ -48,4 +48,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/rpg/rule.adoc b/rules/S134/rpg/rule.adoc index 379f931022..75e9f38020 100644 --- a/rules/S134/rpg/rule.adoc +++ b/rules/S134/rpg/rule.adoc @@ -51,4 +51,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/ruby/rule.adoc b/rules/S134/ruby/rule.adoc index 3ac6b5fea3..e43804fe1b 100644 --- a/rules/S134/ruby/rule.adoc +++ b/rules/S134/ruby/rule.adoc @@ -22,4 +22,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/scala/rule.adoc b/rules/S134/scala/rule.adoc index d72d3ef6a3..d2c7c64853 100644 --- a/rules/S134/scala/rule.adoc +++ b/rules/S134/scala/rule.adoc @@ -22,4 +22,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/swift/rule.adoc b/rules/S134/swift/rule.adoc index dab292ceee..0c27240e3f 100644 --- a/rules/S134/swift/rule.adoc +++ b/rules/S134/swift/rule.adoc @@ -46,4 +46,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S134/vbnet/rule.adoc b/rules/S134/vbnet/rule.adoc index a45b7789dc..1278b603c3 100644 --- a/rules/S134/vbnet/rule.adoc +++ b/rules/S134/vbnet/rule.adoc @@ -56,4 +56,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S135/abap/rule.adoc b/rules/S135/abap/rule.adoc index 751ed9ff3e..a2faad251f 100644 --- a/rules/S135/abap/rule.adoc +++ b/rules/S135/abap/rule.adoc @@ -35,4 +35,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S135/java/rule.adoc b/rules/S135/java/rule.adoc index bcc917d5e9..1cb95fbf07 100644 --- a/rules/S135/java/rule.adoc +++ b/rules/S135/java/rule.adoc @@ -35,4 +35,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S135/javascript/rule.adoc b/rules/S135/javascript/rule.adoc index 15393d6034..3efdc0d140 100644 --- a/rules/S135/javascript/rule.adoc +++ b/rules/S135/javascript/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/apex/rule.adoc b/rules/S138/apex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S138/apex/rule.adoc +++ b/rules/S138/apex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/cfamily/rule.adoc b/rules/S138/cfamily/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S138/cfamily/rule.adoc +++ b/rules/S138/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/csharp/rule.adoc b/rules/S138/csharp/rule.adoc index d4c0d711a1..d884ac975b 100644 --- a/rules/S138/csharp/rule.adoc +++ b/rules/S138/csharp/rule.adoc @@ -27,4 +27,5 @@ Maximum authorized lines of code in a function (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/flex/rule.adoc b/rules/S138/flex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S138/flex/rule.adoc +++ b/rules/S138/flex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/go/rule.adoc b/rules/S138/go/rule.adoc index 50df62a68f..a2983665b1 100644 --- a/rules/S138/go/rule.adoc +++ b/rules/S138/go/rule.adoc @@ -27,4 +27,5 @@ Maximum authorized lines of code in a function (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/java/rule.adoc b/rules/S138/java/rule.adoc index 9ec1a8825d..9e675a0dba 100644 --- a/rules/S138/java/rule.adoc +++ b/rules/S138/java/rule.adoc @@ -31,4 +31,5 @@ Maximum authorized lines in a method (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/javascript/rule.adoc b/rules/S138/javascript/rule.adoc index 1c91465e6d..d9337b6605 100644 --- a/rules/S138/javascript/rule.adoc +++ b/rules/S138/javascript/rule.adoc @@ -69,4 +69,5 @@ Maximum authorized lines of code in a function (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/kotlin/rule.adoc b/rules/S138/kotlin/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S138/kotlin/rule.adoc +++ b/rules/S138/kotlin/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/php/rule.adoc b/rules/S138/php/rule.adoc index cd7d92b506..9dd75b1c2d 100644 --- a/rules/S138/php/rule.adoc +++ b/rules/S138/php/rule.adoc @@ -27,4 +27,5 @@ Maximum authorized lines of code in a function (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/python/rule.adoc b/rules/S138/python/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S138/python/rule.adoc +++ b/rules/S138/python/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/rpg/rule.adoc b/rules/S138/rpg/rule.adoc index f92da65508..edde97880f 100644 --- a/rules/S138/rpg/rule.adoc +++ b/rules/S138/rpg/rule.adoc @@ -28,4 +28,5 @@ Maximum authorized lines in a subroutine (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/ruby/rule.adoc b/rules/S138/ruby/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S138/ruby/rule.adoc +++ b/rules/S138/ruby/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/scala/rule.adoc b/rules/S138/scala/rule.adoc index 293c6c72cd..21c0c30b99 100644 --- a/rules/S138/scala/rule.adoc +++ b/rules/S138/scala/rule.adoc @@ -20,4 +20,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/swift/rule.adoc b/rules/S138/swift/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S138/swift/rule.adoc +++ b/rules/S138/swift/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/vb6/rule.adoc b/rules/S138/vb6/rule.adoc index a1da0dee06..6f49982e05 100644 --- a/rules/S138/vb6/rule.adoc +++ b/rules/S138/vb6/rule.adoc @@ -31,4 +31,5 @@ Maximum authorized lines in a sub or function (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S138/vbnet/rule.adoc b/rules/S138/vbnet/rule.adoc index cb41f425b7..d19f8bc54b 100644 --- a/rules/S138/vbnet/rule.adoc +++ b/rules/S138/vbnet/rule.adoc @@ -36,4 +36,5 @@ Maximum authorized lines of code in a function (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S139/cfamily/rule.adoc b/rules/S139/cfamily/rule.adoc index 373d570610..aba1854a25 100644 --- a/rules/S139/cfamily/rule.adoc +++ b/rules/S139/cfamily/rule.adoc @@ -36,4 +36,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S139/java/rule.adoc b/rules/S139/java/rule.adoc index d411264e06..a5e6dd5087 100644 --- a/rules/S139/java/rule.adoc +++ b/rules/S139/java/rule.adoc @@ -32,4 +32,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S139/javascript/rule.adoc b/rules/S139/javascript/rule.adoc index 2d02348bdf..af89a4d809 100644 --- a/rules/S139/javascript/rule.adoc +++ b/rules/S139/javascript/rule.adoc @@ -32,4 +32,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S139/php/rule.adoc b/rules/S139/php/rule.adoc index 720c748cf4..c99c167ebd 100644 --- a/rules/S139/php/rule.adoc +++ b/rules/S139/php/rule.adoc @@ -43,4 +43,5 @@ Pattern for text of trailing comments that are allowed. By default, comments con (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S139/plsql/rule.adoc b/rules/S139/plsql/rule.adoc index 9f193f8016..4bf3d6b52a 100644 --- a/rules/S139/plsql/rule.adoc +++ b/rules/S139/plsql/rule.adoc @@ -32,4 +32,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S139/python/rule.adoc b/rules/S139/python/rule.adoc index 6e455b5804..4382789ef2 100644 --- a/rules/S139/python/rule.adoc +++ b/rules/S139/python/rule.adoc @@ -32,4 +32,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S139/swift/rule.adoc b/rules/S139/swift/rule.adoc index 655d5539ec..475582c394 100644 --- a/rules/S139/swift/rule.adoc +++ b/rules/S139/swift/rule.adoc @@ -43,4 +43,5 @@ Pattern for text of trailing comments that are allowed. By default, comments con (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1438/flex/rule.adoc b/rules/S1438/flex/rule.adoc index c54e5c969f..0692bf529f 100644 --- a/rules/S1438/flex/rule.adoc +++ b/rules/S1438/flex/rule.adoc @@ -28,4 +28,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1438/javascript/rule.adoc b/rules/S1438/javascript/rule.adoc index b6b41e7bc2..85ded15513 100644 --- a/rules/S1438/javascript/rule.adoc +++ b/rules/S1438/javascript/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1438/swift/rule.adoc b/rules/S1438/swift/rule.adoc index 90e66d42ed..c6b3ad0bc9 100644 --- a/rules/S1438/swift/rule.adoc +++ b/rules/S1438/swift/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1439/flex/rule.adoc b/rules/S1439/flex/rule.adoc index 4a9a530755..6983320da6 100644 --- a/rules/S1439/flex/rule.adoc +++ b/rules/S1439/flex/rule.adoc @@ -41,4 +41,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1439/javascript/rule.adoc b/rules/S1439/javascript/rule.adoc index 26f26f5f9d..12a324ec69 100644 --- a/rules/S1439/javascript/rule.adoc +++ b/rules/S1439/javascript/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1440/flex/rule.adoc b/rules/S1440/flex/rule.adoc index 4c007267e7..bdec5398a6 100644 --- a/rules/S1440/flex/rule.adoc +++ b/rules/S1440/flex/rule.adoc @@ -20,4 +20,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1440/javascript/rule.adoc b/rules/S1440/javascript/rule.adoc index bf3e411467..1f82650448 100644 --- a/rules/S1440/javascript/rule.adoc +++ b/rules/S1440/javascript/rule.adoc @@ -28,4 +28,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1442/flex/rule.adoc b/rules/S1442/flex/rule.adoc index 62693d278e..bf8acc1673 100644 --- a/rules/S1442/flex/rule.adoc +++ b/rules/S1442/flex/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1442/javascript/rule.adoc b/rules/S1442/javascript/rule.adoc index 32011d8216..84d1f2dad9 100644 --- a/rules/S1442/javascript/rule.adoc +++ b/rules/S1442/javascript/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1444/csharp/rule.adoc b/rules/S1444/csharp/rule.adoc index 7fe2b9a6d4..d711f82580 100644 --- a/rules/S1444/csharp/rule.adoc +++ b/rules/S1444/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1444/flex/rule.adoc b/rules/S1444/flex/rule.adoc index b08b85d8c6..af921a0e03 100644 --- a/rules/S1444/flex/rule.adoc +++ b/rules/S1444/flex/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1444/java/rule.adoc b/rules/S1444/java/rule.adoc index a3445f6203..4fb7318e83 100644 --- a/rules/S1444/java/rule.adoc +++ b/rules/S1444/java/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1448/cfamily/rule.adoc b/rules/S1448/cfamily/rule.adoc index 54e1f1dc40..b983fff600 100644 --- a/rules/S1448/cfamily/rule.adoc +++ b/rules/S1448/cfamily/rule.adoc @@ -26,4 +26,5 @@ The maximum number of methods authorized in a class. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1448/flex/rule.adoc b/rules/S1448/flex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1448/flex/rule.adoc +++ b/rules/S1448/flex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1448/java/rule.adoc b/rules/S1448/java/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1448/java/rule.adoc +++ b/rules/S1448/java/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1448/php/rule.adoc b/rules/S1448/php/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1448/php/rule.adoc +++ b/rules/S1448/php/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1449/java/rule.adoc b/rules/S1449/java/rule.adoc index d5b49f8329..4b4e092dd2 100644 --- a/rules/S1449/java/rule.adoc +++ b/rules/S1449/java/rule.adoc @@ -26,4 +26,5 @@ Define the locale to be used in this String operation. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1450/csharp/rule.adoc b/rules/S1450/csharp/rule.adoc index fbdc1d1565..8766000c39 100644 --- a/rules/S1450/csharp/rule.adoc +++ b/rules/S1450/csharp/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1450/java/rule.adoc b/rules/S1450/java/rule.adoc index dfcf601429..0df25e6ed9 100644 --- a/rules/S1450/java/rule.adoc +++ b/rules/S1450/java/rule.adoc @@ -64,4 +64,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/apex/rule.adoc b/rules/S1451/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1451/apex/rule.adoc +++ b/rules/S1451/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/cfamily/rule.adoc b/rules/S1451/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1451/cfamily/rule.adoc +++ b/rules/S1451/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/cobol/rule.adoc b/rules/S1451/cobol/rule.adoc index 3c8834d762..cb7b94c605 100644 --- a/rules/S1451/cobol/rule.adoc +++ b/rules/S1451/cobol/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/csharp/rule.adoc b/rules/S1451/csharp/rule.adoc index 15350dcf7e..7c0078a4dc 100644 --- a/rules/S1451/csharp/rule.adoc +++ b/rules/S1451/csharp/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/flex/rule.adoc b/rules/S1451/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1451/flex/rule.adoc +++ b/rules/S1451/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/go/rule.adoc b/rules/S1451/go/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1451/go/rule.adoc +++ b/rules/S1451/go/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/html/rule.adoc b/rules/S1451/html/rule.adoc index 9a79c0d43a..72e32d6ce2 100644 --- a/rules/S1451/html/rule.adoc +++ b/rules/S1451/html/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/java/rule.adoc b/rules/S1451/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1451/java/rule.adoc +++ b/rules/S1451/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/javascript/rule.adoc b/rules/S1451/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1451/javascript/rule.adoc +++ b/rules/S1451/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/kotlin/rule.adoc b/rules/S1451/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1451/kotlin/rule.adoc +++ b/rules/S1451/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/php/rule.adoc b/rules/S1451/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1451/php/rule.adoc +++ b/rules/S1451/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/plsql/rule.adoc b/rules/S1451/plsql/rule.adoc index fc99aaa556..da40a47cae 100644 --- a/rules/S1451/plsql/rule.adoc +++ b/rules/S1451/plsql/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/python/rule.adoc b/rules/S1451/python/rule.adoc index 4886f7b705..854ea917f2 100644 --- a/rules/S1451/python/rule.adoc +++ b/rules/S1451/python/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/rpg/rule.adoc b/rules/S1451/rpg/rule.adoc index 2f7992bd63..ac3c1b33f4 100644 --- a/rules/S1451/rpg/rule.adoc +++ b/rules/S1451/rpg/rule.adoc @@ -55,4 +55,5 @@ Whether the headerFormat is a regular expression (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/ruby/rule.adoc b/rules/S1451/ruby/rule.adoc index 8ca478d504..cc86ec0077 100644 --- a/rules/S1451/ruby/rule.adoc +++ b/rules/S1451/ruby/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/scala/rule.adoc b/rules/S1451/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1451/scala/rule.adoc +++ b/rules/S1451/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/swift/rule.adoc b/rules/S1451/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1451/swift/rule.adoc +++ b/rules/S1451/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/tsql/rule.adoc b/rules/S1451/tsql/rule.adoc index fc99aaa556..da40a47cae 100644 --- a/rules/S1451/tsql/rule.adoc +++ b/rules/S1451/tsql/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1451/vbnet/rule.adoc b/rules/S1451/vbnet/rule.adoc index 552f0a53de..410d5467ed 100644 --- a/rules/S1451/vbnet/rule.adoc +++ b/rules/S1451/vbnet/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1472/flex/rule.adoc b/rules/S1472/flex/rule.adoc index 401fcd8022..f3916a9be0 100644 --- a/rules/S1472/flex/rule.adoc +++ b/rules/S1472/flex/rule.adoc @@ -74,4 +74,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1472/javascript/rule.adoc b/rules/S1472/javascript/rule.adoc index cbee9d646f..c97a78cbd1 100644 --- a/rules/S1472/javascript/rule.adoc +++ b/rules/S1472/javascript/rule.adoc @@ -107,4 +107,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1477/abap/rule.adoc b/rules/S1477/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/abap/rule.adoc +++ b/rules/S1477/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/cfamily/rule.adoc b/rules/S1477/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/cfamily/rule.adoc +++ b/rules/S1477/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/cobol/rule.adoc b/rules/S1477/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/cobol/rule.adoc +++ b/rules/S1477/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/csharp/rule.adoc b/rules/S1477/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/csharp/rule.adoc +++ b/rules/S1477/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/flex/rule.adoc b/rules/S1477/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/flex/rule.adoc +++ b/rules/S1477/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/java/rule.adoc b/rules/S1477/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/java/rule.adoc +++ b/rules/S1477/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/javascript/rule.adoc b/rules/S1477/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/javascript/rule.adoc +++ b/rules/S1477/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/php/rule.adoc b/rules/S1477/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/php/rule.adoc +++ b/rules/S1477/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/pli/rule.adoc b/rules/S1477/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/pli/rule.adoc +++ b/rules/S1477/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/plsql/rule.adoc b/rules/S1477/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/plsql/rule.adoc +++ b/rules/S1477/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/python/rule.adoc b/rules/S1477/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/python/rule.adoc +++ b/rules/S1477/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/rpg/rule.adoc b/rules/S1477/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/rpg/rule.adoc +++ b/rules/S1477/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/swift/rule.adoc b/rules/S1477/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/swift/rule.adoc +++ b/rules/S1477/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/vb6/rule.adoc b/rules/S1477/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/vb6/rule.adoc +++ b/rules/S1477/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1477/vbnet/rule.adoc b/rules/S1477/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1477/vbnet/rule.adoc +++ b/rules/S1477/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1479/apex/rule.adoc b/rules/S1479/apex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1479/apex/rule.adoc +++ b/rules/S1479/apex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/cfamily/rule.adoc b/rules/S1479/cfamily/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1479/cfamily/rule.adoc +++ b/rules/S1479/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/cobol/rule.adoc b/rules/S1479/cobol/rule.adoc index 639c719934..8dcd2dad11 100644 --- a/rules/S1479/cobol/rule.adoc +++ b/rules/S1479/cobol/rule.adoc @@ -17,4 +17,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/csharp/rule.adoc b/rules/S1479/csharp/rule.adoc index 848b6a9990..51de45b573 100644 --- a/rules/S1479/csharp/rule.adoc +++ b/rules/S1479/csharp/rule.adoc @@ -76,6 +76,7 @@ public class TooManyCase ---- include::../resources-dotnet.adoc[] + * https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/statements/selection-statements#the-switch-statement[The `switch` statement] include::../rspecator-dotnet.adoc[] diff --git a/rules/S1479/go/rule.adoc b/rules/S1479/go/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1479/go/rule.adoc +++ b/rules/S1479/go/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/java/rule.adoc b/rules/S1479/java/rule.adoc index ebfe6e57f5..ff3e92c3cb 100644 --- a/rules/S1479/java/rule.adoc +++ b/rules/S1479/java/rule.adoc @@ -21,4 +21,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/javascript/rule.adoc b/rules/S1479/javascript/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1479/javascript/rule.adoc +++ b/rules/S1479/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/kotlin/rule.adoc b/rules/S1479/kotlin/rule.adoc index cc969da0dc..a1a1e9e133 100644 --- a/rules/S1479/kotlin/rule.adoc +++ b/rules/S1479/kotlin/rule.adoc @@ -17,4 +17,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/php/rule.adoc b/rules/S1479/php/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1479/php/rule.adoc +++ b/rules/S1479/php/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/plsql/rule.adoc b/rules/S1479/plsql/rule.adoc index f1ff343816..cf17a44081 100644 --- a/rules/S1479/plsql/rule.adoc +++ b/rules/S1479/plsql/rule.adoc @@ -28,4 +28,5 @@ Maximum number of "WHEN" (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/rspecator-dotnet.adoc b/rules/S1479/rspecator-dotnet.adoc index d5a24262f9..956558c9a2 100644 --- a/rules/S1479/rspecator-dotnet.adoc +++ b/rules/S1479/rspecator-dotnet.adoc @@ -15,4 +15,5 @@ include::parameters.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view,env-vscode[] diff --git a/rules/S1479/ruby/rule.adoc b/rules/S1479/ruby/rule.adoc index a0965bafbc..f46657798a 100644 --- a/rules/S1479/ruby/rule.adoc +++ b/rules/S1479/ruby/rule.adoc @@ -17,4 +17,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/scala/rule.adoc b/rules/S1479/scala/rule.adoc index 2c32819969..dbb56305ea 100644 --- a/rules/S1479/scala/rule.adoc +++ b/rules/S1479/scala/rule.adoc @@ -17,4 +17,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/swift/rule.adoc b/rules/S1479/swift/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1479/swift/rule.adoc +++ b/rules/S1479/swift/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/tsql/rule.adoc b/rules/S1479/tsql/rule.adoc index c776553114..2b9d17791b 100644 --- a/rules/S1479/tsql/rule.adoc +++ b/rules/S1479/tsql/rule.adoc @@ -31,4 +31,5 @@ Maximum number of "WHEN" (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/vb6/rule.adoc b/rules/S1479/vb6/rule.adoc index 34f8ab54e8..b0f7b37cfc 100644 --- a/rules/S1479/vb6/rule.adoc +++ b/rules/S1479/vb6/rule.adoc @@ -30,4 +30,5 @@ Maximum number of "Case" (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1479/vbnet/rule.adoc b/rules/S1479/vbnet/rule.adoc index 1605217b35..f820cc8125 100644 --- a/rules/S1479/vbnet/rule.adoc +++ b/rules/S1479/vbnet/rule.adoc @@ -68,6 +68,7 @@ End Class ---- include::../resources-dotnet.adoc[] + * https://learn.microsoft.com/en-us/dotnet/visual-basic/language-reference/statements/select-case-statement[Select...Case Statement] diff --git a/rules/S1481/abap/rule.adoc b/rules/S1481/abap/rule.adoc index bdf96f9cfe..81ca54c155 100644 --- a/rules/S1481/abap/rule.adoc +++ b/rules/S1481/abap/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/apex/rule.adoc b/rules/S1481/apex/rule.adoc index d1c13ec3b2..7ec56113cc 100644 --- a/rules/S1481/apex/rule.adoc +++ b/rules/S1481/apex/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/cfamily/rule.adoc b/rules/S1481/cfamily/rule.adoc index bc95ce2006..ea636a2797 100644 --- a/rules/S1481/cfamily/rule.adoc +++ b/rules/S1481/cfamily/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/csharp/rule.adoc b/rules/S1481/csharp/rule.adoc index 0751ad9a83..f358627f4d 100644 --- a/rules/S1481/csharp/rule.adoc +++ b/rules/S1481/csharp/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/flex/rule.adoc b/rules/S1481/flex/rule.adoc index 36e9fd74a9..a827f7385f 100644 --- a/rules/S1481/flex/rule.adoc +++ b/rules/S1481/flex/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/java/rule.adoc b/rules/S1481/java/rule.adoc index cc6c1e70c1..1b21207b1b 100644 --- a/rules/S1481/java/rule.adoc +++ b/rules/S1481/java/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/javascript/rule.adoc b/rules/S1481/javascript/rule.adoc index 2de7f0146e..c17b99c00d 100644 --- a/rules/S1481/javascript/rule.adoc +++ b/rules/S1481/javascript/rule.adoc @@ -108,4 +108,5 @@ Remove the declaration of the unused 'xxx' variable. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/kotlin/rule.adoc b/rules/S1481/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1481/kotlin/rule.adoc +++ b/rules/S1481/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/php/rule.adoc b/rules/S1481/php/rule.adoc index 6f4445c24d..3ac6dea732 100644 --- a/rules/S1481/php/rule.adoc +++ b/rules/S1481/php/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/plsql/rule.adoc b/rules/S1481/plsql/rule.adoc index d7b3f42a8c..af905602bd 100644 --- a/rules/S1481/plsql/rule.adoc +++ b/rules/S1481/plsql/rule.adoc @@ -16,4 +16,5 @@ Remove the unused local constant/exception/variable "xxx". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/python/rule.adoc b/rules/S1481/python/rule.adoc index 52f67c42af..d89e2de283 100644 --- a/rules/S1481/python/rule.adoc +++ b/rules/S1481/python/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/ruby/rule.adoc b/rules/S1481/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1481/ruby/rule.adoc +++ b/rules/S1481/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/scala/rule.adoc b/rules/S1481/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1481/scala/rule.adoc +++ b/rules/S1481/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/tsql/rule.adoc b/rules/S1481/tsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1481/tsql/rule.adoc +++ b/rules/S1481/tsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1481/vbnet/rule.adoc b/rules/S1481/vbnet/rule.adoc index 481062f487..674eea98b9 100644 --- a/rules/S1481/vbnet/rule.adoc +++ b/rules/S1481/vbnet/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1482/abap/rule.adoc b/rules/S1482/abap/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/abap/rule.adoc +++ b/rules/S1482/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/cfamily/rule.adoc b/rules/S1482/cfamily/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/cfamily/rule.adoc +++ b/rules/S1482/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/cobol/rule.adoc b/rules/S1482/cobol/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/cobol/rule.adoc +++ b/rules/S1482/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/csharp/rule.adoc b/rules/S1482/csharp/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/csharp/rule.adoc +++ b/rules/S1482/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/flex/rule.adoc b/rules/S1482/flex/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/flex/rule.adoc +++ b/rules/S1482/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/java/rule.adoc b/rules/S1482/java/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/java/rule.adoc +++ b/rules/S1482/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/javascript/rule.adoc b/rules/S1482/javascript/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/javascript/rule.adoc +++ b/rules/S1482/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/php/rule.adoc b/rules/S1482/php/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/php/rule.adoc +++ b/rules/S1482/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/pli/rule.adoc b/rules/S1482/pli/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/pli/rule.adoc +++ b/rules/S1482/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/plsql/rule.adoc b/rules/S1482/plsql/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/plsql/rule.adoc +++ b/rules/S1482/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/python/rule.adoc b/rules/S1482/python/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/python/rule.adoc +++ b/rules/S1482/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/rpg/rule.adoc b/rules/S1482/rpg/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/rpg/rule.adoc +++ b/rules/S1482/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/swift/rule.adoc b/rules/S1482/swift/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/swift/rule.adoc +++ b/rules/S1482/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/vb6/rule.adoc b/rules/S1482/vb6/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/vb6/rule.adoc +++ b/rules/S1482/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1482/vbnet/rule.adoc b/rules/S1482/vbnet/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1482/vbnet/rule.adoc +++ b/rules/S1482/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1483/abap/rule.adoc b/rules/S1483/abap/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/abap/rule.adoc +++ b/rules/S1483/abap/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/cfamily/rule.adoc b/rules/S1483/cfamily/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/cfamily/rule.adoc +++ b/rules/S1483/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/cobol/rule.adoc b/rules/S1483/cobol/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/cobol/rule.adoc +++ b/rules/S1483/cobol/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/csharp/rule.adoc b/rules/S1483/csharp/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/csharp/rule.adoc +++ b/rules/S1483/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/flex/rule.adoc b/rules/S1483/flex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/flex/rule.adoc +++ b/rules/S1483/flex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/java/rule.adoc b/rules/S1483/java/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/java/rule.adoc +++ b/rules/S1483/java/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/javascript/rule.adoc b/rules/S1483/javascript/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/javascript/rule.adoc +++ b/rules/S1483/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/php/rule.adoc b/rules/S1483/php/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/php/rule.adoc +++ b/rules/S1483/php/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/pli/rule.adoc b/rules/S1483/pli/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/pli/rule.adoc +++ b/rules/S1483/pli/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/plsql/rule.adoc b/rules/S1483/plsql/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/plsql/rule.adoc +++ b/rules/S1483/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/python/rule.adoc b/rules/S1483/python/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/python/rule.adoc +++ b/rules/S1483/python/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/rpg/rule.adoc b/rules/S1483/rpg/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/rpg/rule.adoc +++ b/rules/S1483/rpg/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/swift/rule.adoc b/rules/S1483/swift/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/swift/rule.adoc +++ b/rules/S1483/swift/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/vb6/rule.adoc b/rules/S1483/vb6/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/vb6/rule.adoc +++ b/rules/S1483/vb6/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1483/vbnet/rule.adoc b/rules/S1483/vbnet/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1483/vbnet/rule.adoc +++ b/rules/S1483/vbnet/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1484/abap/rule.adoc b/rules/S1484/abap/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/abap/rule.adoc +++ b/rules/S1484/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/cfamily/rule.adoc b/rules/S1484/cfamily/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/cfamily/rule.adoc +++ b/rules/S1484/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/cobol/rule.adoc b/rules/S1484/cobol/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/cobol/rule.adoc +++ b/rules/S1484/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/csharp/rule.adoc b/rules/S1484/csharp/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/csharp/rule.adoc +++ b/rules/S1484/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/flex/rule.adoc b/rules/S1484/flex/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/flex/rule.adoc +++ b/rules/S1484/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/html/rule.adoc b/rules/S1484/html/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/html/rule.adoc +++ b/rules/S1484/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/java/rule.adoc b/rules/S1484/java/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/java/rule.adoc +++ b/rules/S1484/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/javascript/rule.adoc b/rules/S1484/javascript/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/javascript/rule.adoc +++ b/rules/S1484/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/php/rule.adoc b/rules/S1484/php/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/php/rule.adoc +++ b/rules/S1484/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/pli/rule.adoc b/rules/S1484/pli/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/pli/rule.adoc +++ b/rules/S1484/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/plsql/rule.adoc b/rules/S1484/plsql/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/plsql/rule.adoc +++ b/rules/S1484/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/python/rule.adoc b/rules/S1484/python/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/python/rule.adoc +++ b/rules/S1484/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/rpg/rule.adoc b/rules/S1484/rpg/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/rpg/rule.adoc +++ b/rules/S1484/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/swift/rule.adoc b/rules/S1484/swift/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/swift/rule.adoc +++ b/rules/S1484/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/tsql/rule.adoc b/rules/S1484/tsql/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/tsql/rule.adoc +++ b/rules/S1484/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/vb6/rule.adoc b/rules/S1484/vb6/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/vb6/rule.adoc +++ b/rules/S1484/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/vbnet/rule.adoc b/rules/S1484/vbnet/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/vbnet/rule.adoc +++ b/rules/S1484/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1484/xml/rule.adoc b/rules/S1484/xml/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1484/xml/rule.adoc +++ b/rules/S1484/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1488/csharp/rule.adoc b/rules/S1488/csharp/rule.adoc index 312857efc6..4fbb18955b 100644 --- a/rules/S1488/csharp/rule.adoc +++ b/rules/S1488/csharp/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1488/java/rule.adoc b/rules/S1488/java/rule.adoc index 9aceebfe67..5f1774bb5e 100644 --- a/rules/S1488/java/rule.adoc +++ b/rules/S1488/java/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1488/javascript/rule.adoc b/rules/S1488/javascript/rule.adoc index bc1c8ca87d..39cc15160c 100644 --- a/rules/S1488/javascript/rule.adoc +++ b/rules/S1488/javascript/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1488/php/rule.adoc b/rules/S1488/php/rule.adoc index 60a19338f1..b89d2f86e9 100644 --- a/rules/S1488/php/rule.adoc +++ b/rules/S1488/php/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1492/abap/rule.adoc b/rules/S1492/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1492/abap/rule.adoc +++ b/rules/S1492/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1492/pli/rule.adoc b/rules/S1492/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1492/pli/rule.adoc +++ b/rules/S1492/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1492/plsql/rule.adoc b/rules/S1492/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1492/plsql/rule.adoc +++ b/rules/S1492/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1492/rpg/rule.adoc b/rules/S1492/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1492/rpg/rule.adoc +++ b/rules/S1492/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1493/cobol/rule.adoc b/rules/S1493/cobol/rule.adoc index 470c44c0d1..b94a3969ff 100644 --- a/rules/S1493/cobol/rule.adoc +++ b/rules/S1493/cobol/rule.adoc @@ -24,6 +24,7 @@ EXEC SQL SELECT * FROM tableName END-EXEC. ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1498/abap/rule.adoc b/rules/S1498/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1498/abap/rule.adoc +++ b/rules/S1498/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1498/cobol/rule.adoc b/rules/S1498/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1498/cobol/rule.adoc +++ b/rules/S1498/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1499/abap/rule.adoc b/rules/S1499/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1499/abap/rule.adoc +++ b/rules/S1499/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1499/pli/rule.adoc b/rules/S1499/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1499/pli/rule.adoc +++ b/rules/S1499/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1515/python/rule.adoc b/rules/S1515/python/rule.adoc index 766efc94e5..893f63813c 100644 --- a/rules/S1515/python/rule.adoc +++ b/rules/S1515/python/rule.adoc @@ -122,4 +122,5 @@ Primary: the first time the variable is used in the function/lambda (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1523/abap/rule.adoc b/rules/S1523/abap/rule.adoc index b908ad15b9..8ddad409fe 100644 --- a/rules/S1523/abap/rule.adoc +++ b/rules/S1523/abap/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1523/java/rule.adoc b/rules/S1523/java/rule.adoc index 6cc7f665be..fcd389bb01 100644 --- a/rules/S1523/java/rule.adoc +++ b/rules/S1523/java/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1523/javascript/rule.adoc b/rules/S1523/javascript/rule.adoc index 0306a59862..e002005c00 100644 --- a/rules/S1523/javascript/rule.adoc +++ b/rules/S1523/javascript/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1523/php/rule.adoc b/rules/S1523/php/rule.adoc index 144f0d2693..7fafcd95cd 100644 --- a/rules/S1523/php/rule.adoc +++ b/rules/S1523/php/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1523/plsql/rule.adoc b/rules/S1523/plsql/rule.adoc index 74aef7d1d8..ce5fc605d0 100644 --- a/rules/S1523/plsql/rule.adoc +++ b/rules/S1523/plsql/rule.adoc @@ -71,4 +71,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1523/python/rule.adoc b/rules/S1523/python/rule.adoc index aa808b24f2..6f8ad423ca 100644 --- a/rules/S1523/python/rule.adoc +++ b/rules/S1523/python/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1523/ruby/rule.adoc b/rules/S1523/ruby/rule.adoc index 87dc4ddf79..e7d7937240 100644 --- a/rules/S1523/ruby/rule.adoc +++ b/rules/S1523/ruby/rule.adoc @@ -20,4 +20,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1523/vbnet/rule.adoc b/rules/S1523/vbnet/rule.adoc index 50676adc83..cbf821e4e6 100644 --- a/rules/S1523/vbnet/rule.adoc +++ b/rules/S1523/vbnet/rule.adoc @@ -97,4 +97,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1524/javascript/rule.adoc b/rules/S1524/javascript/rule.adoc index a4d1b0d14f..0156eacc14 100644 --- a/rules/S1524/javascript/rule.adoc +++ b/rules/S1524/javascript/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1524/plsql/rule.adoc b/rules/S1524/plsql/rule.adoc index 6ebe870158..e93cd19d86 100644 --- a/rules/S1524/plsql/rule.adoc +++ b/rules/S1524/plsql/rule.adoc @@ -56,4 +56,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1527/java/rule.adoc b/rules/S1527/java/rule.adoc index ad34314c15..2423940cff 100644 --- a/rules/S1527/java/rule.adoc +++ b/rules/S1527/java/rule.adoc @@ -37,4 +37,5 @@ variable/param name (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1527/javascript/rule.adoc b/rules/S1527/javascript/rule.adoc index 501dd66c2f..e6f29aa81e 100644 --- a/rules/S1527/javascript/rule.adoc +++ b/rules/S1527/javascript/rule.adoc @@ -59,4 +59,5 @@ Rename "{0}" identifier to prevent potential conflicts with future evolutions of (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1536/javascript/rule.adoc b/rules/S1536/javascript/rule.adoc index 885ccae997..bec4e0aac5 100644 --- a/rules/S1536/javascript/rule.adoc +++ b/rules/S1536/javascript/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1536/php/rule.adoc b/rules/S1536/php/rule.adoc index ae14e309ad..a376400677 100644 --- a/rules/S1536/php/rule.adoc +++ b/rules/S1536/php/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1537/javascript/rule.adoc b/rules/S1537/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1537/javascript/rule.adoc +++ b/rules/S1537/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1541/abap/rule.adoc b/rules/S1541/abap/rule.adoc index 895c117de6..5dcf765f97 100644 --- a/rules/S1541/abap/rule.adoc +++ b/rules/S1541/abap/rule.adoc @@ -26,4 +26,5 @@ The maximum authorized complexity. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/cfamily/rule.adoc b/rules/S1541/cfamily/rule.adoc index 76892feeb1..f4bd552579 100644 --- a/rules/S1541/cfamily/rule.adoc +++ b/rules/S1541/cfamily/rule.adoc @@ -26,4 +26,5 @@ The maximum authorized complexity. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/csharp/rule.adoc b/rules/S1541/csharp/rule.adoc index dd31566598..9fe74d2bc2 100644 --- a/rules/S1541/csharp/rule.adoc +++ b/rules/S1541/csharp/rule.adoc @@ -28,4 +28,5 @@ The maximum authorized complexity. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/flex/rule.adoc b/rules/S1541/flex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1541/flex/rule.adoc +++ b/rules/S1541/flex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/java/rule.adoc b/rules/S1541/java/rule.adoc index 03ca4652a7..3e7e1edc63 100644 --- a/rules/S1541/java/rule.adoc +++ b/rules/S1541/java/rule.adoc @@ -23,4 +23,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/javascript/rule.adoc b/rules/S1541/javascript/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1541/javascript/rule.adoc +++ b/rules/S1541/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/php/rule.adoc b/rules/S1541/php/rule.adoc index 895c117de6..5dcf765f97 100644 --- a/rules/S1541/php/rule.adoc +++ b/rules/S1541/php/rule.adoc @@ -26,4 +26,5 @@ The maximum authorized complexity. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/plsql/rule.adoc b/rules/S1541/plsql/rule.adoc index 38beefe6ac..d2d3c9c66a 100644 --- a/rules/S1541/plsql/rule.adoc +++ b/rules/S1541/plsql/rule.adoc @@ -31,4 +31,5 @@ The maximum function and procedure complexity allowed. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/python/rule.adoc b/rules/S1541/python/rule.adoc index 9adb79cadf..3049ccef04 100644 --- a/rules/S1541/python/rule.adoc +++ b/rules/S1541/python/rule.adoc @@ -26,4 +26,5 @@ The maximum authorized complexity. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/rpg/rule.adoc b/rules/S1541/rpg/rule.adoc index 8d7b39de49..ea867aff9a 100644 --- a/rules/S1541/rpg/rule.adoc +++ b/rules/S1541/rpg/rule.adoc @@ -30,4 +30,5 @@ The maximum authorized complexity. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/swift/rule.adoc b/rules/S1541/swift/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1541/swift/rule.adoc +++ b/rules/S1541/swift/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/vb6/rule.adoc b/rules/S1541/vb6/rule.adoc index 91d2614fe1..f749921016 100644 --- a/rules/S1541/vb6/rule.adoc +++ b/rules/S1541/vb6/rule.adoc @@ -19,4 +19,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1541/vbnet/rule.adoc b/rules/S1541/vbnet/rule.adoc index 1faa79bab5..5d17702b38 100644 --- a/rules/S1541/vbnet/rule.adoc +++ b/rules/S1541/vbnet/rule.adoc @@ -28,4 +28,5 @@ The maximum authorized complexity. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1542/abap/rule.adoc b/rules/S1542/abap/rule.adoc index 5b2fa9ef08..6db066256a 100644 --- a/rules/S1542/abap/rule.adoc +++ b/rules/S1542/abap/rule.adoc @@ -48,4 +48,5 @@ Regular expression used to check the function names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1542/javascript/rule.adoc b/rules/S1542/javascript/rule.adoc index b6ce1fa57e..d0d2feea1d 100644 --- a/rules/S1542/javascript/rule.adoc +++ b/rules/S1542/javascript/rule.adoc @@ -34,4 +34,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1542/php/rule.adoc b/rules/S1542/php/rule.adoc index 2a47614baf..401fe3d7b5 100644 --- a/rules/S1542/php/rule.adoc +++ b/rules/S1542/php/rule.adoc @@ -35,4 +35,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1542/pli/rule.adoc b/rules/S1542/pli/rule.adoc index 1fd6260574..ddad5b42a6 100644 --- a/rules/S1542/pli/rule.adoc +++ b/rules/S1542/pli/rule.adoc @@ -44,4 +44,5 @@ Regular expression used to check the function names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1542/plsql/rule.adoc b/rules/S1542/plsql/rule.adoc index ae81944a45..185afde102 100644 --- a/rules/S1542/plsql/rule.adoc +++ b/rules/S1542/plsql/rule.adoc @@ -39,4 +39,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1542/python/rule.adoc b/rules/S1542/python/rule.adoc index b871fe3fa1..0fb01bb6aa 100644 --- a/rules/S1542/python/rule.adoc +++ b/rules/S1542/python/rule.adoc @@ -46,4 +46,5 @@ Regular expression used to check the function names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1542/tsql/rule.adoc b/rules/S1542/tsql/rule.adoc index 3d2b3a8301..95dcb4916d 100644 --- a/rules/S1542/tsql/rule.adoc +++ b/rules/S1542/tsql/rule.adoc @@ -57,4 +57,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1542/vb6/rule.adoc b/rules/S1542/vb6/rule.adoc index 9246669590..49a3c46ddb 100644 --- a/rules/S1542/vb6/rule.adoc +++ b/rules/S1542/vb6/rule.adoc @@ -49,4 +49,5 @@ Regular expression used to check the function names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1542/vbnet/rule.adoc b/rules/S1542/vbnet/rule.adoc index ed396e057d..de025ea2e2 100644 --- a/rules/S1542/vbnet/rule.adoc +++ b/rules/S1542/vbnet/rule.adoc @@ -67,4 +67,5 @@ Regular expression used to check the function names against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1544/abap/rule.adoc b/rules/S1544/abap/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1544/abap/rule.adoc +++ b/rules/S1544/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1544/cobol/rule.adoc b/rules/S1544/cobol/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1544/cobol/rule.adoc +++ b/rules/S1544/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1545/abap/rule.adoc b/rules/S1545/abap/rule.adoc index d67d8be3c9..6342fac95a 100644 --- a/rules/S1545/abap/rule.adoc +++ b/rules/S1545/abap/rule.adoc @@ -42,4 +42,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1545/cfamily/rule.adoc b/rules/S1545/cfamily/rule.adoc index ae9cf2ddfd..4b93033566 100644 --- a/rules/S1545/cfamily/rule.adoc +++ b/rules/S1545/cfamily/rule.adoc @@ -42,4 +42,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1545/pli/rule.adoc b/rules/S1545/pli/rule.adoc index 9df694249e..10ff7e2e96 100644 --- a/rules/S1545/pli/rule.adoc +++ b/rules/S1545/pli/rule.adoc @@ -46,4 +46,5 @@ Regular expression used to check the names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1573/cobol/rule.adoc b/rules/S1573/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1573/cobol/rule.adoc +++ b/rules/S1573/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1573/plsql/rule.adoc b/rules/S1573/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1573/plsql/rule.adoc +++ b/rules/S1573/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1578/cfamily/rule.adoc b/rules/S1578/cfamily/rule.adoc index e5a6093b21..390fdb42ce 100644 --- a/rules/S1578/cfamily/rule.adoc +++ b/rules/S1578/cfamily/rule.adoc @@ -21,4 +21,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1578/cobol/rule.adoc b/rules/S1578/cobol/rule.adoc index 872165e222..7593298547 100644 --- a/rules/S1578/cobol/rule.adoc +++ b/rules/S1578/cobol/rule.adoc @@ -26,4 +26,5 @@ Regular expression used to check the file names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1578/php/rule.adoc b/rules/S1578/php/rule.adoc index 10cbed1931..bcb11377ca 100644 --- a/rules/S1578/php/rule.adoc +++ b/rules/S1578/php/rule.adoc @@ -26,4 +26,5 @@ Regular expression used to check the file names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1578/pli/rule.adoc b/rules/S1578/pli/rule.adoc index 547c48bb70..6669cb0bb6 100644 --- a/rules/S1578/pli/rule.adoc +++ b/rules/S1578/pli/rule.adoc @@ -26,4 +26,5 @@ Regular expression used to check the file names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1578/python/rule.adoc b/rules/S1578/python/rule.adoc index b68ad74a6a..192086a8ba 100644 --- a/rules/S1578/python/rule.adoc +++ b/rules/S1578/python/rule.adoc @@ -32,4 +32,5 @@ Regular expression used to check the module names against. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1583/cobol/rule.adoc b/rules/S1583/cobol/rule.adoc index 8159c3ebda..284ed14147 100644 --- a/rules/S1583/cobol/rule.adoc +++ b/rules/S1583/cobol/rule.adoc @@ -9,4 +9,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1583/plsql/rule.adoc b/rules/S1583/plsql/rule.adoc index cd2062c120..046e5c005b 100644 --- a/rules/S1583/plsql/rule.adoc +++ b/rules/S1583/plsql/rule.adoc @@ -8,4 +8,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1590/cobol/rule.adoc b/rules/S1590/cobol/rule.adoc index e261b1323d..0915bcdc8e 100644 --- a/rules/S1590/cobol/rule.adoc +++ b/rules/S1590/cobol/rule.adoc @@ -16,4 +16,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1590/plsql/rule.adoc b/rules/S1590/plsql/rule.adoc index ec331bdc18..8e4473e220 100644 --- a/rules/S1590/plsql/rule.adoc +++ b/rules/S1590/plsql/rule.adoc @@ -52,4 +52,5 @@ Regular expression describing the names of tables which should be ignored (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1590/tsql/rule.adoc b/rules/S1590/tsql/rule.adoc index 1109c22359..7f3cd169ef 100644 --- a/rules/S1590/tsql/rule.adoc +++ b/rules/S1590/tsql/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1595/cobol/rule.adoc b/rules/S1595/cobol/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S1595/cobol/rule.adoc +++ b/rules/S1595/cobol/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1601/rpg/rule.adoc b/rules/S1601/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1601/rpg/rule.adoc +++ b/rules/S1601/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/abap/rule.adoc b/rules/S1606/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/abap/rule.adoc +++ b/rules/S1606/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/cfamily/rule.adoc b/rules/S1606/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/cfamily/rule.adoc +++ b/rules/S1606/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/cobol/rule.adoc b/rules/S1606/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/cobol/rule.adoc +++ b/rules/S1606/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/csharp/rule.adoc b/rules/S1606/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/csharp/rule.adoc +++ b/rules/S1606/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/flex/rule.adoc b/rules/S1606/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/flex/rule.adoc +++ b/rules/S1606/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/java/rule.adoc b/rules/S1606/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/java/rule.adoc +++ b/rules/S1606/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/javascript/rule.adoc b/rules/S1606/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/javascript/rule.adoc +++ b/rules/S1606/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/php/rule.adoc b/rules/S1606/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/php/rule.adoc +++ b/rules/S1606/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/pli/rule.adoc b/rules/S1606/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/pli/rule.adoc +++ b/rules/S1606/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/plsql/rule.adoc b/rules/S1606/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/plsql/rule.adoc +++ b/rules/S1606/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/python/rule.adoc b/rules/S1606/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/python/rule.adoc +++ b/rules/S1606/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/rpg/rule.adoc b/rules/S1606/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/rpg/rule.adoc +++ b/rules/S1606/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/swift/rule.adoc b/rules/S1606/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/swift/rule.adoc +++ b/rules/S1606/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/vb6/rule.adoc b/rules/S1606/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/vb6/rule.adoc +++ b/rules/S1606/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1606/vbnet/rule.adoc b/rules/S1606/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1606/vbnet/rule.adoc +++ b/rules/S1606/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1607/csharp/rule.adoc b/rules/S1607/csharp/rule.adoc index d78177ea39..fa2b82046e 100644 --- a/rules/S1607/csharp/rule.adoc +++ b/rules/S1607/csharp/rule.adoc @@ -28,4 +28,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1607/java/rule.adoc b/rules/S1607/java/rule.adoc index e7877d8776..4650dc4752 100644 --- a/rules/S1607/java/rule.adoc +++ b/rules/S1607/java/rule.adoc @@ -61,4 +61,5 @@ For assumeX calls: This assumption is called with a boolean constant; remove it (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1607/php/rule.adoc b/rules/S1607/php/rule.adoc index bc06e3d9f3..ed99da13c9 100644 --- a/rules/S1607/php/rule.adoc +++ b/rules/S1607/php/rule.adoc @@ -54,4 +54,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1607/python/rule.adoc b/rules/S1607/python/rule.adoc index f67c17a069..8dbc7e87b1 100644 --- a/rules/S1607/python/rule.adoc +++ b/rules/S1607/python/rule.adoc @@ -55,4 +55,5 @@ Primary: (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1614/plsql/rule.adoc b/rules/S1614/plsql/rule.adoc index cb65715d98..aca82fd45f 100644 --- a/rules/S1614/plsql/rule.adoc +++ b/rules/S1614/plsql/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1614/tsql/rule.adoc b/rules/S1614/tsql/rule.adoc index 903a400f61..c7305d2b3c 100644 --- a/rules/S1614/tsql/rule.adoc +++ b/rules/S1614/tsql/rule.adoc @@ -61,4 +61,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1615/plsql/rule.adoc b/rules/S1615/plsql/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1615/plsql/rule.adoc +++ b/rules/S1615/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1631/cobol/rule.adoc b/rules/S1631/cobol/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1631/cobol/rule.adoc +++ b/rules/S1631/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1631/plsql/rule.adoc b/rules/S1631/plsql/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1631/plsql/rule.adoc +++ b/rules/S1631/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1631/rpg/rule.adoc b/rules/S1631/rpg/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S1631/rpg/rule.adoc +++ b/rules/S1631/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1631/tsql/rule.adoc b/rules/S1631/tsql/rule.adoc index caf141c1e4..3214a33513 100644 --- a/rules/S1631/tsql/rule.adoc +++ b/rules/S1631/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1639/abap/rule.adoc b/rules/S1639/abap/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1639/abap/rule.adoc +++ b/rules/S1639/abap/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1642/cfamily/rule.adoc b/rules/S1642/cfamily/rule.adoc index 0a6a172292..21140f1d9d 100644 --- a/rules/S1642/cfamily/rule.adoc +++ b/rules/S1642/cfamily/rule.adoc @@ -42,4 +42,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1642/swift/rule.adoc b/rules/S1642/swift/rule.adoc index 58473aaa59..fdb46ee0c4 100644 --- a/rules/S1642/swift/rule.adoc +++ b/rules/S1642/swift/rule.adoc @@ -40,4 +40,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1643/csharp/rule.adoc b/rules/S1643/csharp/rule.adoc index fe26db7128..03f030c0d0 100644 --- a/rules/S1643/csharp/rule.adoc +++ b/rules/S1643/csharp/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1643/java/rule.adoc b/rules/S1643/java/rule.adoc index e8e49ee399..94e73b5b5d 100644 --- a/rules/S1643/java/rule.adoc +++ b/rules/S1643/java/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1643/vbnet/rule.adoc b/rules/S1643/vbnet/rule.adoc index ca63058193..a3789de678 100644 --- a/rules/S1643/vbnet/rule.adoc +++ b/rules/S1643/vbnet/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/abap/rule.adoc b/rules/S1656/abap/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1656/abap/rule.adoc +++ b/rules/S1656/abap/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/apex/rule.adoc b/rules/S1656/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1656/apex/rule.adoc +++ b/rules/S1656/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/cfamily/rule.adoc b/rules/S1656/cfamily/rule.adoc index 0f4f7b36f0..6e5b97c37f 100644 --- a/rules/S1656/cfamily/rule.adoc +++ b/rules/S1656/cfamily/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/cobol/rule.adoc b/rules/S1656/cobol/rule.adoc index 7029f5569d..c5211dcc13 100644 --- a/rules/S1656/cobol/rule.adoc +++ b/rules/S1656/cobol/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/csharp/rule.adoc b/rules/S1656/csharp/rule.adoc index f00b99217c..09d499ab5d 100644 --- a/rules/S1656/csharp/rule.adoc +++ b/rules/S1656/csharp/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/go/rule.adoc b/rules/S1656/go/rule.adoc index bbf252013b..e86e558909 100644 --- a/rules/S1656/go/rule.adoc +++ b/rules/S1656/go/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/java/rule.adoc b/rules/S1656/java/rule.adoc index 64a2e9add0..3aebca7332 100644 --- a/rules/S1656/java/rule.adoc +++ b/rules/S1656/java/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/javascript/rule.adoc b/rules/S1656/javascript/rule.adoc index 390386ffe9..72e624efa5 100644 --- a/rules/S1656/javascript/rule.adoc +++ b/rules/S1656/javascript/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/kotlin/rule.adoc b/rules/S1656/kotlin/rule.adoc index 2fdef1b444..86d956e46d 100644 --- a/rules/S1656/kotlin/rule.adoc +++ b/rules/S1656/kotlin/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/php/rule.adoc b/rules/S1656/php/rule.adoc index fe04f0d1ab..f6797b39d5 100644 --- a/rules/S1656/php/rule.adoc +++ b/rules/S1656/php/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/plsql/rule.adoc b/rules/S1656/plsql/rule.adoc index 3e1fe2cdbd..494075cd61 100644 --- a/rules/S1656/plsql/rule.adoc +++ b/rules/S1656/plsql/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/python/rule.adoc b/rules/S1656/python/rule.adoc index 15b4b8ca4d..5277816c3e 100644 --- a/rules/S1656/python/rule.adoc +++ b/rules/S1656/python/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/rpg/rule.adoc b/rules/S1656/rpg/rule.adoc index 377cddef77..bd882a020a 100644 --- a/rules/S1656/rpg/rule.adoc +++ b/rules/S1656/rpg/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/ruby/rule.adoc b/rules/S1656/ruby/rule.adoc index 7d3f8a397e..d2956664ac 100644 --- a/rules/S1656/ruby/rule.adoc +++ b/rules/S1656/ruby/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/scala/rule.adoc b/rules/S1656/scala/rule.adoc index 30a6139f5d..39c49493aa 100644 --- a/rules/S1656/scala/rule.adoc +++ b/rules/S1656/scala/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/tsql/rule.adoc b/rules/S1656/tsql/rule.adoc index b59e98f7ab..d6974a8f93 100644 --- a/rules/S1656/tsql/rule.adoc +++ b/rules/S1656/tsql/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1656/vbnet/rule.adoc b/rules/S1656/vbnet/rule.adoc index 9741746242..bc0dddfefd 100644 --- a/rules/S1656/vbnet/rule.adoc +++ b/rules/S1656/vbnet/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1659/csharp/rule.adoc b/rules/S1659/csharp/rule.adoc index 9dcd9a5e8c..fad3dfadaa 100644 --- a/rules/S1659/csharp/rule.adoc +++ b/rules/S1659/csharp/rule.adoc @@ -51,4 +51,5 @@ Declare "XXX" in a separate statement. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1659/go/rule.adoc b/rules/S1659/go/rule.adoc index 50969db050..bb43027a8d 100644 --- a/rules/S1659/go/rule.adoc +++ b/rules/S1659/go/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1659/java/rule.adoc b/rules/S1659/java/rule.adoc index a739adfe29..c45aa2aaf5 100644 --- a/rules/S1659/java/rule.adoc +++ b/rules/S1659/java/rule.adoc @@ -50,4 +50,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1659/swift/rule.adoc b/rules/S1659/swift/rule.adoc index 394939bf37..a109a0dd27 100644 --- a/rules/S1659/swift/rule.adoc +++ b/rules/S1659/swift/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1659/tsql/rule.adoc b/rules/S1659/tsql/rule.adoc index 8b01069bd5..8fb4c3ad9e 100644 --- a/rules/S1659/tsql/rule.adoc +++ b/rules/S1659/tsql/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1659/vb6/rule.adoc b/rules/S1659/vb6/rule.adoc index 70ed1a2129..e9577a4915 100644 --- a/rules/S1659/vb6/rule.adoc +++ b/rules/S1659/vb6/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1659/vbnet/rule.adoc b/rules/S1659/vbnet/rule.adoc index 8984612c51..5e54f23cb1 100644 --- a/rules/S1659/vbnet/rule.adoc +++ b/rules/S1659/vbnet/rule.adoc @@ -39,4 +39,5 @@ Declare "XXX" in a separate statement. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1669/abap/rule.adoc b/rules/S1669/abap/rule.adoc index 541eb6b1b1..3cf4bf319b 100644 --- a/rules/S1669/abap/rule.adoc +++ b/rules/S1669/abap/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1669/cfamily/rule.adoc b/rules/S1669/cfamily/rule.adoc index e0da230aa6..a005eef405 100644 --- a/rules/S1669/cfamily/rule.adoc +++ b/rules/S1669/cfamily/rule.adoc @@ -37,4 +37,5 @@ Replace XXX with another name (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1669/pli/rule.adoc b/rules/S1669/pli/rule.adoc index 5bca815ce8..d82ad01bb8 100644 --- a/rules/S1669/pli/rule.adoc +++ b/rules/S1669/pli/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1694/csharp/rule.adoc b/rules/S1694/csharp/rule.adoc index 8ab224103f..53c75dc64c 100644 --- a/rules/S1694/csharp/rule.adoc +++ b/rules/S1694/csharp/rule.adoc @@ -89,4 +89,5 @@ Convert this "abstract" (class|record) to (an interface|a concrete type with a p (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1694/java/rule.adoc b/rules/S1694/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1694/java/rule.adoc +++ b/rules/S1694/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1695/java/rule.adoc b/rules/S1695/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1695/java/rule.adoc +++ b/rules/S1695/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1696/csharp/rule.adoc b/rules/S1696/csharp/rule.adoc index aed3bca7d2..30707ec582 100644 --- a/rules/S1696/csharp/rule.adoc +++ b/rules/S1696/csharp/rule.adoc @@ -66,4 +66,5 @@ throw new NullReferenceException() (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1696/java/rule.adoc b/rules/S1696/java/rule.adoc index 7788b66096..63df25f65d 100644 --- a/rules/S1696/java/rule.adoc +++ b/rules/S1696/java/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1697/csharp/rule.adoc b/rules/S1697/csharp/rule.adoc index b4b7c0b10b..0282c20f9a 100644 --- a/rules/S1697/csharp/rule.adoc +++ b/rules/S1697/csharp/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1697/java/rule.adoc b/rules/S1697/java/rule.adoc index b0944843f0..3abab0a4ce 100644 --- a/rules/S1697/java/rule.adoc +++ b/rules/S1697/java/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1698/java/rule.adoc b/rules/S1698/java/rule.adoc index b2908ff590..3e23d9ddbf 100644 --- a/rules/S1698/java/rule.adoc +++ b/rules/S1698/java/rule.adoc @@ -96,4 +96,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1707/cfamily/rule.adoc b/rules/S1707/cfamily/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1707/cfamily/rule.adoc +++ b/rules/S1707/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1707/python/rule.adoc b/rules/S1707/python/rule.adoc index f7e8a28ac4..f1faafbad5 100644 --- a/rules/S1707/python/rule.adoc +++ b/rules/S1707/python/rule.adoc @@ -31,4 +31,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1735/cobol/rule.adoc b/rules/S1735/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1735/cobol/rule.adoc +++ b/rules/S1735/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1735/tsql/rule.adoc b/rules/S1735/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1735/tsql/rule.adoc +++ b/rules/S1735/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1737/cobol/rule.adoc b/rules/S1737/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1737/cobol/rule.adoc +++ b/rules/S1737/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1738/cobol/rule.adoc b/rules/S1738/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1738/cobol/rule.adoc +++ b/rules/S1738/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1739/abap/rule.adoc b/rules/S1739/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1739/abap/rule.adoc +++ b/rules/S1739/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1739/cobol/rule.adoc b/rules/S1739/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1739/cobol/rule.adoc +++ b/rules/S1739/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1739/plsql/rule.adoc b/rules/S1739/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1739/plsql/rule.adoc +++ b/rules/S1739/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1739/tsql/rule.adoc b/rules/S1739/tsql/rule.adoc index f9f8377de5..27f4e9e367 100644 --- a/rules/S1739/tsql/rule.adoc +++ b/rules/S1739/tsql/rule.adoc @@ -3,6 +3,7 @@ When the value of a ``++LIKE++`` clause starts with '%', '[...]' or '_', indexes on the searched column are ignored, and a full table scan is performed instead. include::../noncompliant.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1741/cobol/rule.adoc b/rules/S1741/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1741/cobol/rule.adoc +++ b/rules/S1741/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1741/plsql/rule.adoc b/rules/S1741/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1741/plsql/rule.adoc +++ b/rules/S1741/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1742/cobol/rule.adoc b/rules/S1742/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1742/cobol/rule.adoc +++ b/rules/S1742/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1742/tsql/rule.adoc b/rules/S1742/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1742/tsql/rule.adoc +++ b/rules/S1742/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1745/cobol/rule.adoc b/rules/S1745/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1745/cobol/rule.adoc +++ b/rules/S1745/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1745/plsql/rule.adoc b/rules/S1745/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1745/plsql/rule.adoc +++ b/rules/S1745/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1745/tsql/rule.adoc b/rules/S1745/tsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1745/tsql/rule.adoc +++ b/rules/S1745/tsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/abap/rule.adoc b/rules/S1751/abap/rule.adoc index f2df0bf301..40390a94c9 100644 --- a/rules/S1751/abap/rule.adoc +++ b/rules/S1751/abap/rule.adoc @@ -42,4 +42,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/cfamily/rule.adoc b/rules/S1751/cfamily/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1751/cfamily/rule.adoc +++ b/rules/S1751/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/csharp/rule.adoc b/rules/S1751/csharp/rule.adoc index ce74720f42..133ed72e5e 100644 --- a/rules/S1751/csharp/rule.adoc +++ b/rules/S1751/csharp/rule.adoc @@ -54,4 +54,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/go/rule.adoc b/rules/S1751/go/rule.adoc index ad67dcdb2d..564fd3df5c 100644 --- a/rules/S1751/go/rule.adoc +++ b/rules/S1751/go/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/java/rule.adoc b/rules/S1751/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1751/java/rule.adoc +++ b/rules/S1751/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/javascript/rule.adoc b/rules/S1751/javascript/rule.adoc index 1c5a9541d1..5968aa4a44 100644 --- a/rules/S1751/javascript/rule.adoc +++ b/rules/S1751/javascript/rule.adoc @@ -53,4 +53,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/php/rule.adoc b/rules/S1751/php/rule.adoc index 0f6d2dac86..ba1fe554cd 100644 --- a/rules/S1751/php/rule.adoc +++ b/rules/S1751/php/rule.adoc @@ -53,4 +53,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/plsql/rule.adoc b/rules/S1751/plsql/rule.adoc index 52bc4681a7..b0f3691649 100644 --- a/rules/S1751/plsql/rule.adoc +++ b/rules/S1751/plsql/rule.adoc @@ -44,4 +44,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/python/rule.adoc b/rules/S1751/python/rule.adoc index 54f66342ac..e3b4efb8f5 100644 --- a/rules/S1751/python/rule.adoc +++ b/rules/S1751/python/rule.adoc @@ -39,4 +39,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/swift/rule.adoc b/rules/S1751/swift/rule.adoc index fbf9f7ec20..4be5fbb3d5 100644 --- a/rules/S1751/swift/rule.adoc +++ b/rules/S1751/swift/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/tsql/rule.adoc b/rules/S1751/tsql/rule.adoc index 3068bcb6c8..afaf047606 100644 --- a/rules/S1751/tsql/rule.adoc +++ b/rules/S1751/tsql/rule.adoc @@ -64,4 +64,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1751/vbnet/rule.adoc b/rules/S1751/vbnet/rule.adoc index 9bc0167824..c3ffb1bad4 100644 --- a/rules/S1751/vbnet/rule.adoc +++ b/rules/S1751/vbnet/rule.adoc @@ -53,4 +53,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/apex/rule.adoc b/rules/S1763/apex/rule.adoc index 7a486f2407..5976116930 100644 --- a/rules/S1763/apex/rule.adoc +++ b/rules/S1763/apex/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/cfamily/rule.adoc b/rules/S1763/cfamily/rule.adoc index 66c8f92b10..ce4dc80bc5 100644 --- a/rules/S1763/cfamily/rule.adoc +++ b/rules/S1763/cfamily/rule.adoc @@ -32,4 +32,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/go/rule.adoc b/rules/S1763/go/rule.adoc index 2074af8361..3bcad4735f 100644 --- a/rules/S1763/go/rule.adoc +++ b/rules/S1763/go/rule.adoc @@ -38,4 +38,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/javascript/rule.adoc b/rules/S1763/javascript/rule.adoc index 1a652def22..b8e3e0528e 100644 --- a/rules/S1763/javascript/rule.adoc +++ b/rules/S1763/javascript/rule.adoc @@ -43,4 +43,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/kotlin/rule.adoc b/rules/S1763/kotlin/rule.adoc index 4ec6ec2d29..8df4e6c893 100644 --- a/rules/S1763/kotlin/rule.adoc +++ b/rules/S1763/kotlin/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/php/rule.adoc b/rules/S1763/php/rule.adoc index 86119aacfd..9b2af7b632 100644 --- a/rules/S1763/php/rule.adoc +++ b/rules/S1763/php/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/plsql/rule.adoc b/rules/S1763/plsql/rule.adoc index 9c10e14997..db44d0ef6f 100644 --- a/rules/S1763/plsql/rule.adoc +++ b/rules/S1763/plsql/rule.adoc @@ -60,4 +60,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/python/rule.adoc b/rules/S1763/python/rule.adoc index 7c031f7086..c3ddd3d9c2 100644 --- a/rules/S1763/python/rule.adoc +++ b/rules/S1763/python/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/ruby/rule.adoc b/rules/S1763/ruby/rule.adoc index db7ebd196d..6133828e1b 100644 --- a/rules/S1763/ruby/rule.adoc +++ b/rules/S1763/ruby/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/scala/rule.adoc b/rules/S1763/scala/rule.adoc index 7d3809a74b..a4cb05c6e1 100644 --- a/rules/S1763/scala/rule.adoc +++ b/rules/S1763/scala/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/swift/rule.adoc b/rules/S1763/swift/rule.adoc index f2f99a9e1f..488ba6afa6 100644 --- a/rules/S1763/swift/rule.adoc +++ b/rules/S1763/swift/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1763/tsql/rule.adoc b/rules/S1763/tsql/rule.adoc index f84e1d3797..efb06ad91d 100644 --- a/rules/S1763/tsql/rule.adoc +++ b/rules/S1763/tsql/rule.adoc @@ -45,4 +45,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/abap/rule.adoc b/rules/S1764/abap/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1764/abap/rule.adoc +++ b/rules/S1764/abap/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/apex/rule.adoc b/rules/S1764/apex/rule.adoc index f5ee6c87f8..4bc26a9a6f 100644 --- a/rules/S1764/apex/rule.adoc +++ b/rules/S1764/apex/rule.adoc @@ -44,4 +44,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/cfamily/rule.adoc b/rules/S1764/cfamily/rule.adoc index 0f45044191..d6186ffad4 100644 --- a/rules/S1764/cfamily/rule.adoc +++ b/rules/S1764/cfamily/rule.adoc @@ -57,4 +57,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/cobol/rule.adoc b/rules/S1764/cobol/rule.adoc index 6350566ea9..e729295327 100644 --- a/rules/S1764/cobol/rule.adoc +++ b/rules/S1764/cobol/rule.adoc @@ -54,4 +54,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/csharp/rule.adoc b/rules/S1764/csharp/rule.adoc index f2a6ffab95..ce8760b3b6 100644 --- a/rules/S1764/csharp/rule.adoc +++ b/rules/S1764/csharp/rule.adoc @@ -55,4 +55,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/go/rule.adoc b/rules/S1764/go/rule.adoc index b42e514553..b67a243095 100644 --- a/rules/S1764/go/rule.adoc +++ b/rules/S1764/go/rule.adoc @@ -41,4 +41,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/javascript/rule.adoc b/rules/S1764/javascript/rule.adoc index 1a1c903967..41d3a95989 100644 --- a/rules/S1764/javascript/rule.adoc +++ b/rules/S1764/javascript/rule.adoc @@ -52,4 +52,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/kotlin/rule.adoc b/rules/S1764/kotlin/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1764/kotlin/rule.adoc +++ b/rules/S1764/kotlin/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/php/rule.adoc b/rules/S1764/php/rule.adoc index aca1f033f5..445781c92e 100644 --- a/rules/S1764/php/rule.adoc +++ b/rules/S1764/php/rule.adoc @@ -50,4 +50,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/plsql/rule.adoc b/rules/S1764/plsql/rule.adoc index deba9bfb64..685e84e3b8 100644 --- a/rules/S1764/plsql/rule.adoc +++ b/rules/S1764/plsql/rule.adoc @@ -48,4 +48,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/python/rule.adoc b/rules/S1764/python/rule.adoc index 08bec59cc2..f64a62d51f 100644 --- a/rules/S1764/python/rule.adoc +++ b/rules/S1764/python/rule.adoc @@ -48,4 +48,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/rpg/rule.adoc b/rules/S1764/rpg/rule.adoc index d2252cbd97..22a0afda8e 100644 --- a/rules/S1764/rpg/rule.adoc +++ b/rules/S1764/rpg/rule.adoc @@ -51,4 +51,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/ruby/rule.adoc b/rules/S1764/ruby/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1764/ruby/rule.adoc +++ b/rules/S1764/ruby/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/scala/rule.adoc b/rules/S1764/scala/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1764/scala/rule.adoc +++ b/rules/S1764/scala/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/swift/rule.adoc b/rules/S1764/swift/rule.adoc index 4af58a3fd7..e488d73008 100644 --- a/rules/S1764/swift/rule.adoc +++ b/rules/S1764/swift/rule.adoc @@ -53,4 +53,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/tsql/rule.adoc b/rules/S1764/tsql/rule.adoc index 8aea8938e6..f6ddc10f7c 100644 --- a/rules/S1764/tsql/rule.adoc +++ b/rules/S1764/tsql/rule.adoc @@ -24,4 +24,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1764/vbnet/rule.adoc b/rules/S1764/vbnet/rule.adoc index 5a268b8a20..4a5d13d4a9 100644 --- a/rules/S1764/vbnet/rule.adoc +++ b/rules/S1764/vbnet/rule.adoc @@ -45,4 +45,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1772/cfamily/rule.adoc b/rules/S1772/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1772/cfamily/rule.adoc +++ b/rules/S1772/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1774/cfamily/rule.adoc b/rules/S1774/cfamily/rule.adoc index 41649f3b9f..4efc8a87ac 100644 --- a/rules/S1774/cfamily/rule.adoc +++ b/rules/S1774/cfamily/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1774/java/rule.adoc b/rules/S1774/java/rule.adoc index dd9ad63875..28abaf60ea 100644 --- a/rules/S1774/java/rule.adoc +++ b/rules/S1774/java/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1774/javascript/rule.adoc b/rules/S1774/javascript/rule.adoc index b6536c7ed5..16531c2753 100644 --- a/rules/S1774/javascript/rule.adoc +++ b/rules/S1774/javascript/rule.adoc @@ -41,4 +41,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1820/cfamily/rule.adoc b/rules/S1820/cfamily/rule.adoc index 664346dab9..c40de3dafa 100644 --- a/rules/S1820/cfamily/rule.adoc +++ b/rules/S1820/cfamily/rule.adoc @@ -34,4 +34,5 @@ The maximum number of fields (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1820/flex/rule.adoc b/rules/S1820/flex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1820/flex/rule.adoc +++ b/rules/S1820/flex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1820/java/rule.adoc b/rules/S1820/java/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1820/java/rule.adoc +++ b/rules/S1820/java/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1820/php/rule.adoc b/rules/S1820/php/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1820/php/rule.adoc +++ b/rules/S1820/php/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/apex/rule.adoc b/rules/S1821/apex/rule.adoc index 689710813f..c866e4a9ca 100644 --- a/rules/S1821/apex/rule.adoc +++ b/rules/S1821/apex/rule.adoc @@ -56,4 +56,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/csharp/rule.adoc b/rules/S1821/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1821/csharp/rule.adoc +++ b/rules/S1821/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/flex/rule.adoc b/rules/S1821/flex/rule.adoc index 3bd2854445..1188b2a94d 100644 --- a/rules/S1821/flex/rule.adoc +++ b/rules/S1821/flex/rule.adoc @@ -82,4 +82,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/go/rule.adoc b/rules/S1821/go/rule.adoc index 5edfa3fb75..8032c297f5 100644 --- a/rules/S1821/go/rule.adoc +++ b/rules/S1821/go/rule.adoc @@ -55,4 +55,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/java/rule.adoc b/rules/S1821/java/rule.adoc index ae8e73cd72..f915d0ecda 100644 --- a/rules/S1821/java/rule.adoc +++ b/rules/S1821/java/rule.adoc @@ -58,4 +58,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/javascript/rule.adoc b/rules/S1821/javascript/rule.adoc index f5d7fc6247..9b79095ece 100644 --- a/rules/S1821/javascript/rule.adoc +++ b/rules/S1821/javascript/rule.adoc @@ -55,4 +55,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/kotlin/rule.adoc b/rules/S1821/kotlin/rule.adoc index c973aca884..103474b680 100644 --- a/rules/S1821/kotlin/rule.adoc +++ b/rules/S1821/kotlin/rule.adoc @@ -56,4 +56,5 @@ Refactor the code to eliminate this nested "when". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/php/rule.adoc b/rules/S1821/php/rule.adoc index 4b85047819..1be876ceb8 100644 --- a/rules/S1821/php/rule.adoc +++ b/rules/S1821/php/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/ruby/rule.adoc b/rules/S1821/ruby/rule.adoc index 3bb028ca2a..16bcd11efa 100644 --- a/rules/S1821/ruby/rule.adoc +++ b/rules/S1821/ruby/rule.adoc @@ -56,4 +56,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/scala/rule.adoc b/rules/S1821/scala/rule.adoc index 27465a3e6f..ff2c448169 100644 --- a/rules/S1821/scala/rule.adoc +++ b/rules/S1821/scala/rule.adoc @@ -54,4 +54,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/swift/rule.adoc b/rules/S1821/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1821/swift/rule.adoc +++ b/rules/S1821/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/vb6/rule.adoc b/rules/S1821/vb6/rule.adoc index e4bd0bc1b1..c6ab3975a7 100644 --- a/rules/S1821/vb6/rule.adoc +++ b/rules/S1821/vb6/rule.adoc @@ -66,4 +66,5 @@ Refactor the code to eliminate this nested 'Select Case'. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1821/vbnet/rule.adoc b/rules/S1821/vbnet/rule.adoc index 11ef2cae11..2d391e7919 100644 --- a/rules/S1821/vbnet/rule.adoc +++ b/rules/S1821/vbnet/rule.adoc @@ -66,4 +66,5 @@ Refactor the code to eliminate this nested 'Select Case'. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1845/java/rule.adoc b/rules/S1845/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1845/java/rule.adoc +++ b/rules/S1845/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1845/python/rule.adoc b/rules/S1845/python/rule.adoc index 94a0895c9d..340936fd66 100644 --- a/rules/S1845/python/rule.adoc +++ b/rules/S1845/python/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1845/swift/rule.adoc b/rules/S1845/swift/rule.adoc index c8132e0445..c27323367b 100644 --- a/rules/S1845/swift/rule.adoc +++ b/rules/S1845/swift/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1848/csharp/rule.adoc b/rules/S1848/csharp/rule.adoc index 985fee65c6..36d9059f9d 100644 --- a/rules/S1848/csharp/rule.adoc +++ b/rules/S1848/csharp/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1848/java/rule.adoc b/rules/S1848/java/rule.adoc index 99faa92be6..07d05d33a8 100644 --- a/rules/S1848/java/rule.adoc +++ b/rules/S1848/java/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1848/php/rule.adoc b/rules/S1848/php/rule.adoc index dec3e08cdb..4137a46f4a 100644 --- a/rules/S1848/php/rule.adoc +++ b/rules/S1848/php/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1854/cfamily/rule.adoc b/rules/S1854/cfamily/rule.adoc index ad3b2acfbc..1380f8da3f 100644 --- a/rules/S1854/cfamily/rule.adoc +++ b/rules/S1854/cfamily/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1854/csharp/rule.adoc b/rules/S1854/csharp/rule.adoc index 86908c7161..e392b370b7 100644 --- a/rules/S1854/csharp/rule.adoc +++ b/rules/S1854/csharp/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1854/java/rule.adoc b/rules/S1854/java/rule.adoc index 0ff11f28e2..453899c354 100644 --- a/rules/S1854/java/rule.adoc +++ b/rules/S1854/java/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1854/php/rule.adoc b/rules/S1854/php/rule.adoc index 51f1748b96..c0d996a426 100644 --- a/rules/S1854/php/rule.adoc +++ b/rules/S1854/php/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1854/plsql/rule.adoc b/rules/S1854/plsql/rule.adoc index baba00d9d1..ef3d88621d 100644 --- a/rules/S1854/plsql/rule.adoc +++ b/rules/S1854/plsql/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1854/swift/rule.adoc b/rules/S1854/swift/rule.adoc index 00e013d47f..0ed76f4d96 100644 --- a/rules/S1854/swift/rule.adoc +++ b/rules/S1854/swift/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1858/java/rule.adoc b/rules/S1858/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1858/java/rule.adoc +++ b/rules/S1858/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/abap/rule.adoc b/rules/S1862/abap/rule.adoc index 6812bbf59c..e6e17fe6f7 100644 --- a/rules/S1862/abap/rule.adoc +++ b/rules/S1862/abap/rule.adoc @@ -44,4 +44,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/apex/rule.adoc b/rules/S1862/apex/rule.adoc index c73c78c766..b4b73faecc 100644 --- a/rules/S1862/apex/rule.adoc +++ b/rules/S1862/apex/rule.adoc @@ -77,4 +77,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/cfamily/rule.adoc b/rules/S1862/cfamily/rule.adoc index 7e59ef0e45..fcace152f7 100644 --- a/rules/S1862/cfamily/rule.adoc +++ b/rules/S1862/cfamily/rule.adoc @@ -45,4 +45,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/go/rule.adoc b/rules/S1862/go/rule.adoc index d7484f327d..b452396022 100644 --- a/rules/S1862/go/rule.adoc +++ b/rules/S1862/go/rule.adoc @@ -64,4 +64,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/java/rule.adoc b/rules/S1862/java/rule.adoc index 97b5f6d607..1eb85fb612 100644 --- a/rules/S1862/java/rule.adoc +++ b/rules/S1862/java/rule.adoc @@ -47,4 +47,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/javascript/rule.adoc b/rules/S1862/javascript/rule.adoc index 5192b8c9fe..9d36bb7eaa 100644 --- a/rules/S1862/javascript/rule.adoc +++ b/rules/S1862/javascript/rule.adoc @@ -78,4 +78,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/kotlin/rule.adoc b/rules/S1862/kotlin/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1862/kotlin/rule.adoc +++ b/rules/S1862/kotlin/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/plsql/rule.adoc b/rules/S1862/plsql/rule.adoc index 3595c64c04..ca64cb9769 100644 --- a/rules/S1862/plsql/rule.adoc +++ b/rules/S1862/plsql/rule.adoc @@ -61,4 +61,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/python/rule.adoc b/rules/S1862/python/rule.adoc index 8099eab68a..69e054f729 100644 --- a/rules/S1862/python/rule.adoc +++ b/rules/S1862/python/rule.adoc @@ -42,4 +42,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/rpg/rule.adoc b/rules/S1862/rpg/rule.adoc index d154b2024d..af5c796b85 100644 --- a/rules/S1862/rpg/rule.adoc +++ b/rules/S1862/rpg/rule.adoc @@ -87,4 +87,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/ruby/rule.adoc b/rules/S1862/ruby/rule.adoc index f4e2d8504f..e22f197c85 100644 --- a/rules/S1862/ruby/rule.adoc +++ b/rules/S1862/ruby/rule.adoc @@ -70,4 +70,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/scala/rule.adoc b/rules/S1862/scala/rule.adoc index 9faa51679d..449d714491 100644 --- a/rules/S1862/scala/rule.adoc +++ b/rules/S1862/scala/rule.adoc @@ -70,4 +70,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/swift/rule.adoc b/rules/S1862/swift/rule.adoc index 8256ddc78b..d3ce84af6f 100644 --- a/rules/S1862/swift/rule.adoc +++ b/rules/S1862/swift/rule.adoc @@ -67,4 +67,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/tsql/rule.adoc b/rules/S1862/tsql/rule.adoc index 127685dc49..2280a3d51a 100644 --- a/rules/S1862/tsql/rule.adoc +++ b/rules/S1862/tsql/rule.adoc @@ -72,4 +72,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1862/vbnet/rule.adoc b/rules/S1862/vbnet/rule.adoc index 100c9cdf04..d6197c188d 100644 --- a/rules/S1862/vbnet/rule.adoc +++ b/rules/S1862/vbnet/rule.adoc @@ -47,4 +47,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/abap/rule.adoc b/rules/S1871/abap/rule.adoc index 385c9f8116..f365631fbd 100644 --- a/rules/S1871/abap/rule.adoc +++ b/rules/S1871/abap/rule.adoc @@ -72,4 +72,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/apex/rule.adoc b/rules/S1871/apex/rule.adoc index 3c67b7595a..f2f7c70ce4 100644 --- a/rules/S1871/apex/rule.adoc +++ b/rules/S1871/apex/rule.adoc @@ -81,4 +81,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/cfamily/rule.adoc b/rules/S1871/cfamily/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1871/cfamily/rule.adoc +++ b/rules/S1871/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/cobol/rule.adoc b/rules/S1871/cobol/rule.adoc index c59a534530..a5155c052b 100644 --- a/rules/S1871/cobol/rule.adoc +++ b/rules/S1871/cobol/rule.adoc @@ -78,4 +78,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/csharp/rule.adoc b/rules/S1871/csharp/rule.adoc index 547bc2e8a9..9f233d3f75 100644 --- a/rules/S1871/csharp/rule.adoc +++ b/rules/S1871/csharp/rule.adoc @@ -89,4 +89,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/flex/rule.adoc b/rules/S1871/flex/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1871/flex/rule.adoc +++ b/rules/S1871/flex/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/go/rule.adoc b/rules/S1871/go/rule.adoc index 3031dc6405..3f5c35560f 100644 --- a/rules/S1871/go/rule.adoc +++ b/rules/S1871/go/rule.adoc @@ -62,4 +62,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/java/rule.adoc b/rules/S1871/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1871/java/rule.adoc +++ b/rules/S1871/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/kotlin/rule.adoc b/rules/S1871/kotlin/rule.adoc index 05617f0554..eabf5a73a4 100644 --- a/rules/S1871/kotlin/rule.adoc +++ b/rules/S1871/kotlin/rule.adoc @@ -62,4 +62,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/php/rule.adoc b/rules/S1871/php/rule.adoc index aaf961a6c6..40c4a36e55 100644 --- a/rules/S1871/php/rule.adoc +++ b/rules/S1871/php/rule.adoc @@ -80,4 +80,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/plsql/rule.adoc b/rules/S1871/plsql/rule.adoc index 3179ba7af5..fd4f52128f 100644 --- a/rules/S1871/plsql/rule.adoc +++ b/rules/S1871/plsql/rule.adoc @@ -60,4 +60,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/python/rule.adoc b/rules/S1871/python/rule.adoc index 0dd08cc0cf..fce7aed1d0 100644 --- a/rules/S1871/python/rule.adoc +++ b/rules/S1871/python/rule.adoc @@ -56,4 +56,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/rpg/rule.adoc b/rules/S1871/rpg/rule.adoc index 486ca0e405..9fb157e287 100644 --- a/rules/S1871/rpg/rule.adoc +++ b/rules/S1871/rpg/rule.adoc @@ -87,4 +87,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/ruby/rule.adoc b/rules/S1871/ruby/rule.adoc index 92589e39c3..b23482b8d0 100644 --- a/rules/S1871/ruby/rule.adoc +++ b/rules/S1871/ruby/rule.adoc @@ -74,4 +74,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/scala/rule.adoc b/rules/S1871/scala/rule.adoc index 1d1acd91a8..49f35f5b82 100644 --- a/rules/S1871/scala/rule.adoc +++ b/rules/S1871/scala/rule.adoc @@ -77,4 +77,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/swift/rule.adoc b/rules/S1871/swift/rule.adoc index 36c2eb64f4..4b02f77c3b 100644 --- a/rules/S1871/swift/rule.adoc +++ b/rules/S1871/swift/rule.adoc @@ -88,4 +88,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1871/vbnet/rule.adoc b/rules/S1871/vbnet/rule.adoc index 34cc21bafe..289c8c7299 100644 --- a/rules/S1871/vbnet/rule.adoc +++ b/rules/S1871/vbnet/rule.adoc @@ -75,4 +75,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1872/java/rule.adoc b/rules/S1872/java/rule.adoc index 304507aedd..4739997ede 100644 --- a/rules/S1872/java/rule.adoc +++ b/rules/S1872/java/rule.adoc @@ -75,4 +75,5 @@ Use an ["instanceof"|"isAssignableFrom()"] comparison instead. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1874/cfamily/rule.adoc b/rules/S1874/cfamily/rule.adoc index 2e6f9ec980..9155d66981 100644 --- a/rules/S1874/cfamily/rule.adoc +++ b/rules/S1874/cfamily/rule.adoc @@ -41,4 +41,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1874/java/rule.adoc b/rules/S1874/java/rule.adoc index 0808aac947..cc9a983ab2 100644 --- a/rules/S1874/java/rule.adoc +++ b/rules/S1874/java/rule.adoc @@ -22,4 +22,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1874/javascript/rule.adoc b/rules/S1874/javascript/rule.adoc index cadc2b8940..c0dbd2282b 100644 --- a/rules/S1874/javascript/rule.adoc +++ b/rules/S1874/javascript/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1875/cfamily/rule.adoc b/rules/S1875/cfamily/rule.adoc index a3f1b4722f..66d1d50fce 100644 --- a/rules/S1875/cfamily/rule.adoc +++ b/rules/S1875/cfamily/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1875/java/rule.adoc b/rules/S1875/java/rule.adoc index 9b779d0740..bd0f0fb7df 100644 --- a/rules/S1875/java/rule.adoc +++ b/rules/S1875/java/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1899/rpg/rule.adoc b/rules/S1899/rpg/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1899/rpg/rule.adoc +++ b/rules/S1899/rpg/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1905/cfamily/rule.adoc b/rules/S1905/cfamily/rule.adoc index 7edeef6319..7d3b3a3430 100644 --- a/rules/S1905/cfamily/rule.adoc +++ b/rules/S1905/cfamily/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1905/csharp/rule.adoc b/rules/S1905/csharp/rule.adoc index 66f986b329..8d637e9ff0 100644 --- a/rules/S1905/csharp/rule.adoc +++ b/rules/S1905/csharp/rule.adoc @@ -54,4 +54,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1905/java/rule.adoc b/rules/S1905/java/rule.adoc index 9c51f3f02e..9c588ebfd0 100644 --- a/rules/S1905/java/rule.adoc +++ b/rules/S1905/java/rule.adoc @@ -66,4 +66,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1908/cfamily/rule.adoc b/rules/S1908/cfamily/rule.adoc index 89a6823c60..6ec8492b40 100644 --- a/rules/S1908/cfamily/rule.adoc +++ b/rules/S1908/cfamily/rule.adoc @@ -26,4 +26,5 @@ The maximum authorized complexity in file (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1908/html/rule.adoc b/rules/S1908/html/rule.adoc index 302cb40590..6de16a5594 100644 --- a/rules/S1908/html/rule.adoc +++ b/rules/S1908/html/rule.adoc @@ -17,4 +17,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1908/plsql/rule.adoc b/rules/S1908/plsql/rule.adoc index 2f52b24d7e..16a2904975 100644 --- a/rules/S1908/plsql/rule.adoc +++ b/rules/S1908/plsql/rule.adoc @@ -26,4 +26,5 @@ The maximum file complexity allowed. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1908/python/rule.adoc b/rules/S1908/python/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1908/python/rule.adoc +++ b/rules/S1908/python/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1908/swift/rule.adoc b/rules/S1908/swift/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S1908/swift/rule.adoc +++ b/rules/S1908/swift/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1909/cfamily/rule.adoc b/rules/S1909/cfamily/rule.adoc index 16d5300fe8..9f44f3ab82 100644 --- a/rules/S1909/cfamily/rule.adoc +++ b/rules/S1909/cfamily/rule.adoc @@ -65,4 +65,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1909/csharp/rule.adoc b/rules/S1909/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1909/csharp/rule.adoc +++ b/rules/S1909/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1939/java/rule.adoc b/rules/S1939/java/rule.adoc index db41d935e1..533cc1372c 100644 --- a/rules/S1939/java/rule.adoc +++ b/rules/S1939/java/rule.adoc @@ -61,4 +61,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/apex/rule.adoc b/rules/S1940/apex/rule.adoc index c0effe78b4..2a56e72d2c 100644 --- a/rules/S1940/apex/rule.adoc +++ b/rules/S1940/apex/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/go/rule.adoc b/rules/S1940/go/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1940/go/rule.adoc +++ b/rules/S1940/go/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/java/rule.adoc b/rules/S1940/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1940/java/rule.adoc +++ b/rules/S1940/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/javascript/rule.adoc b/rules/S1940/javascript/rule.adoc index 5cdb768806..d1b300130d 100644 --- a/rules/S1940/javascript/rule.adoc +++ b/rules/S1940/javascript/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/kotlin/rule.adoc b/rules/S1940/kotlin/rule.adoc index 0b65e511fc..c64558614e 100644 --- a/rules/S1940/kotlin/rule.adoc +++ b/rules/S1940/kotlin/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/php/rule.adoc b/rules/S1940/php/rule.adoc index cedde2ce70..b15f3ea342 100644 --- a/rules/S1940/php/rule.adoc +++ b/rules/S1940/php/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/plsql/rule.adoc b/rules/S1940/plsql/rule.adoc index 0a0979ede1..dd1b4c6d2b 100644 --- a/rules/S1940/plsql/rule.adoc +++ b/rules/S1940/plsql/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/python/rule.adoc b/rules/S1940/python/rule.adoc index be2443ce63..7cf8ca9950 100644 --- a/rules/S1940/python/rule.adoc +++ b/rules/S1940/python/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/ruby/rule.adoc b/rules/S1940/ruby/rule.adoc index dfaac5986e..499b44e6b4 100644 --- a/rules/S1940/ruby/rule.adoc +++ b/rules/S1940/ruby/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/scala/rule.adoc b/rules/S1940/scala/rule.adoc index 540fec8730..e54300f2a3 100644 --- a/rules/S1940/scala/rule.adoc +++ b/rules/S1940/scala/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/swift/rule.adoc b/rules/S1940/swift/rule.adoc index 078d1106bd..8eb22e9e78 100644 --- a/rules/S1940/swift/rule.adoc +++ b/rules/S1940/swift/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/tsql/rule.adoc b/rules/S1940/tsql/rule.adoc index 69ae82ba26..efd0e51a63 100644 --- a/rules/S1940/tsql/rule.adoc +++ b/rules/S1940/tsql/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1940/vbnet/rule.adoc b/rules/S1940/vbnet/rule.adoc index 819cba5d63..45508fff8f 100644 --- a/rules/S1940/vbnet/rule.adoc +++ b/rules/S1940/vbnet/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1941/java/rule.adoc b/rules/S1941/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1941/java/rule.adoc +++ b/rules/S1941/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1944/java/rule.adoc b/rules/S1944/java/rule.adoc index 3fd4175efb..e8ae1b8e48 100644 --- a/rules/S1944/java/rule.adoc +++ b/rules/S1944/java/rule.adoc @@ -64,4 +64,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1944/rspecator-dotnet.adoc b/rules/S1944/rspecator-dotnet.adoc index 2ea780c9eb..50e1d67ba1 100644 --- a/rules/S1944/rspecator-dotnet.adoc +++ b/rules/S1944/rspecator-dotnet.adoc @@ -11,4 +11,5 @@ include::message-dotnet.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S1947/flex/rule.adoc b/rules/S1947/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1947/flex/rule.adoc +++ b/rules/S1947/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1947/html/rule.adoc b/rules/S1947/html/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1947/html/rule.adoc +++ b/rules/S1947/html/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1947/javascript/rule.adoc b/rules/S1947/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1947/javascript/rule.adoc +++ b/rules/S1947/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1947/php/rule.adoc b/rules/S1947/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1947/php/rule.adoc +++ b/rules/S1947/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1947/python/rule.adoc b/rules/S1947/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S1947/python/rule.adoc +++ b/rules/S1947/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1952/flex/rule.adoc b/rules/S1952/flex/rule.adoc index 6c72a97dd8..58c051e767 100644 --- a/rules/S1952/flex/rule.adoc +++ b/rules/S1952/flex/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1974/cfamily/rule.adoc b/rules/S1974/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S1974/cfamily/rule.adoc +++ b/rules/S1974/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1974/csharp/rule.adoc b/rules/S1974/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S1974/csharp/rule.adoc +++ b/rules/S1974/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1974/java/rule.adoc b/rules/S1974/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S1974/java/rule.adoc +++ b/rules/S1974/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1987/cfamily/rule.adoc b/rules/S1987/cfamily/rule.adoc index 8ce811ff92..265e1a1156 100644 --- a/rules/S1987/cfamily/rule.adoc +++ b/rules/S1987/cfamily/rule.adoc @@ -28,4 +28,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1987/java/rule.adoc b/rules/S1987/java/rule.adoc index 51c4ef5e0e..c018a4ac44 100644 --- a/rules/S1987/java/rule.adoc +++ b/rules/S1987/java/rule.adoc @@ -21,4 +21,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1990/cfamily/rule.adoc b/rules/S1990/cfamily/rule.adoc index ac735587cd..3ed60d836d 100644 --- a/rules/S1990/cfamily/rule.adoc +++ b/rules/S1990/cfamily/rule.adoc @@ -59,4 +59,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1990/php/rule.adoc b/rules/S1990/php/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1990/php/rule.adoc +++ b/rules/S1990/php/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1994/csharp/rule.adoc b/rules/S1994/csharp/rule.adoc index a4cc630fde..93654886a0 100644 --- a/rules/S1994/csharp/rule.adoc +++ b/rules/S1994/csharp/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1994/go/rule.adoc b/rules/S1994/go/rule.adoc index 78f3f2f661..9d2f38764e 100644 --- a/rules/S1994/go/rule.adoc +++ b/rules/S1994/go/rule.adoc @@ -38,4 +38,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1994/java/rule.adoc b/rules/S1994/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1994/java/rule.adoc +++ b/rules/S1994/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1994/javascript/rule.adoc b/rules/S1994/javascript/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S1994/javascript/rule.adoc +++ b/rules/S1994/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S1996/java/rule.adoc b/rules/S1996/java/rule.adoc index aac854aff4..b13073f73e 100644 --- a/rules/S1996/java/rule.adoc +++ b/rules/S1996/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S1996/php/rule.adoc b/rules/S1996/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S1996/php/rule.adoc +++ b/rules/S1996/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2005/java/rule.adoc b/rules/S2005/java/rule.adoc index 6ccd36e955..73c8ac2938 100644 --- a/rules/S2005/java/rule.adoc +++ b/rules/S2005/java/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2005/php/rule.adoc b/rules/S2005/php/rule.adoc index 190a8f4d47..2fde7308dd 100644 --- a/rules/S2005/php/rule.adoc +++ b/rules/S2005/php/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2007/php/rule.adoc b/rules/S2007/php/rule.adoc index 794971c212..735c343f24 100644 --- a/rules/S2007/php/rule.adoc +++ b/rules/S2007/php/rule.adoc @@ -53,4 +53,5 @@ Move this [function|variable] into a class. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2007/plsql/rule.adoc b/rules/S2007/plsql/rule.adoc index 041e52f8c5..40490dcb37 100644 --- a/rules/S2007/plsql/rule.adoc +++ b/rules/S2007/plsql/rule.adoc @@ -69,4 +69,5 @@ Move this variable declaration into a program. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2011/php/rule.adoc b/rules/S2011/php/rule.adoc index 74ddc6d4c4..e9ce46da6e 100644 --- a/rules/S2011/php/rule.adoc +++ b/rules/S2011/php/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2011/python/rule.adoc b/rules/S2011/python/rule.adoc index 8217d457ca..0efc644d83 100644 --- a/rules/S2011/python/rule.adoc +++ b/rules/S2011/python/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2024/rpg/rule.adoc b/rules/S2024/rpg/rule.adoc index 9792f8f0cb..54d1674069 100644 --- a/rules/S2024/rpg/rule.adoc +++ b/rules/S2024/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2039/java/rule.adoc b/rules/S2039/java/rule.adoc index 1f549fa4f3..3c0c74eb4a 100644 --- a/rules/S2039/java/rule.adoc +++ b/rules/S2039/java/rule.adoc @@ -54,4 +54,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2042/php/rule.adoc b/rules/S2042/php/rule.adoc index 956997e343..462e79863d 100644 --- a/rules/S2042/php/rule.adoc +++ b/rules/S2042/php/rule.adoc @@ -18,4 +18,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2042/swift/rule.adoc b/rules/S2042/swift/rule.adoc index 3533824ad3..e21f2297d7 100644 --- a/rules/S2042/swift/rule.adoc +++ b/rules/S2042/swift/rule.adoc @@ -20,4 +20,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2047/java/rule.adoc b/rules/S2047/java/rule.adoc index a78d053673..8d720999e4 100644 --- a/rules/S2047/java/rule.adoc +++ b/rules/S2047/java/rule.adoc @@ -61,4 +61,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2047/php/rule.adoc b/rules/S2047/php/rule.adoc index 044c8270ea..4f8f97a897 100644 --- a/rules/S2047/php/rule.adoc +++ b/rules/S2047/php/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2053/cfamily/rule.adoc b/rules/S2053/cfamily/rule.adoc index f9a813d799..b3b26061b9 100644 --- a/rules/S2053/cfamily/rule.adoc +++ b/rules/S2053/cfamily/rule.adoc @@ -20,4 +20,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2053/csharp/rule.adoc b/rules/S2053/csharp/rule.adoc index 4cbd8ef9de..c516cc3320 100644 --- a/rules/S2053/csharp/rule.adoc +++ b/rules/S2053/csharp/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2053/kotlin/rule.adoc b/rules/S2053/kotlin/rule.adoc index f4633eaf12..f3b706349c 100644 --- a/rules/S2053/kotlin/rule.adoc +++ b/rules/S2053/kotlin/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2053/python/rule.adoc b/rules/S2053/python/rule.adoc index 68c5793cbe..db8aa7dbd4 100644 --- a/rules/S2053/python/rule.adoc +++ b/rules/S2053/python/rule.adoc @@ -59,4 +59,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2053/vbnet/rule.adoc b/rules/S2053/vbnet/rule.adoc index 6ddeff2693..a3c7d3d99e 100644 --- a/rules/S2053/vbnet/rule.adoc +++ b/rules/S2053/vbnet/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/abap/rule.adoc b/rules/S2068/abap/rule.adoc index 853d402cd8..b3c14d0738 100644 --- a/rules/S2068/abap/rule.adoc +++ b/rules/S2068/abap/rule.adoc @@ -28,4 +28,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/apex/rule.adoc b/rules/S2068/apex/rule.adoc index 21adbee607..6f10104fb2 100644 --- a/rules/S2068/apex/rule.adoc +++ b/rules/S2068/apex/rule.adoc @@ -34,4 +34,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/csharp/rule.adoc b/rules/S2068/csharp/rule.adoc index f1cd08c29c..5fd79efe18 100644 --- a/rules/S2068/csharp/rule.adoc +++ b/rules/S2068/csharp/rule.adoc @@ -48,4 +48,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/flex/rule.adoc b/rules/S2068/flex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S2068/flex/rule.adoc +++ b/rules/S2068/flex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/go/rule.adoc b/rules/S2068/go/rule.adoc index 598ffc51d2..3a484fe596 100644 --- a/rules/S2068/go/rule.adoc +++ b/rules/S2068/go/rule.adoc @@ -44,4 +44,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/javascript/rule.adoc b/rules/S2068/javascript/rule.adoc index be68483944..82e8821aa0 100644 --- a/rules/S2068/javascript/rule.adoc +++ b/rules/S2068/javascript/rule.adoc @@ -53,4 +53,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/kotlin/rule.adoc b/rules/S2068/kotlin/rule.adoc index a56e7c6ea6..45656308c4 100644 --- a/rules/S2068/kotlin/rule.adoc +++ b/rules/S2068/kotlin/rule.adoc @@ -46,4 +46,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/php/rule.adoc b/rules/S2068/php/rule.adoc index 6ed4917be4..ae3a8ee3e1 100644 --- a/rules/S2068/php/rule.adoc +++ b/rules/S2068/php/rule.adoc @@ -41,4 +41,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/pli/rule.adoc b/rules/S2068/pli/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S2068/pli/rule.adoc +++ b/rules/S2068/pli/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/plsql/rule.adoc b/rules/S2068/plsql/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S2068/plsql/rule.adoc +++ b/rules/S2068/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/python/rule.adoc b/rules/S2068/python/rule.adoc index e2907df51a..ceb6b15201 100644 --- a/rules/S2068/python/rule.adoc +++ b/rules/S2068/python/rule.adoc @@ -40,4 +40,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/rpg/rule.adoc b/rules/S2068/rpg/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S2068/rpg/rule.adoc +++ b/rules/S2068/rpg/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/ruby/rule.adoc b/rules/S2068/ruby/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S2068/ruby/rule.adoc +++ b/rules/S2068/ruby/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/scala/rule.adoc b/rules/S2068/scala/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S2068/scala/rule.adoc +++ b/rules/S2068/scala/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/swift/rule.adoc b/rules/S2068/swift/rule.adoc index 554dbb566b..67f3ff1046 100644 --- a/rules/S2068/swift/rule.adoc +++ b/rules/S2068/swift/rule.adoc @@ -40,4 +40,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/tsql/rule.adoc b/rules/S2068/tsql/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S2068/tsql/rule.adoc +++ b/rules/S2068/tsql/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/vb6/rule.adoc b/rules/S2068/vb6/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S2068/vb6/rule.adoc +++ b/rules/S2068/vb6/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/vbnet/rule.adoc b/rules/S2068/vbnet/rule.adoc index 50cba8d5f7..5a6922a9dc 100644 --- a/rules/S2068/vbnet/rule.adoc +++ b/rules/S2068/vbnet/rule.adoc @@ -48,4 +48,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2068/xml/rule.adoc b/rules/S2068/xml/rule.adoc index 2cc86c2596..f28ac9f133 100644 --- a/rules/S2068/xml/rule.adoc +++ b/rules/S2068/xml/rule.adoc @@ -63,4 +63,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2070/cfamily/rule.adoc b/rules/S2070/cfamily/rule.adoc index 01d433d139..4dd7e9c071 100644 --- a/rules/S2070/cfamily/rule.adoc +++ b/rules/S2070/cfamily/rule.adoc @@ -18,4 +18,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2070/java/rule.adoc b/rules/S2070/java/rule.adoc index 2307f37cf9..0bbe4d9b9c 100644 --- a/rules/S2070/java/rule.adoc +++ b/rules/S2070/java/rule.adoc @@ -55,4 +55,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2070/javascript/rule.adoc b/rules/S2070/javascript/rule.adoc index 30d155190e..4ee1481087 100644 --- a/rules/S2070/javascript/rule.adoc +++ b/rules/S2070/javascript/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2070/php/rule.adoc b/rules/S2070/php/rule.adoc index c60a0b5086..1483e33d71 100644 --- a/rules/S2070/php/rule.adoc +++ b/rules/S2070/php/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2070/plsql/rule.adoc b/rules/S2070/plsql/rule.adoc index 33a9aee80f..963082d6b9 100644 --- a/rules/S2070/plsql/rule.adoc +++ b/rules/S2070/plsql/rule.adoc @@ -28,4 +28,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2070/python/rule.adoc b/rules/S2070/python/rule.adoc index 0ee2671873..d050644ed1 100644 --- a/rules/S2070/python/rule.adoc +++ b/rules/S2070/python/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2070/tsql/rule.adoc b/rules/S2070/tsql/rule.adoc index b1894878ac..dfa74db8bd 100644 --- a/rules/S2070/tsql/rule.adoc +++ b/rules/S2070/tsql/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2073/cfamily/rule.adoc b/rules/S2073/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2073/cfamily/rule.adoc +++ b/rules/S2073/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2073/csharp/rule.adoc b/rules/S2073/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2073/csharp/rule.adoc +++ b/rules/S2073/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2073/html/rule.adoc b/rules/S2073/html/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2073/html/rule.adoc +++ b/rules/S2073/html/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2073/java/rule.adoc b/rules/S2073/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2073/java/rule.adoc +++ b/rules/S2073/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2073/php/rule.adoc b/rules/S2073/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2073/php/rule.adoc +++ b/rules/S2073/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2073/python/rule.adoc b/rules/S2073/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2073/python/rule.adoc +++ b/rules/S2073/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2073/vbnet/rule.adoc b/rules/S2073/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2073/vbnet/rule.adoc +++ b/rules/S2073/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2076/csharp/how-to-fix-it/dotnet.adoc b/rules/S2076/csharp/how-to-fix-it/dotnet.adoc index 8d0e847fb1..b67649d4a7 100644 --- a/rules/S2076/csharp/how-to-fix-it/dotnet.adoc +++ b/rules/S2076/csharp/how-to-fix-it/dotnet.adoc @@ -45,6 +45,7 @@ include::../../common/fix/introduction.adoc[] include::../../common/fix/pre-approved-list.adoc[] :sanitizationLib: System.Diagnostics.ProcessStartInfo + include::../../common/fix/sanitize-meta-characters.adoc[] Here, using the `ProcessStartInfo` structure helps escaping the passed diff --git a/rules/S2076/csharp/rule.adoc b/rules/S2076/csharp/rule.adoc index f32b31d570..2b0be736ab 100644 --- a/rules/S2076/csharp/rule.adoc +++ b/rules/S2076/csharp/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + gndif::env-github,rspecator-view[] diff --git a/rules/S2076/java/how-to-fix-it/apache-commons.adoc b/rules/S2076/java/how-to-fix-it/apache-commons.adoc index c0801aa828..372d6e4314 100644 --- a/rules/S2076/java/how-to-fix-it/apache-commons.adoc +++ b/rules/S2076/java/how-to-fix-it/apache-commons.adoc @@ -51,6 +51,7 @@ include::../../common/fix/introduction.adoc[] include::../../common/fix/pre-approved-list.adoc[] :sanitizationLib: org.apache.commons.exec.CommandLine.addArguments(String[] addArguments) + include::../../common/fix/sanitize-meta-characters.adoc[] Here `{sanitizationLib}` takes care of escaping the passed arguments and diff --git a/rules/S2076/java/how-to-fix-it/java-se.adoc b/rules/S2076/java/how-to-fix-it/java-se.adoc index 5dc4f3ca86..8839b0f060 100644 --- a/rules/S2076/java/how-to-fix-it/java-se.adoc +++ b/rules/S2076/java/how-to-fix-it/java-se.adoc @@ -46,6 +46,7 @@ include::../../common/fix/introduction.adoc[] include::../../common/fix/pre-approved-list.adoc[] :sanitizationLib: java.lang.Runtime.exec(String[] cmdarray) + include::../../common/fix/sanitize-meta-characters.adoc[] Here `{sanitizationLib}` takes care of escaping the passed arguments and diff --git a/rules/S2076/java/rule.adoc b/rules/S2076/java/rule.adoc index a91dbd2264..2cb1888e69 100644 --- a/rules/S2076/java/rule.adoc +++ b/rules/S2076/java/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2076/javascript/how-to-fix-it/nodejs.adoc b/rules/S2076/javascript/how-to-fix-it/nodejs.adoc index d45067ed31..2cf1f45593 100644 --- a/rules/S2076/javascript/how-to-fix-it/nodejs.adoc +++ b/rules/S2076/javascript/how-to-fix-it/nodejs.adoc @@ -42,6 +42,7 @@ In the example compliant code, a static list of trusted commands is used. Users submit an index in this array in place of a full command name. :sanitizationLib: child_process.spawn + include::../../common/fix/sanitize-meta-characters.adoc[] In the example compliant code, the `spawn` function from `child_process` is used in place of its less diff --git a/rules/S2076/javascript/how-to-fix-it/ssh2.adoc b/rules/S2076/javascript/how-to-fix-it/ssh2.adoc index 0014e980cf..df926aec23 100644 --- a/rules/S2076/javascript/how-to-fix-it/ssh2.adoc +++ b/rules/S2076/javascript/how-to-fix-it/ssh2.adoc @@ -61,6 +61,7 @@ In the example compliant code, a static list of trusted commands is used. Users submit an index in this array in place of a full command name. :sanitizationLib: shell-escape-tag + include::../../common/fix/sanitize-meta-characters.adoc[] In the example compliant code, the `escape` function from the `shell-escape-tag` is used to properly diff --git a/rules/S2076/javascript/rule.adoc b/rules/S2076/javascript/rule.adoc index d4bb991031..4801814575 100644 --- a/rules/S2076/javascript/rule.adoc +++ b/rules/S2076/javascript/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + gndif::env-github,rspecator-view[] diff --git a/rules/S2076/php/how-to-fix-it/php.adoc b/rules/S2076/php/how-to-fix-it/php.adoc index 65eea5840e..2ae53beebd 100644 --- a/rules/S2076/php/how-to-fix-it/php.adoc +++ b/rules/S2076/php/how-to-fix-it/php.adoc @@ -40,6 +40,7 @@ this list. The command resulting from the list access can be considered trusted. :sanitizationLib: proc_open + include::../../common/fix/sanitize-meta-characters.adoc[] In the example compliant code, the `proc_open` function is used in place of diff --git a/rules/S2076/php/how-to-fix-it/symfony.adoc b/rules/S2076/php/how-to-fix-it/symfony.adoc index c9db555682..26db0632db 100644 --- a/rules/S2076/php/how-to-fix-it/symfony.adoc +++ b/rules/S2076/php/how-to-fix-it/symfony.adoc @@ -46,6 +46,7 @@ this list. The command resulting from the list access can be considered trusted. :sanitizationLib: Symfony\Component\Process\Process + include::../../common/fix/sanitize-meta-characters.adoc[] In the example compliant code, the `Process` constructor is used in place of diff --git a/rules/S2076/php/rule.adoc b/rules/S2076/php/rule.adoc index 2c2360c8cb..767ea213f1 100644 --- a/rules/S2076/php/rule.adoc +++ b/rules/S2076/php/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + gndif::env-github,rspecator-view[] diff --git a/rules/S2076/python/how-to-fix-it/paramiko.adoc b/rules/S2076/python/how-to-fix-it/paramiko.adoc index 206cc99f8c..f1bacca034 100644 --- a/rules/S2076/python/how-to-fix-it/paramiko.adoc +++ b/rules/S2076/python/how-to-fix-it/paramiko.adoc @@ -36,6 +36,7 @@ include::../../common/fix/introduction.adoc[] include::../../common/fix/pre-approved-list.adoc[] :sanitizationLib: shlex + include::../../common/fix/sanitize-meta-characters.adoc[] In the example compliant code, the `quote` function from the `shlex` is used to diff --git a/rules/S2076/python/how-to-fix-it/python.adoc b/rules/S2076/python/how-to-fix-it/python.adoc index 12e3fa6ac8..6dcedc6b46 100644 --- a/rules/S2076/python/how-to-fix-it/python.adoc +++ b/rules/S2076/python/how-to-fix-it/python.adoc @@ -34,6 +34,7 @@ include::../../common/fix/introduction.adoc[] include::../../common/fix/pre-approved-list.adoc[] :sanitizationLib: subprocess + include::../../common/fix/sanitize-meta-characters.adoc[] In the example compliant code, using the `subprocess.run` function helps to diff --git a/rules/S2076/python/rule.adoc b/rules/S2076/python/rule.adoc index 0a1f40845c..d0d837971d 100644 --- a/rules/S2076/python/rule.adoc +++ b/rules/S2076/python/rule.adoc @@ -13,6 +13,7 @@ include::how-to-fix-it/paramiko.adoc[] == Resources include::../common/resources/docs.adoc[] + * https://peps.python.org/pep-0324/[PEP 324 – subprocess - New process module] include::../common/resources/standards.adoc[] @@ -30,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + gndif::env-github,rspecator-view[] diff --git a/rules/S2077/java/rule.adoc b/rules/S2077/java/rule.adoc index 30c25cff8d..5dca2767ef 100644 --- a/rules/S2077/java/rule.adoc +++ b/rules/S2077/java/rule.adoc @@ -96,4 +96,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2077/plsql/rule.adoc b/rules/S2077/plsql/rule.adoc index 043deec339..ceca02b0ef 100644 --- a/rules/S2077/plsql/rule.adoc +++ b/rules/S2077/plsql/rule.adoc @@ -22,4 +22,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2077/python/rule.adoc b/rules/S2077/python/rule.adoc index 21257b2f6b..a45ce98fee 100644 --- a/rules/S2077/python/rule.adoc +++ b/rules/S2077/python/rule.adoc @@ -67,4 +67,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2077/vbnet/rule.adoc b/rules/S2077/vbnet/rule.adoc index 929c4e214d..da2cc27828 100644 --- a/rules/S2077/vbnet/rule.adoc +++ b/rules/S2077/vbnet/rule.adoc @@ -51,4 +51,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2078/csharp/rule.adoc b/rules/S2078/csharp/rule.adoc index c2e66ddcf8..a6ec89b9e1 100644 --- a/rules/S2078/csharp/rule.adoc +++ b/rules/S2078/csharp/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2078/java/rule.adoc b/rules/S2078/java/rule.adoc index 8faa71b3b0..8b8a7752bb 100644 --- a/rules/S2078/java/rule.adoc +++ b/rules/S2078/java/rule.adoc @@ -25,6 +25,7 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2078/php/rule.adoc b/rules/S2078/php/rule.adoc index ade3770d4d..5b0847098a 100644 --- a/rules/S2078/php/rule.adoc +++ b/rules/S2078/php/rule.adoc @@ -27,6 +27,7 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2078/python/rule.adoc b/rules/S2078/python/rule.adoc index 250a158541..44d0c89b37 100644 --- a/rules/S2078/python/rule.adoc +++ b/rules/S2078/python/rule.adoc @@ -25,6 +25,7 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2083/csharp/how-to-fix-it/dotnet.adoc b/rules/S2083/csharp/how-to-fix-it/dotnet.adoc index 3457b0f2b6..2daa18064a 100644 --- a/rules/S2083/csharp/how-to-fix-it/dotnet.adoc +++ b/rules/S2083/csharp/how-to-fix-it/dotnet.adoc @@ -3,6 +3,7 @@ === Code examples :code_impact: delete + include::../../common/fix/code-rationale.adoc[] ==== Noncompliant code example @@ -45,6 +46,7 @@ public class ExampleController : Controller === How does this work? :canonicalization_function: System.IO.Path.GetFullPath + include::../../common/fix/self-validation.adoc[] === Pitfalls @@ -83,4 +85,5 @@ https://github.com/aws/aws-sdk-java/security/advisories/GHSA-c28r-hw5m-5gv3[Here :joining_docs: https://learn.microsoft.com/en-us/dotnet/api/system.io.path.combine :joining_func: Path.Combine + include::../../common/pitfalls/path-joining.adoc[] diff --git a/rules/S2083/csharp/rule.adoc b/rules/S2083/csharp/rule.adoc index 88f708a37a..c8b039c990 100644 --- a/rules/S2083/csharp/rule.adoc +++ b/rules/S2083/csharp/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2083/java/how-to-fix-it/java-se.adoc b/rules/S2083/java/how-to-fix-it/java-se.adoc index be8bffbd47..8efa58f7a3 100644 --- a/rules/S2083/java/how-to-fix-it/java-se.adoc +++ b/rules/S2083/java/how-to-fix-it/java-se.adoc @@ -3,6 +3,7 @@ === Code examples :code_impact: delete + include::../../common/fix/code-rationale.adoc[] ==== Noncompliant code example @@ -50,6 +51,7 @@ public class ExampleController === How does this work? :canonicalization_function: java.io.File.getCanonicalPath + include::../../common/fix/self-validation.adoc[] === Pitfalls @@ -89,4 +91,5 @@ https://github.com/aws/aws-sdk-java/security/advisories/GHSA-c28r-hw5m-5gv3[Here :joining_docs: https://docs.oracle.com/javase/8/docs/api/java/nio/file/Path.html :joining_func: java.nio.file.Path.resolve + include::../../common/pitfalls/oob-specific-path-joining.adoc[] diff --git a/rules/S2083/java/rule.adoc b/rules/S2083/java/rule.adoc index 71f803347b..39451c7fc9 100644 --- a/rules/S2083/java/rule.adoc +++ b/rules/S2083/java/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2083/javascript/how-to-fix-it/express.adoc b/rules/S2083/javascript/how-to-fix-it/express.adoc index 1a188783f0..c5d11a617d 100644 --- a/rules/S2083/javascript/how-to-fix-it/express.adoc +++ b/rules/S2083/javascript/how-to-fix-it/express.adoc @@ -3,6 +3,7 @@ === Code examples :code_impact: read + include::../../common/fix/code-rationale.adoc[] ==== Noncompliant code example @@ -45,6 +46,7 @@ include::../../common/fix/self-validation.adoc[] :joining_docs: https://nodejs.org/api/path.html#pathresolvepaths :joining_func: path.resolve + include::../../common/pitfalls/path-joining.adoc[] diff --git a/rules/S2083/javascript/how-to-fix-it/node.adoc b/rules/S2083/javascript/how-to-fix-it/node.adoc index 97c14a851f..fc9d35cdb1 100644 --- a/rules/S2083/javascript/how-to-fix-it/node.adoc +++ b/rules/S2083/javascript/how-to-fix-it/node.adoc @@ -3,6 +3,7 @@ === Code examples :code_impact: read + include::../../common/fix/code-rationale.adoc[] ==== Noncompliant code example @@ -41,6 +42,7 @@ function (req, res) { === How does this work? :canonicalization_function: `fs.realPath` + include::../../common/fix/self-validation.adoc[] === Pitfalls @@ -79,5 +81,6 @@ this issue. :joining_docs: https://nodejs.org/api/path.html#pathresolvepaths :joining_func: path.resolve + include::../../common/pitfalls/path-joining.adoc[] diff --git a/rules/S2083/javascript/rule.adoc b/rules/S2083/javascript/rule.adoc index a049976ed1..0706a1cac0 100644 --- a/rules/S2083/javascript/rule.adoc +++ b/rules/S2083/javascript/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2083/php/how-to-fix-it/core.adoc b/rules/S2083/php/how-to-fix-it/core.adoc index 31941eaf08..ffbf00943c 100644 --- a/rules/S2083/php/how-to-fix-it/core.adoc +++ b/rules/S2083/php/how-to-fix-it/core.adoc @@ -3,6 +3,7 @@ === Code examples :code_impact: read + include::../../common/fix/code-rationale.adoc[] ==== Noncompliant code example @@ -31,5 +32,6 @@ if (str_starts_with($path, $targetDirectory)) { === How does this work? :canonicalization_function: `realPath` + include::../../common/fix/self-validation.adoc[] diff --git a/rules/S2083/php/rule.adoc b/rules/S2083/php/rule.adoc index 7fe32764d0..b8b9ddeda5 100644 --- a/rules/S2083/php/rule.adoc +++ b/rules/S2083/php/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2083/python/how-to-fix-it/flask.adoc b/rules/S2083/python/how-to-fix-it/flask.adoc index 8f8f390509..e42ebfb2ad 100644 --- a/rules/S2083/python/how-to-fix-it/flask.adoc +++ b/rules/S2083/python/how-to-fix-it/flask.adoc @@ -3,6 +3,7 @@ === Code examples :code_impact: read + include::../../common/fix/code-rationale.adoc[] ==== Noncompliant code example @@ -50,6 +51,7 @@ include::../../common/fix/function-based-validation.adoc[] :joining_docs: https://docs.python.org/3/library/os.path.html#os.path.join :joining_func: os.path.join + include::../../common/pitfalls/path-joining.adoc[] If you want to learn more about this pitfall, read https://blog.sonarsource.com/10-unknown-security-pitfalls-for-python/[our blog post about it]. diff --git a/rules/S2083/python/rule.adoc b/rules/S2083/python/rule.adoc index 149430b4b4..10902e29af 100644 --- a/rules/S2083/python/rule.adoc +++ b/rules/S2083/python/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2085/abap/rule.adoc b/rules/S2085/abap/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2085/abap/rule.adoc +++ b/rules/S2085/abap/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2085/cfamily/rule.adoc b/rules/S2085/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2085/cfamily/rule.adoc +++ b/rules/S2085/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2085/cobol/rule.adoc b/rules/S2085/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2085/cobol/rule.adoc +++ b/rules/S2085/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2085/csharp/rule.adoc b/rules/S2085/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2085/csharp/rule.adoc +++ b/rules/S2085/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2085/java/rule.adoc b/rules/S2085/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2085/java/rule.adoc +++ b/rules/S2085/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2085/javascript/rule.adoc b/rules/S2085/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2085/javascript/rule.adoc +++ b/rules/S2085/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2085/php/rule.adoc b/rules/S2085/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2085/php/rule.adoc +++ b/rules/S2085/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2085/python/rule.adoc b/rules/S2085/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2085/python/rule.adoc +++ b/rules/S2085/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2085/vbnet/rule.adoc b/rules/S2085/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2085/vbnet/rule.adoc +++ b/rules/S2085/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2086/cfamily/rule.adoc b/rules/S2086/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2086/cfamily/rule.adoc +++ b/rules/S2086/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2086/csharp/rule.adoc b/rules/S2086/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2086/csharp/rule.adoc +++ b/rules/S2086/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2086/html/rule.adoc b/rules/S2086/html/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2086/html/rule.adoc +++ b/rules/S2086/html/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2086/java/rule.adoc b/rules/S2086/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2086/java/rule.adoc +++ b/rules/S2086/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2086/php/rule.adoc b/rules/S2086/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2086/php/rule.adoc +++ b/rules/S2086/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2086/python/rule.adoc b/rules/S2086/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2086/python/rule.adoc +++ b/rules/S2086/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2086/vbnet/rule.adoc b/rules/S2086/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2086/vbnet/rule.adoc +++ b/rules/S2086/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2087/cfamily/rule.adoc b/rules/S2087/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2087/cfamily/rule.adoc +++ b/rules/S2087/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2087/cobol/rule.adoc b/rules/S2087/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2087/cobol/rule.adoc +++ b/rules/S2087/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2087/csharp/rule.adoc b/rules/S2087/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2087/csharp/rule.adoc +++ b/rules/S2087/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2087/java/rule.adoc b/rules/S2087/java/rule.adoc index fb4743d948..11fedddbd1 100644 --- a/rules/S2087/java/rule.adoc +++ b/rules/S2087/java/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2087/javascript/rule.adoc b/rules/S2087/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2087/javascript/rule.adoc +++ b/rules/S2087/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2087/php/rule.adoc b/rules/S2087/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2087/php/rule.adoc +++ b/rules/S2087/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2087/python/rule.adoc b/rules/S2087/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2087/python/rule.adoc +++ b/rules/S2087/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2087/vbnet/rule.adoc b/rules/S2087/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2087/vbnet/rule.adoc +++ b/rules/S2087/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2091/csharp/rule.adoc b/rules/S2091/csharp/rule.adoc index a001f55bed..6666e0b34f 100644 --- a/rules/S2091/csharp/rule.adoc +++ b/rules/S2091/csharp/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2091/java/rule.adoc b/rules/S2091/java/rule.adoc index 97493e5922..caa3bb3eba 100644 --- a/rules/S2091/java/rule.adoc +++ b/rules/S2091/java/rule.adoc @@ -27,6 +27,7 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2091/php/rule.adoc b/rules/S2091/php/rule.adoc index fcec61b0b5..100e5075a8 100644 --- a/rules/S2091/php/rule.adoc +++ b/rules/S2091/php/rule.adoc @@ -27,6 +27,7 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2092/cfamily/rule.adoc b/rules/S2092/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2092/cfamily/rule.adoc +++ b/rules/S2092/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2092/csharp/rule.adoc b/rules/S2092/csharp/rule.adoc index ac75930d9a..0f43f66c4b 100644 --- a/rules/S2092/csharp/rule.adoc +++ b/rules/S2092/csharp/rule.adoc @@ -56,4 +56,5 @@ Make sure creating this cookie without setting the 'Secure' property is safe her (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2092/java/rule.adoc b/rules/S2092/java/rule.adoc index 2ac2656f94..ef89e01abb 100644 --- a/rules/S2092/java/rule.adoc +++ b/rules/S2092/java/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2092/javascript/rule.adoc b/rules/S2092/javascript/rule.adoc index 7f8f1fb1f4..f513b0fd5a 100644 --- a/rules/S2092/javascript/rule.adoc +++ b/rules/S2092/javascript/rule.adoc @@ -113,4 +113,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2092/kotlin/rule.adoc b/rules/S2092/kotlin/rule.adoc index 8efa9dc428..b72d74e65b 100644 --- a/rules/S2092/kotlin/rule.adoc +++ b/rules/S2092/kotlin/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2092/vbnet/rule.adoc b/rules/S2092/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2092/vbnet/rule.adoc +++ b/rules/S2092/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2094/csharp/rule.adoc b/rules/S2094/csharp/rule.adoc index e5597aa6bc..e01bf1734b 100644 --- a/rules/S2094/csharp/rule.adoc +++ b/rules/S2094/csharp/rule.adoc @@ -50,4 +50,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S2094/java/rule.adoc b/rules/S2094/java/rule.adoc index beef87d214..306424e952 100644 --- a/rules/S2094/java/rule.adoc +++ b/rules/S2094/java/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2094/swift/rule.adoc b/rules/S2094/swift/rule.adoc index eaaf5075cf..d73c075dbd 100644 --- a/rules/S2094/swift/rule.adoc +++ b/rules/S2094/swift/rule.adoc @@ -28,4 +28,5 @@ Remove this empty class, write its code or make it a "protocol". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2094/vbnet/rule.adoc b/rules/S2094/vbnet/rule.adoc index 4e89e47668..1bc34ea456 100644 --- a/rules/S2094/vbnet/rule.adoc +++ b/rules/S2094/vbnet/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S2095/java/rule.adoc b/rules/S2095/java/rule.adoc index 28362a6ab4..6229c9202b 100644 --- a/rules/S2095/java/rule.adoc +++ b/rules/S2095/java/rule.adoc @@ -58,4 +58,5 @@ Comma separated list of the excluded resource types, using fully qualified names (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2096/java/rule.adoc b/rules/S2096/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2096/java/rule.adoc +++ b/rules/S2096/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2107/cfamily/rule.adoc b/rules/S2107/cfamily/rule.adoc index fce65bab82..069a60d854 100644 --- a/rules/S2107/cfamily/rule.adoc +++ b/rules/S2107/cfamily/rule.adoc @@ -103,4 +103,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2114/csharp/rule.adoc b/rules/S2114/csharp/rule.adoc index 142c0d5b30..a8ec6e9f23 100644 --- a/rules/S2114/csharp/rule.adoc +++ b/rules/S2114/csharp/rule.adoc @@ -45,4 +45,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2114/java/rule.adoc b/rules/S2114/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2114/java/rule.adoc +++ b/rules/S2114/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/cfamily/rule.adoc b/rules/S2115/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2115/cfamily/rule.adoc +++ b/rules/S2115/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/csharp/rule.adoc b/rules/S2115/csharp/rule.adoc index d6df0db01d..ffc52a6bd7 100644 --- a/rules/S2115/csharp/rule.adoc +++ b/rules/S2115/csharp/rule.adoc @@ -61,4 +61,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/go/rule.adoc b/rules/S2115/go/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2115/go/rule.adoc +++ b/rules/S2115/go/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/javascript/rule.adoc b/rules/S2115/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2115/javascript/rule.adoc +++ b/rules/S2115/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/kotlin/rule.adoc b/rules/S2115/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2115/kotlin/rule.adoc +++ b/rules/S2115/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/php/rule.adoc b/rules/S2115/php/rule.adoc index 9b852cca92..ed48d5f487 100644 --- a/rules/S2115/php/rule.adoc +++ b/rules/S2115/php/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/python/rule.adoc b/rules/S2115/python/rule.adoc index 0ca81d9e26..c46fcdae6b 100644 --- a/rules/S2115/python/rule.adoc +++ b/rules/S2115/python/rule.adoc @@ -95,4 +95,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/ruby/rule.adoc b/rules/S2115/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2115/ruby/rule.adoc +++ b/rules/S2115/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/rust/rule.adoc b/rules/S2115/rust/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2115/rust/rule.adoc +++ b/rules/S2115/rust/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/scala/rule.adoc b/rules/S2115/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2115/scala/rule.adoc +++ b/rules/S2115/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/swift/rule.adoc b/rules/S2115/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2115/swift/rule.adoc +++ b/rules/S2115/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2115/vbnet/rule.adoc b/rules/S2115/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2115/vbnet/rule.adoc +++ b/rules/S2115/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2123/cfamily/rule.adoc b/rules/S2123/cfamily/rule.adoc index 45dd407bef..351f0d2588 100644 --- a/rules/S2123/cfamily/rule.adoc +++ b/rules/S2123/cfamily/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2123/csharp/rule.adoc b/rules/S2123/csharp/rule.adoc index ec56be966f..b4befe8011 100644 --- a/rules/S2123/csharp/rule.adoc +++ b/rules/S2123/csharp/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2123/java/rule.adoc b/rules/S2123/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2123/java/rule.adoc +++ b/rules/S2123/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2123/kotlin/rule.adoc b/rules/S2123/kotlin/rule.adoc index 9bb9ea55db..094f4ae6f0 100644 --- a/rules/S2123/kotlin/rule.adoc +++ b/rules/S2123/kotlin/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2123/php/rule.adoc b/rules/S2123/php/rule.adoc index ac2407a148..989c451a77 100644 --- a/rules/S2123/php/rule.adoc +++ b/rules/S2123/php/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2126/cfamily/rule.adoc b/rules/S2126/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2126/cfamily/rule.adoc +++ b/rules/S2126/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2126/csharp/rule.adoc b/rules/S2126/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2126/csharp/rule.adoc +++ b/rules/S2126/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2126/javascript/rule.adoc b/rules/S2126/javascript/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2126/javascript/rule.adoc +++ b/rules/S2126/javascript/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2126/php/rule.adoc b/rules/S2126/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2126/php/rule.adoc +++ b/rules/S2126/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2126/python/rule.adoc b/rules/S2126/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2126/python/rule.adoc +++ b/rules/S2126/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2139/java/rule.adoc b/rules/S2139/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S2139/java/rule.adoc +++ b/rules/S2139/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2145/cfamily/rule.adoc b/rules/S2145/cfamily/rule.adoc index ab90225f9c..ccd276bebc 100644 --- a/rules/S2145/cfamily/rule.adoc +++ b/rules/S2145/cfamily/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2145/plsql/rule.adoc b/rules/S2145/plsql/rule.adoc index a2393c0021..64326cfd3d 100644 --- a/rules/S2145/plsql/rule.adoc +++ b/rules/S2145/plsql/rule.adoc @@ -55,4 +55,5 @@ Convert this "IF/ELSIF" structure into a "CASE". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2147/java/rule.adoc b/rules/S2147/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2147/java/rule.adoc +++ b/rules/S2147/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2148/csharp/rule.adoc b/rules/S2148/csharp/rule.adoc index 4faff99e9a..86d81d2e8b 100644 --- a/rules/S2148/csharp/rule.adoc +++ b/rules/S2148/csharp/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2148/java/rule.adoc b/rules/S2148/java/rule.adoc index 7d0134da78..520b58bccb 100644 --- a/rules/S2148/java/rule.adoc +++ b/rules/S2148/java/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2148/swift/rule.adoc b/rules/S2148/swift/rule.adoc index bd4af5c9ac..b4cd257aae 100644 --- a/rules/S2148/swift/rule.adoc +++ b/rules/S2148/swift/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2155/cfamily/rule.adoc b/rules/S2155/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2155/cfamily/rule.adoc +++ b/rules/S2155/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2155/flex/rule.adoc b/rules/S2155/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2155/flex/rule.adoc +++ b/rules/S2155/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2155/java/rule.adoc b/rules/S2155/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2155/java/rule.adoc +++ b/rules/S2155/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2156/cfamily/rule.adoc b/rules/S2156/cfamily/rule.adoc index c98ee05a5f..490ddd7ce2 100644 --- a/rules/S2156/cfamily/rule.adoc +++ b/rules/S2156/cfamily/rule.adoc @@ -44,4 +44,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2156/java/rule.adoc b/rules/S2156/java/rule.adoc index b2a9a6aa37..34d0d6e009 100644 --- a/rules/S2156/java/rule.adoc +++ b/rules/S2156/java/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2159/java/rule.adoc b/rules/S2159/java/rule.adoc index 7a2b46f0a3..8c1592760d 100644 --- a/rules/S2159/java/rule.adoc +++ b/rules/S2159/java/rule.adoc @@ -71,4 +71,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2159/python/rule.adoc b/rules/S2159/python/rule.adoc index 34701a5680..7100867f49 100644 --- a/rules/S2159/python/rule.adoc +++ b/rules/S2159/python/rule.adoc @@ -54,4 +54,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2164/java/rule.adoc b/rules/S2164/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2164/java/rule.adoc +++ b/rules/S2164/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2166/csharp/rule.adoc b/rules/S2166/csharp/rule.adoc index 0bc8f9ac1e..ff45ff3fc5 100644 --- a/rules/S2166/csharp/rule.adoc +++ b/rules/S2166/csharp/rule.adoc @@ -60,4 +60,5 @@ Rename this class to remove "Exception" or correct its inheritance. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S2166/java/rule.adoc b/rules/S2166/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2166/java/rule.adoc +++ b/rules/S2166/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2166/php/rule.adoc b/rules/S2166/php/rule.adoc index 5ff954e544..0058eef1fe 100644 --- a/rules/S2166/php/rule.adoc +++ b/rules/S2166/php/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2166/vbnet/rule.adoc b/rules/S2166/vbnet/rule.adoc index c935431e04..8643b3d4ca 100644 --- a/rules/S2166/vbnet/rule.adoc +++ b/rules/S2166/vbnet/rule.adoc @@ -56,4 +56,5 @@ Rename this class to remove "Exception" or correct its inheritance. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S2177/java/rule.adoc b/rules/S2177/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2177/java/rule.adoc +++ b/rules/S2177/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2178/cfamily/rule.adoc b/rules/S2178/cfamily/rule.adoc index fdb2791445..2856b5b4a8 100644 --- a/rules/S2178/cfamily/rule.adoc +++ b/rules/S2178/cfamily/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2178/csharp/rule.adoc b/rules/S2178/csharp/rule.adoc index 81c5ea8444..404d0c1c58 100644 --- a/rules/S2178/csharp/rule.adoc +++ b/rules/S2178/csharp/rule.adoc @@ -57,4 +57,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2178/java/rule.adoc b/rules/S2178/java/rule.adoc index fdb2791445..2856b5b4a8 100644 --- a/rules/S2178/java/rule.adoc +++ b/rules/S2178/java/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2178/vbnet/rule.adoc b/rules/S2178/vbnet/rule.adoc index 76f6340af9..58f00d29fd 100644 --- a/rules/S2178/vbnet/rule.adoc +++ b/rules/S2178/vbnet/rule.adoc @@ -55,4 +55,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2183/csharp/rule.adoc b/rules/S2183/csharp/rule.adoc index 7c8d705e99..7b45a416d3 100644 --- a/rules/S2183/csharp/rule.adoc +++ b/rules/S2183/csharp/rule.adoc @@ -71,4 +71,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2183/java/rule.adoc b/rules/S2183/java/rule.adoc index 5cbaf619ed..71befc6450 100644 --- a/rules/S2183/java/rule.adoc +++ b/rules/S2183/java/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2184/cfamily/rule.adoc b/rules/S2184/cfamily/rule.adoc index 85dd752d7f..b3239e68bc 100644 --- a/rules/S2184/cfamily/rule.adoc +++ b/rules/S2184/cfamily/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2184/csharp/rule.adoc b/rules/S2184/csharp/rule.adoc index 18c942f6a5..dcf24a2cbb 100644 --- a/rules/S2184/csharp/rule.adoc +++ b/rules/S2184/csharp/rule.adoc @@ -46,4 +46,5 @@ Cast one of the operands of this division to "xxx". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2184/java/rule.adoc b/rules/S2184/java/rule.adoc index cd3c9cc0cf..ffea7a5d22 100644 --- a/rules/S2184/java/rule.adoc +++ b/rules/S2184/java/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2187/csharp/rule.adoc b/rules/S2187/csharp/rule.adoc index 5528bd00a6..43fe4c4684 100644 --- a/rules/S2187/csharp/rule.adoc +++ b/rules/S2187/csharp/rule.adoc @@ -46,6 +46,7 @@ More information here: * https://learn.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2008/ms245265(v=vs.90)[`AssemblyCleanup` attribute] include::how-mstest.adoc[] + include::how-nunit.adoc[] include::resources.adoc[] diff --git a/rules/S2187/java/rule.adoc b/rules/S2187/java/rule.adoc index 1985c73158..d76df2c0c8 100644 --- a/rules/S2187/java/rule.adoc +++ b/rules/S2187/java/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2187/php/rule.adoc b/rules/S2187/php/rule.adoc index 038378df0f..f126d9d9e2 100644 --- a/rules/S2187/php/rule.adoc +++ b/rules/S2187/php/rule.adoc @@ -64,4 +64,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2189/java/rule.adoc b/rules/S2189/java/rule.adoc index 3935ca8cb3..f087a946ea 100644 --- a/rules/S2189/java/rule.adoc +++ b/rules/S2189/java/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2189/javascript/rule.adoc b/rules/S2189/javascript/rule.adoc index 7b6936cab9..e98e60daf7 100644 --- a/rules/S2189/javascript/rule.adoc +++ b/rules/S2189/javascript/rule.adoc @@ -68,4 +68,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2189/kotlin/rule.adoc b/rules/S2189/kotlin/rule.adoc index 49340bd757..51c114999c 100644 --- a/rules/S2189/kotlin/rule.adoc +++ b/rules/S2189/kotlin/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2190/cfamily/rule.adoc b/rules/S2190/cfamily/rule.adoc index 838598cd05..fe598e7f71 100644 --- a/rules/S2190/cfamily/rule.adoc +++ b/rules/S2190/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2193/cfamily/rule.adoc b/rules/S2193/cfamily/rule.adoc index d4cab6f23a..93f23746b6 100644 --- a/rules/S2193/cfamily/rule.adoc +++ b/rules/S2193/cfamily/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2193/java/rule.adoc b/rules/S2193/java/rule.adoc index 8a9cf6d712..bbc7531301 100644 --- a/rules/S2193/java/rule.adoc +++ b/rules/S2193/java/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2197/cfamily/rule.adoc b/rules/S2197/cfamily/rule.adoc index fa552beea3..bd982f8c4b 100644 --- a/rules/S2197/cfamily/rule.adoc +++ b/rules/S2197/cfamily/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2197/csharp/rule.adoc b/rules/S2197/csharp/rule.adoc index 73ee8041b2..5f415fb500 100644 --- a/rules/S2197/csharp/rule.adoc +++ b/rules/S2197/csharp/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2197/java/rule.adoc b/rules/S2197/java/rule.adoc index fa552beea3..bd982f8c4b 100644 --- a/rules/S2197/java/rule.adoc +++ b/rules/S2197/java/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2197/javascript/rule.adoc b/rules/S2197/javascript/rule.adoc index c11707ee50..cde682e798 100644 --- a/rules/S2197/javascript/rule.adoc +++ b/rules/S2197/javascript/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2197/swift/rule.adoc b/rules/S2197/swift/rule.adoc index 76b74277b6..8ef3339d49 100644 --- a/rules/S2197/swift/rule.adoc +++ b/rules/S2197/swift/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2198/csharp/rule.adoc b/rules/S2198/csharp/rule.adoc index 7241ba2cdb..f789158e8c 100644 --- a/rules/S2198/csharp/rule.adoc +++ b/rules/S2198/csharp/rule.adoc @@ -20,4 +20,5 @@ if (f > double.MaxValue) { } // Noncompliant: always false ---- include::../resources.adoc[] + include::../rspecator.adoc[] \ No newline at end of file diff --git a/rules/S2201/javascript/rule.adoc b/rules/S2201/javascript/rule.adoc index ecafae166c..2f37805086 100644 --- a/rules/S2201/javascript/rule.adoc +++ b/rules/S2201/javascript/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2201/php/rule.adoc b/rules/S2201/php/rule.adoc index 4f9637f7f3..31a1095f3f 100644 --- a/rules/S2201/php/rule.adoc +++ b/rules/S2201/php/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2201/python/rule.adoc b/rules/S2201/python/rule.adoc index 265e666dce..12b98bc56f 100644 --- a/rules/S2201/python/rule.adoc +++ b/rules/S2201/python/rule.adoc @@ -57,4 +57,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2201/swift/rule.adoc b/rules/S2201/swift/rule.adoc index f04d9bb61c..9c6c4f6dde 100644 --- a/rules/S2201/swift/rule.adoc +++ b/rules/S2201/swift/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2208/java/rule.adoc b/rules/S2208/java/rule.adoc index a9f1cac875..b283930d6d 100644 --- a/rules/S2208/java/rule.adoc +++ b/rules/S2208/java/rule.adoc @@ -49,4 +49,5 @@ Explicitly import the specific classes needed. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2209/cfamily/rule.adoc b/rules/S2209/cfamily/rule.adoc index d940738a68..e225da5c29 100644 --- a/rules/S2209/cfamily/rule.adoc +++ b/rules/S2209/cfamily/rule.adoc @@ -47,4 +47,5 @@ Replace "[.|->]" with "::" for access to "XXX". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2209/java/rule.adoc b/rules/S2209/java/rule.adoc index 385311ce83..fa95f2a40c 100644 --- a/rules/S2209/java/rule.adoc +++ b/rules/S2209/java/rule.adoc @@ -56,4 +56,5 @@ Change this instance-reference to a static reference. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2210/java/rule.adoc b/rules/S2210/java/rule.adoc index b07c6ab585..c8564b4eff 100644 --- a/rules/S2210/java/rule.adoc +++ b/rules/S2210/java/rule.adoc @@ -10,4 +10,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2210/javascript/rule.adoc b/rules/S2210/javascript/rule.adoc index 0d8298e9d2..e50e29c9fa 100644 --- a/rules/S2210/javascript/rule.adoc +++ b/rules/S2210/javascript/rule.adoc @@ -10,4 +10,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2214/csharp/rule.adoc b/rules/S2214/csharp/rule.adoc index 8e4e809c8d..0144256e66 100644 --- a/rules/S2214/csharp/rule.adoc +++ b/rules/S2214/csharp/rule.adoc @@ -59,4 +59,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2214/java/rule.adoc b/rules/S2214/java/rule.adoc index fd25641946..95a90a7f73 100644 --- a/rules/S2214/java/rule.adoc +++ b/rules/S2214/java/rule.adoc @@ -36,4 +36,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2219/java/rule.adoc b/rules/S2219/java/rule.adoc index 81c65df6f0..4f6012186e 100644 --- a/rules/S2219/java/rule.adoc +++ b/rules/S2219/java/rule.adoc @@ -42,4 +42,5 @@ Use "instanceof" instead. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2220/cfamily/rule.adoc b/rules/S2220/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2220/cfamily/rule.adoc +++ b/rules/S2220/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2220/csharp/rule.adoc b/rules/S2220/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2220/csharp/rule.adoc +++ b/rules/S2220/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2220/java/rule.adoc b/rules/S2220/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2220/java/rule.adoc +++ b/rules/S2220/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2220/vbnet/rule.adoc b/rules/S2220/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2220/vbnet/rule.adoc +++ b/rules/S2220/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2221/csharp/rule.adoc b/rules/S2221/csharp/rule.adoc index c1423e1a95..f5ea540a11 100644 --- a/rules/S2221/csharp/rule.adoc +++ b/rules/S2221/csharp/rule.adoc @@ -71,4 +71,5 @@ Catch a list of specific exception subtype or use exception filters instead. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2221/java/rule.adoc b/rules/S2221/java/rule.adoc index 6581c46a62..cb0b04d5b7 100644 --- a/rules/S2221/java/rule.adoc +++ b/rules/S2221/java/rule.adoc @@ -60,4 +60,5 @@ Catch a list of specific exception subtypes instead. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2221/plsql/rule.adoc b/rules/S2221/plsql/rule.adoc index 2521c286cb..05e3c1701d 100644 --- a/rules/S2221/plsql/rule.adoc +++ b/rules/S2221/plsql/rule.adoc @@ -94,4 +94,5 @@ Add exception handlers for the expected exception types. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2222/rspecator.adoc b/rules/S2222/rspecator.adoc index b9dd5835ca..b1736a3f0b 100644 --- a/rules/S2222/rspecator.adoc +++ b/rules/S2222/rspecator.adoc @@ -11,4 +11,5 @@ include::message.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S2224/cfamily/rule.adoc b/rules/S2224/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2224/cfamily/rule.adoc +++ b/rules/S2224/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2224/csharp/rule.adoc b/rules/S2224/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2224/csharp/rule.adoc +++ b/rules/S2224/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2224/flex/rule.adoc b/rules/S2224/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2224/flex/rule.adoc +++ b/rules/S2224/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2224/html/rule.adoc b/rules/S2224/html/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2224/html/rule.adoc +++ b/rules/S2224/html/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2224/java/rule.adoc b/rules/S2224/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2224/java/rule.adoc +++ b/rules/S2224/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2224/javascript/rule.adoc b/rules/S2224/javascript/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2224/javascript/rule.adoc +++ b/rules/S2224/javascript/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2224/php/rule.adoc b/rules/S2224/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2224/php/rule.adoc +++ b/rules/S2224/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2224/python/rule.adoc b/rules/S2224/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2224/python/rule.adoc +++ b/rules/S2224/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2225/csharp/rule.adoc b/rules/S2225/csharp/rule.adoc index 35f96dbb1b..a2e6f3deb0 100644 --- a/rules/S2225/csharp/rule.adoc +++ b/rules/S2225/csharp/rule.adoc @@ -35,6 +35,7 @@ public override string ToString () ---- include::../resources-dotnet.adoc[] + * https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/how-to-override-the-tostring-method[How to override the ToString method] include::../rspecator.adoc[] diff --git a/rules/S2225/java/rule.adoc b/rules/S2225/java/rule.adoc index 7ef945841b..6b5067ca69 100644 --- a/rules/S2225/java/rule.adoc +++ b/rules/S2225/java/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2225/rspecator.adoc b/rules/S2225/rspecator.adoc index 1fa5481934..89402cf5be 100644 --- a/rules/S2225/rspecator.adoc +++ b/rules/S2225/rspecator.adoc @@ -11,4 +11,5 @@ include::message.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view,env-vscode[] diff --git a/rules/S2234/cfamily/rule.adoc b/rules/S2234/cfamily/rule.adoc index cba67730a6..befce7b444 100644 --- a/rules/S2234/cfamily/rule.adoc +++ b/rules/S2234/cfamily/rule.adoc @@ -51,4 +51,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2234/java/rule.adoc b/rules/S2234/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S2234/java/rule.adoc +++ b/rules/S2234/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2234/javascript/rule.adoc b/rules/S2234/javascript/rule.adoc index 852ac1cbc2..4d3c401f1e 100644 --- a/rules/S2234/javascript/rule.adoc +++ b/rules/S2234/javascript/rule.adoc @@ -74,4 +74,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2234/php/rule.adoc b/rules/S2234/php/rule.adoc index bc8e7e40ac..e869d66f1f 100644 --- a/rules/S2234/php/rule.adoc +++ b/rules/S2234/php/rule.adoc @@ -50,4 +50,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2234/python/rule.adoc b/rules/S2234/python/rule.adoc index 69547f72de..81369f2ce1 100644 --- a/rules/S2234/python/rule.adoc +++ b/rules/S2234/python/rule.adoc @@ -47,4 +47,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2234/rspectator.adoc b/rules/S2234/rspectator.adoc index 22ee4ccac8..c6fd2dac12 100644 --- a/rules/S2234/rspectator.adoc +++ b/rules/S2234/rspectator.adoc @@ -13,4 +13,5 @@ include::highlighting.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S2245/cfamily/rule.adoc b/rules/S2245/cfamily/rule.adoc index e3b14cd657..3bbc631052 100644 --- a/rules/S2245/cfamily/rule.adoc +++ b/rules/S2245/cfamily/rule.adoc @@ -74,4 +74,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2245/csharp/rule.adoc b/rules/S2245/csharp/rule.adoc index 5b6537dae0..1ddea8760c 100644 --- a/rules/S2245/csharp/rule.adoc +++ b/rules/S2245/csharp/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2245/java/rule.adoc b/rules/S2245/java/rule.adoc index 2858c15240..fe798290cb 100644 --- a/rules/S2245/java/rule.adoc +++ b/rules/S2245/java/rule.adoc @@ -62,4 +62,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2245/kotlin/rule.adoc b/rules/S2245/kotlin/rule.adoc index dcc6799d52..099e5773f3 100644 --- a/rules/S2245/kotlin/rule.adoc +++ b/rules/S2245/kotlin/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2245/python/rule.adoc b/rules/S2245/python/rule.adoc index e7356fe0f0..66b77fc862 100644 --- a/rules/S2245/python/rule.adoc +++ b/rules/S2245/python/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2245/vb6/rule.adoc b/rules/S2245/vb6/rule.adoc index 87dc4ddf79..e7d7937240 100644 --- a/rules/S2245/vb6/rule.adoc +++ b/rules/S2245/vb6/rule.adoc @@ -20,4 +20,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2250/java/rule.adoc b/rules/S2250/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2250/java/rule.adoc +++ b/rules/S2250/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2251/csharp/rule.adoc b/rules/S2251/csharp/rule.adoc index d3c0ee8af1..3f94c25936 100644 --- a/rules/S2251/csharp/rule.adoc +++ b/rules/S2251/csharp/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2251/java/rule.adoc b/rules/S2251/java/rule.adoc index 1934ea46a0..411431edb6 100644 --- a/rules/S2251/java/rule.adoc +++ b/rules/S2251/java/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2251/php/rule.adoc b/rules/S2251/php/rule.adoc index e52124ff31..9ce136d65c 100644 --- a/rules/S2251/php/rule.adoc +++ b/rules/S2251/php/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2252/csharp/rule.adoc b/rules/S2252/csharp/rule.adoc index 44e8d9f912..3d2ac88ce9 100644 --- a/rules/S2252/csharp/rule.adoc +++ b/rules/S2252/csharp/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2252/java/rule.adoc b/rules/S2252/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2252/java/rule.adoc +++ b/rules/S2252/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2252/vbnet/rule.adoc b/rules/S2252/vbnet/rule.adoc index 5229b7da29..6de7d29d3e 100644 --- a/rules/S2252/vbnet/rule.adoc +++ b/rules/S2252/vbnet/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2253/java/rule.adoc b/rules/S2253/java/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S2253/java/rule.adoc +++ b/rules/S2253/java/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2255/java/rule.adoc b/rules/S2255/java/rule.adoc index 07de498872..b61d0f81e9 100644 --- a/rules/S2255/java/rule.adoc +++ b/rules/S2255/java/rule.adoc @@ -114,4 +114,5 @@ or (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2255/php/rule.adoc b/rules/S2255/php/rule.adoc index 02befdcf0a..d12b3b2def 100644 --- a/rules/S2255/php/rule.adoc +++ b/rules/S2255/php/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2255/python/rule.adoc b/rules/S2255/python/rule.adoc index edc7b8c5aa..76c96ce248 100644 --- a/rules/S2255/python/rule.adoc +++ b/rules/S2255/python/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2255/vbnet/rule.adoc b/rules/S2255/vbnet/rule.adoc index bf1dd7201c..5b8b1e5870 100644 --- a/rules/S2255/vbnet/rule.adoc +++ b/rules/S2255/vbnet/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2257/cfamily/rule.adoc b/rules/S2257/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2257/cfamily/rule.adoc +++ b/rules/S2257/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2257/csharp/rule.adoc b/rules/S2257/csharp/rule.adoc index 7c464b221a..560f54b892 100644 --- a/rules/S2257/csharp/rule.adoc +++ b/rules/S2257/csharp/rule.adoc @@ -38,6 +38,7 @@ SHA256 mySHA256 = SHA256.Create() ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2257/java/rule.adoc b/rules/S2257/java/rule.adoc index 097635fd37..ab9dfe6a00 100644 --- a/rules/S2257/java/rule.adoc +++ b/rules/S2257/java/rule.adoc @@ -18,6 +18,7 @@ MessageDigest digest = MessageDigest.getInstance("SHA-256"); ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2257/php/rule.adoc b/rules/S2257/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2257/php/rule.adoc +++ b/rules/S2257/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2257/vbnet/rule.adoc b/rules/S2257/vbnet/rule.adoc index be3d58cb24..5c68dc1a53 100644 --- a/rules/S2257/vbnet/rule.adoc +++ b/rules/S2257/vbnet/rule.adoc @@ -46,6 +46,7 @@ Dim mySHA256 As SHA256 = SHA256.Create() ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2259/cfamily/rule.adoc b/rules/S2259/cfamily/rule.adoc index 9f0ee7e2eb..33f3dcba81 100644 --- a/rules/S2259/cfamily/rule.adoc +++ b/rules/S2259/cfamily/rule.adoc @@ -61,4 +61,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2259/csharp/rule.adoc b/rules/S2259/csharp/rule.adoc index 12b49900c2..fb4b87dd66 100644 --- a/rules/S2259/csharp/rule.adoc +++ b/rules/S2259/csharp/rule.adoc @@ -76,4 +76,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2259/python/rule.adoc b/rules/S2259/python/rule.adoc index c1b8fd84bb..1b78c0af1f 100644 --- a/rules/S2259/python/rule.adoc +++ b/rules/S2259/python/rule.adoc @@ -42,4 +42,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2259/vbnet/rule.adoc b/rules/S2259/vbnet/rule.adoc index 066c5bdc0a..b3c36cd7c8 100644 --- a/rules/S2259/vbnet/rule.adoc +++ b/rules/S2259/vbnet/rule.adoc @@ -72,4 +72,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/apex/rule.adoc b/rules/S2260/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2260/apex/rule.adoc +++ b/rules/S2260/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/azureresourcemanager/rule.adoc b/rules/S2260/azureresourcemanager/rule.adoc index 0c3f6b9591..405307f63f 100644 --- a/rules/S2260/azureresourcemanager/rule.adoc +++ b/rules/S2260/azureresourcemanager/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S2260/cfamily/rule.adoc b/rules/S2260/cfamily/rule.adoc index 343e221b5a..452b29a0d5 100644 --- a/rules/S2260/cfamily/rule.adoc +++ b/rules/S2260/cfamily/rule.adoc @@ -68,4 +68,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/cloudformation/rule.adoc b/rules/S2260/cloudformation/rule.adoc index 72a2044c60..6478edccab 100644 --- a/rules/S2260/cloudformation/rule.adoc +++ b/rules/S2260/cloudformation/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/cobol/rule.adoc b/rules/S2260/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2260/cobol/rule.adoc +++ b/rules/S2260/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/docker/rule.adoc b/rules/S2260/docker/rule.adoc index 861d9a64b7..f2b5eed197 100644 --- a/rules/S2260/docker/rule.adoc +++ b/rules/S2260/docker/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/flex/rule.adoc b/rules/S2260/flex/rule.adoc index 76f3bfffc1..ae510d51d5 100644 --- a/rules/S2260/flex/rule.adoc +++ b/rules/S2260/flex/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/go/rule.adoc b/rules/S2260/go/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2260/go/rule.adoc +++ b/rules/S2260/go/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/java/rule.adoc b/rules/S2260/java/rule.adoc index b02a479743..6b2b3bb967 100644 --- a/rules/S2260/java/rule.adoc +++ b/rules/S2260/java/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/javascript/rule.adoc b/rules/S2260/javascript/rule.adoc index 0479804702..67d3adb65c 100644 --- a/rules/S2260/javascript/rule.adoc +++ b/rules/S2260/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/kotlin/rule.adoc b/rules/S2260/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2260/kotlin/rule.adoc +++ b/rules/S2260/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/kubernetes/rule.adoc b/rules/S2260/kubernetes/rule.adoc index cb2e5aadf1..3caeb51399 100644 --- a/rules/S2260/kubernetes/rule.adoc +++ b/rules/S2260/kubernetes/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/php/rule.adoc b/rules/S2260/php/rule.adoc index 263e171061..896bf56b33 100644 --- a/rules/S2260/php/rule.adoc +++ b/rules/S2260/php/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/pli/rule.adoc b/rules/S2260/pli/rule.adoc index f2878f6608..826baa9e34 100644 --- a/rules/S2260/pli/rule.adoc +++ b/rules/S2260/pli/rule.adoc @@ -17,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/plsql/rule.adoc b/rules/S2260/plsql/rule.adoc index 6a078d77f9..56d3a55a70 100644 --- a/rules/S2260/plsql/rule.adoc +++ b/rules/S2260/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/python/rule.adoc b/rules/S2260/python/rule.adoc index da988ee910..4e94b4bfd7 100644 --- a/rules/S2260/python/rule.adoc +++ b/rules/S2260/python/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/ruby/rule.adoc b/rules/S2260/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2260/ruby/rule.adoc +++ b/rules/S2260/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/scala/rule.adoc b/rules/S2260/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2260/scala/rule.adoc +++ b/rules/S2260/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/swift/rule.adoc b/rules/S2260/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2260/swift/rule.adoc +++ b/rules/S2260/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/terraform/rule.adoc b/rules/S2260/terraform/rule.adoc index 8461a42c9a..f825fb1424 100644 --- a/rules/S2260/terraform/rule.adoc +++ b/rules/S2260/terraform/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/tsql/rule.adoc b/rules/S2260/tsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2260/tsql/rule.adoc +++ b/rules/S2260/tsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/vb6/rule.adoc b/rules/S2260/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2260/vb6/rule.adoc +++ b/rules/S2260/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2260/xml/rule.adoc b/rules/S2260/xml/rule.adoc index 83fe2cf42e..4e0fc6d164 100644 --- a/rules/S2260/xml/rule.adoc +++ b/rules/S2260/xml/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2275/cfamily/rule.adoc b/rules/S2275/cfamily/rule.adoc index f26087a880..f11a3058c8 100644 --- a/rules/S2275/cfamily/rule.adoc +++ b/rules/S2275/cfamily/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2275/java/rule.adoc b/rules/S2275/java/rule.adoc index 249020f335..54978e2d7a 100644 --- a/rules/S2275/java/rule.adoc +++ b/rules/S2275/java/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2275/python/rule.adoc b/rules/S2275/python/rule.adoc index 61ee9794d7..7a5fa95d02 100644 --- a/rules/S2275/python/rule.adoc +++ b/rules/S2275/python/rule.adoc @@ -66,4 +66,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2277/java/rule.adoc b/rules/S2277/java/rule.adoc index 72f0cf2066..9af5846263 100644 --- a/rules/S2277/java/rule.adoc +++ b/rules/S2277/java/rule.adoc @@ -34,4 +34,5 @@ Use an RSA algorithm with an OAEP (Optimal Asymmetric Encryption Padding). (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2278/cfamily/rule.adoc b/rules/S2278/cfamily/rule.adoc index 3e6bb2c6ed..be7314536b 100644 --- a/rules/S2278/cfamily/rule.adoc +++ b/rules/S2278/cfamily/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2278/csharp/rule.adoc b/rules/S2278/csharp/rule.adoc index ec5fc2c8d0..f09b5ae21e 100644 --- a/rules/S2278/csharp/rule.adoc +++ b/rules/S2278/csharp/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2278/java/rule.adoc b/rules/S2278/java/rule.adoc index e1b0d20235..a75a77864c 100644 --- a/rules/S2278/java/rule.adoc +++ b/rules/S2278/java/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2278/plsql/rule.adoc b/rules/S2278/plsql/rule.adoc index 4b236da20c..9d2b0f44eb 100644 --- a/rules/S2278/plsql/rule.adoc +++ b/rules/S2278/plsql/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2278/python/rule.adoc b/rules/S2278/python/rule.adoc index 180f435bf7..f00b32b71b 100644 --- a/rules/S2278/python/rule.adoc +++ b/rules/S2278/python/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2278/swift/rule.adoc b/rules/S2278/swift/rule.adoc index ab3713dcc3..56c45714db 100644 --- a/rules/S2278/swift/rule.adoc +++ b/rules/S2278/swift/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2301/java/rule.adoc b/rules/S2301/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2301/java/rule.adoc +++ b/rules/S2301/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2302/csharp/rule.adoc b/rules/S2302/csharp/rule.adoc index d78ea7105b..9d2ac2b415 100644 --- a/rules/S2302/csharp/rule.adoc +++ b/rules/S2302/csharp/rule.adoc @@ -61,4 +61,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2302/vbnet/rule.adoc b/rules/S2302/vbnet/rule.adoc index e80f2274b0..6c13c1fa1d 100644 --- a/rules/S2302/vbnet/rule.adoc +++ b/rules/S2302/vbnet/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2321/xml/rule.adoc b/rules/S2321/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2321/xml/rule.adoc +++ b/rules/S2321/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2325/csharp/rule.adoc b/rules/S2325/csharp/rule.adoc index 726202b020..8e9f6fed2e 100644 --- a/rules/S2325/csharp/rule.adoc +++ b/rules/S2325/csharp/rule.adoc @@ -101,4 +101,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2325/javascript/rule.adoc b/rules/S2325/javascript/rule.adoc index ab817fddae..eeb4637f30 100644 --- a/rules/S2325/javascript/rule.adoc +++ b/rules/S2325/javascript/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2326/csharp/rule.adoc b/rules/S2326/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2326/csharp/rule.adoc +++ b/rules/S2326/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2326/java/rule.adoc b/rules/S2326/java/rule.adoc index b23a329980..dee56923a4 100644 --- a/rules/S2326/java/rule.adoc +++ b/rules/S2326/java/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2327/rpg/rule.adoc b/rules/S2327/rpg/rule.adoc index 16667fbd67..705d731eca 100644 --- a/rules/S2327/rpg/rule.adoc +++ b/rules/S2327/rpg/rule.adoc @@ -50,4 +50,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2344/csharp/rule.adoc b/rules/S2344/csharp/rule.adoc index 745daf5dbc..5161437469 100644 --- a/rules/S2344/csharp/rule.adoc +++ b/rules/S2344/csharp/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2344/vbnet/rule.adoc b/rules/S2344/vbnet/rule.adoc index d2d9fe63ad..17bfd1b006 100644 --- a/rules/S2344/vbnet/rule.adoc +++ b/rules/S2344/vbnet/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2345/csharp/rule.adoc b/rules/S2345/csharp/rule.adoc index 51cf97d540..ba17cdc44f 100644 --- a/rules/S2345/csharp/rule.adoc +++ b/rules/S2345/csharp/rule.adoc @@ -49,6 +49,7 @@ class Program ---- include::../exceptions.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2357/vbnet/rule.adoc b/rules/S2357/vbnet/rule.adoc index 483a1b75f9..911d5afbc7 100644 --- a/rules/S2357/vbnet/rule.adoc +++ b/rules/S2357/vbnet/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2360/csharp/rule.adoc b/rules/S2360/csharp/rule.adoc index 73947bdd94..64037c2136 100644 --- a/rules/S2360/csharp/rule.adoc +++ b/rules/S2360/csharp/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2360/vbnet/rule.adoc b/rules/S2360/vbnet/rule.adoc index 706a125987..6346839262 100644 --- a/rules/S2360/vbnet/rule.adoc +++ b/rules/S2360/vbnet/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2365/rspecator.adoc b/rules/S2365/rspecator.adoc index e1c09218c0..f213e9de87 100644 --- a/rules/S2365/rspecator.adoc +++ b/rules/S2365/rspecator.adoc @@ -13,4 +13,5 @@ include::highlighting.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2368/why-dotnet.adoc b/rules/S2368/why-dotnet.adoc index 6bae3787bd..13d106f622 100644 --- a/rules/S2368/why-dotnet.adoc +++ b/rules/S2368/why-dotnet.adoc @@ -21,4 +21,5 @@ As a result, avoiding exposing such methods to external users is recommended. However, using multidimensional and jagged array method parameters internally, such as in `private` or `internal` methods or within `internal` classes, is compliant since they are not publicly exposed. include::{exceptionCode}[] + \ No newline at end of file diff --git a/rules/S2372/csharp/rule.adoc b/rules/S2372/csharp/rule.adoc index d2cb542836..fa00cad116 100644 --- a/rules/S2372/csharp/rule.adoc +++ b/rules/S2372/csharp/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2372/vbnet/rule.adoc b/rules/S2372/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2372/vbnet/rule.adoc +++ b/rules/S2372/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2373/vbnet/rule.adoc b/rules/S2373/vbnet/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S2373/vbnet/rule.adoc +++ b/rules/S2373/vbnet/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2384/java/rule.adoc b/rules/S2384/java/rule.adoc index 3106d8f4f5..1189a5d1fc 100644 --- a/rules/S2384/java/rule.adoc +++ b/rules/S2384/java/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2386/csharp/rule.adoc b/rules/S2386/csharp/rule.adoc index ec8ca04f33..d030ee578e 100644 --- a/rules/S2386/csharp/rule.adoc +++ b/rules/S2386/csharp/rule.adoc @@ -67,4 +67,5 @@ field name (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2386/java/rule.adoc b/rules/S2386/java/rule.adoc index 362943c817..ac8d5b13d7 100644 --- a/rules/S2386/java/rule.adoc +++ b/rules/S2386/java/rule.adoc @@ -28,4 +28,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2387/cfamily/rule.adoc b/rules/S2387/cfamily/rule.adoc index f5152737b2..94d4e34889 100644 --- a/rules/S2387/cfamily/rule.adoc +++ b/rules/S2387/cfamily/rule.adoc @@ -99,4 +99,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2387/java/rule.adoc b/rules/S2387/java/rule.adoc index cd1c626626..4a23d1ff32 100644 --- a/rules/S2387/java/rule.adoc +++ b/rules/S2387/java/rule.adoc @@ -68,4 +68,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2387/vbnet/rule.adoc b/rules/S2387/vbnet/rule.adoc index de104d5189..650f8af80e 100644 --- a/rules/S2387/vbnet/rule.adoc +++ b/rules/S2387/vbnet/rule.adoc @@ -94,4 +94,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2429/javascript/rule.adoc b/rules/S2429/javascript/rule.adoc index a503186c57..5d50802f24 100644 --- a/rules/S2429/javascript/rule.adoc +++ b/rules/S2429/javascript/rule.adoc @@ -38,4 +38,5 @@ Create and initialize the "xxx" array using array literal syntax. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2429/vbnet/rule.adoc b/rules/S2429/vbnet/rule.adoc index 7c55d5be9a..f398d90f01 100644 --- a/rules/S2429/vbnet/rule.adoc +++ b/rules/S2429/vbnet/rule.adoc @@ -42,4 +42,5 @@ Refactor this code to use the "... = {}" syntax. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2435/cfamily/rule.adoc b/rules/S2435/cfamily/rule.adoc index a7af7f8682..44d777f47a 100644 --- a/rules/S2435/cfamily/rule.adoc +++ b/rules/S2435/cfamily/rule.adoc @@ -22,4 +22,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2435/csharp/rule.adoc b/rules/S2435/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2435/csharp/rule.adoc +++ b/rules/S2435/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2435/java/rule.adoc b/rules/S2435/java/rule.adoc index 3a0ee4d5d4..ee07338862 100644 --- a/rules/S2435/java/rule.adoc +++ b/rules/S2435/java/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2435/php/rule.adoc b/rules/S2435/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2435/php/rule.adoc +++ b/rules/S2435/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2435/python/rule.adoc b/rules/S2435/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2435/python/rule.adoc +++ b/rules/S2435/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2435/vbnet/rule.adoc b/rules/S2435/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2435/vbnet/rule.adoc +++ b/rules/S2435/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2437/csharp/rule.adoc b/rules/S2437/csharp/rule.adoc index d66b001fe0..677603ec71 100644 --- a/rules/S2437/csharp/rule.adoc +++ b/rules/S2437/csharp/rule.adoc @@ -32,4 +32,5 @@ anyValue // Compliant ---- include::../resources-dotnet.adoc[] + include::../rspecator.adoc[] \ No newline at end of file diff --git a/rules/S2437/java/rule.adoc b/rules/S2437/java/rule.adoc index 4f4f4479c4..a67a2e27d8 100644 --- a/rules/S2437/java/rule.adoc +++ b/rules/S2437/java/rule.adoc @@ -1,2 +1,3 @@ include::../rule.adoc[] + include::../rspecator.adoc[] \ No newline at end of file diff --git a/rules/S2437/rspecator.adoc b/rules/S2437/rspecator.adoc index b9dd5835ca..b1736a3f0b 100644 --- a/rules/S2437/rspecator.adoc +++ b/rules/S2437/rspecator.adoc @@ -11,4 +11,5 @@ include::message.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S2437/vbnet/rule.adoc b/rules/S2437/vbnet/rule.adoc index 720fb304e7..157ffa5403 100644 --- a/rules/S2437/vbnet/rule.adoc +++ b/rules/S2437/vbnet/rule.adoc @@ -32,4 +32,5 @@ anyValue ' Compliant ---- include::../resources-dotnet.adoc[] + include::../rspecator.adoc[] \ No newline at end of file diff --git a/rules/S2440/java/rule.adoc b/rules/S2440/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2440/java/rule.adoc +++ b/rules/S2440/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2445/csharp/rule.adoc b/rules/S2445/csharp/rule.adoc index 9c815fbc1e..4a1d9ed7fa 100644 --- a/rules/S2445/csharp/rule.adoc +++ b/rules/S2445/csharp/rule.adoc @@ -119,4 +119,5 @@ locked object in `lock (xxx)` statement (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S2445/java/rule.adoc b/rules/S2445/java/rule.adoc index 70090a69a3..8015b0c2c6 100644 --- a/rules/S2445/java/rule.adoc +++ b/rules/S2445/java/rule.adoc @@ -67,4 +67,5 @@ Synchronizing on a new instance is a no-op. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S2479/cfamily/rule.adoc b/rules/S2479/cfamily/rule.adoc index 451448620f..32c2ecee5c 100644 --- a/rules/S2479/cfamily/rule.adoc +++ b/rules/S2479/cfamily/rule.adoc @@ -41,4 +41,5 @@ control character (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2479/java/rule.adoc b/rules/S2479/java/rule.adoc index f2d288b6ef..85af8f0bb7 100644 --- a/rules/S2479/java/rule.adoc +++ b/rules/S2479/java/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2479/plsql/rule.adoc b/rules/S2479/plsql/rule.adoc index e9c449be3f..0ed5cb73b3 100644 --- a/rules/S2479/plsql/rule.adoc +++ b/rules/S2479/plsql/rule.adoc @@ -48,4 +48,5 @@ true (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2486/cfamily/rule.adoc b/rules/S2486/cfamily/rule.adoc index b6e7fcc042..bf3e1e23c1 100644 --- a/rules/S2486/cfamily/rule.adoc +++ b/rules/S2486/cfamily/rule.adoc @@ -45,4 +45,5 @@ Handle this exception or don't catch it at all. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2486/cobol/rule.adoc b/rules/S2486/cobol/rule.adoc index ec45930878..7afadd61ce 100644 --- a/rules/S2486/cobol/rule.adoc +++ b/rules/S2486/cobol/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2486/java/rule.adoc b/rules/S2486/java/rule.adoc index d5536c9118..d0b865708b 100644 --- a/rules/S2486/java/rule.adoc +++ b/rules/S2486/java/rule.adoc @@ -69,4 +69,5 @@ Handle this exception or don't catch it at all. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2486/javascript/rule.adoc b/rules/S2486/javascript/rule.adoc index a25f495049..8357caaa23 100644 --- a/rules/S2486/javascript/rule.adoc +++ b/rules/S2486/javascript/rule.adoc @@ -45,4 +45,5 @@ Handle this exception or don't catch it at all. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2486/plsql/rule.adoc b/rules/S2486/plsql/rule.adoc index ed5457ba02..94625f3032 100644 --- a/rules/S2486/plsql/rule.adoc +++ b/rules/S2486/plsql/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2486/rpg/rule.adoc b/rules/S2486/rpg/rule.adoc index a42a7da39f..2f3ae9d769 100644 --- a/rules/S2486/rpg/rule.adoc +++ b/rules/S2486/rpg/rule.adoc @@ -49,4 +49,5 @@ Either handle this XXX error or allow it to propagate. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2490/plsql/rule.adoc b/rules/S2490/plsql/rule.adoc index 427e69573b..0c9c36c2da 100644 --- a/rules/S2490/plsql/rule.adoc +++ b/rules/S2490/plsql/rule.adoc @@ -26,4 +26,5 @@ The regular expression the name should match (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2495/cfamily/rule.adoc b/rules/S2495/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2495/cfamily/rule.adoc +++ b/rules/S2495/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2495/csharp/rule.adoc b/rules/S2495/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2495/csharp/rule.adoc +++ b/rules/S2495/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2495/flex/rule.adoc b/rules/S2495/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2495/flex/rule.adoc +++ b/rules/S2495/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2495/java/rule.adoc b/rules/S2495/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2495/java/rule.adoc +++ b/rules/S2495/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2495/javascript/rule.adoc b/rules/S2495/javascript/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2495/javascript/rule.adoc +++ b/rules/S2495/javascript/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2495/php/rule.adoc b/rules/S2495/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2495/php/rule.adoc +++ b/rules/S2495/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2495/python/rule.adoc b/rules/S2495/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2495/python/rule.adoc +++ b/rules/S2495/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2495/swift/rule.adoc b/rules/S2495/swift/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2495/swift/rule.adoc +++ b/rules/S2495/swift/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2495/vb6/rule.adoc b/rules/S2495/vb6/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2495/vb6/rule.adoc +++ b/rules/S2495/vb6/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2495/vbnet/rule.adoc b/rules/S2495/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2495/vbnet/rule.adoc +++ b/rules/S2495/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2523/cfamily/rule.adoc b/rules/S2523/cfamily/rule.adoc index b7cb382599..043e82de83 100644 --- a/rules/S2523/cfamily/rule.adoc +++ b/rules/S2523/cfamily/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2523/swift/rule.adoc b/rules/S2523/swift/rule.adoc index ab488fcdbc..d44e270a33 100644 --- a/rules/S2523/swift/rule.adoc +++ b/rules/S2523/swift/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2524/plsql/rule.adoc b/rules/S2524/plsql/rule.adoc index 2cd9e77fac..5609a485cf 100644 --- a/rules/S2524/plsql/rule.adoc +++ b/rules/S2524/plsql/rule.adoc @@ -17,4 +17,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2526/plsql/rule.adoc b/rules/S2526/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2526/plsql/rule.adoc +++ b/rules/S2526/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2527/cobol/rule.adoc b/rules/S2527/cobol/rule.adoc index 91ad35d896..4e1b403d07 100644 --- a/rules/S2527/cobol/rule.adoc +++ b/rules/S2527/cobol/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2527/plsql/rule.adoc b/rules/S2527/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2527/plsql/rule.adoc +++ b/rules/S2527/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2527/tsql/rule.adoc b/rules/S2527/tsql/rule.adoc index e18e63d78e..6f40cd4783 100644 --- a/rules/S2527/tsql/rule.adoc +++ b/rules/S2527/tsql/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2544/plsql/rule.adoc b/rules/S2544/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2544/plsql/rule.adoc +++ b/rules/S2544/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2551/csharp/rule.adoc b/rules/S2551/csharp/rule.adoc index 537159e999..1d5fa4b2ea 100644 --- a/rules/S2551/csharp/rule.adoc +++ b/rules/S2551/csharp/rule.adoc @@ -40,4 +40,5 @@ void MyLockingMethod() include::../resources-dotnet.adoc[] + include::../rspecator.adoc[] diff --git a/rules/S2551/rspecator.adoc b/rules/S2551/rspecator.adoc index ab67292bc8..0260ce2a65 100644 --- a/rules/S2551/rspecator.adoc +++ b/rules/S2551/rspecator.adoc @@ -11,4 +11,5 @@ include::message.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view,env-vscode[] \ No newline at end of file diff --git a/rules/S2551/vbnet/rule.adoc b/rules/S2551/vbnet/rule.adoc index 06a1b03791..d872bc87e1 100644 --- a/rules/S2551/vbnet/rule.adoc +++ b/rules/S2551/vbnet/rule.adoc @@ -34,4 +34,5 @@ End Sub ---- include::../resources-dotnet.adoc[] + include::../rspecator.adoc[] \ No newline at end of file diff --git a/rules/S2574/cfamily/rule.adoc b/rules/S2574/cfamily/rule.adoc index d9017eb6d6..a854f868a6 100644 --- a/rules/S2574/cfamily/rule.adoc +++ b/rules/S2574/cfamily/rule.adoc @@ -1,6 +1,7 @@ == Why is this an issue? include::../rule-except-see.adoc[] + == Resources * https://owasp.org/www-project-top-ten/2017/A1_2017-Injection[OWASP Top 10 2017 Category A1] - Injection diff --git a/rules/S2574/csharp/rule.adoc b/rules/S2574/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2574/csharp/rule.adoc +++ b/rules/S2574/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2574/java/rule.adoc b/rules/S2574/java/rule.adoc index d9017eb6d6..a854f868a6 100644 --- a/rules/S2574/java/rule.adoc +++ b/rules/S2574/java/rule.adoc @@ -1,6 +1,7 @@ == Why is this an issue? include::../rule-except-see.adoc[] + == Resources * https://owasp.org/www-project-top-ten/2017/A1_2017-Injection[OWASP Top 10 2017 Category A1] - Injection diff --git a/rules/S2574/php/rule.adoc b/rules/S2574/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2574/php/rule.adoc +++ b/rules/S2574/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2574/python/rule.adoc b/rules/S2574/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2574/python/rule.adoc +++ b/rules/S2574/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2574/swift/rule.adoc b/rules/S2574/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2574/swift/rule.adoc +++ b/rules/S2574/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2574/vbnet/rule.adoc b/rules/S2574/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2574/vbnet/rule.adoc +++ b/rules/S2574/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2575/abap/rule.adoc b/rules/S2575/abap/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2575/abap/rule.adoc +++ b/rules/S2575/abap/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2575/cfamily/rule.adoc b/rules/S2575/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2575/cfamily/rule.adoc +++ b/rules/S2575/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2575/cobol/rule.adoc b/rules/S2575/cobol/rule.adoc index e33710ec64..2a29d5621d 100644 --- a/rules/S2575/cobol/rule.adoc +++ b/rules/S2575/cobol/rule.adoc @@ -47,4 +47,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2575/csharp/rule.adoc b/rules/S2575/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2575/csharp/rule.adoc +++ b/rules/S2575/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2575/java/rule.adoc b/rules/S2575/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2575/java/rule.adoc +++ b/rules/S2575/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2575/php/rule.adoc b/rules/S2575/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2575/php/rule.adoc +++ b/rules/S2575/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2575/python/rule.adoc b/rules/S2575/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2575/python/rule.adoc +++ b/rules/S2575/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2575/swift/rule.adoc b/rules/S2575/swift/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2575/swift/rule.adoc +++ b/rules/S2575/swift/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2575/vbnet/rule.adoc b/rules/S2575/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2575/vbnet/rule.adoc +++ b/rules/S2575/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2583/cfamily/rule.adoc b/rules/S2583/cfamily/rule.adoc index 4260cbcd7a..dc12e6fa31 100644 --- a/rules/S2583/cfamily/rule.adoc +++ b/rules/S2583/cfamily/rule.adoc @@ -27,4 +27,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2583/cobol/rule.adoc b/rules/S2583/cobol/rule.adoc index d02b86779e..89c9188acc 100644 --- a/rules/S2583/cobol/rule.adoc +++ b/rules/S2583/cobol/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2583/csharp/rule.adoc b/rules/S2583/csharp/rule.adoc index 171217e1a8..3d3600c808 100644 --- a/rules/S2583/csharp/rule.adoc +++ b/rules/S2583/csharp/rule.adoc @@ -120,4 +120,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2583/java/rule.adoc b/rules/S2583/java/rule.adoc index 3f2f293081..3c021c34a8 100644 --- a/rules/S2583/java/rule.adoc +++ b/rules/S2583/java/rule.adoc @@ -49,4 +49,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2583/javascript/rule.adoc b/rules/S2583/javascript/rule.adoc index 06da7056f7..9611725258 100644 --- a/rules/S2583/javascript/rule.adoc +++ b/rules/S2583/javascript/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2583/python/rule.adoc b/rules/S2583/python/rule.adoc index 4986d21a63..54be2c3f88 100644 --- a/rules/S2583/python/rule.adoc +++ b/rules/S2583/python/rule.adoc @@ -35,4 +35,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2589/cfamily/rule.adoc b/rules/S2589/cfamily/rule.adoc index 29ed5d06a0..a27d83610b 100644 --- a/rules/S2589/cfamily/rule.adoc +++ b/rules/S2589/cfamily/rule.adoc @@ -29,4 +29,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2589/cobol/rule.adoc b/rules/S2589/cobol/rule.adoc index 6bbf931c6a..b506048088 100644 --- a/rules/S2589/cobol/rule.adoc +++ b/rules/S2589/cobol/rule.adoc @@ -57,4 +57,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2589/csharp/rule.adoc b/rules/S2589/csharp/rule.adoc index f86fc0204f..94f16101d4 100644 --- a/rules/S2589/csharp/rule.adoc +++ b/rules/S2589/csharp/rule.adoc @@ -157,4 +157,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2589/java/rule.adoc b/rules/S2589/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S2589/java/rule.adoc +++ b/rules/S2589/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2589/javascript/rule.adoc b/rules/S2589/javascript/rule.adoc index d94b74abbc..f19912c914 100644 --- a/rules/S2589/javascript/rule.adoc +++ b/rules/S2589/javascript/rule.adoc @@ -49,4 +49,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2589/python/rule.adoc b/rules/S2589/python/rule.adoc index ee7e2b96d4..361abca7b5 100644 --- a/rules/S2589/python/rule.adoc +++ b/rules/S2589/python/rule.adoc @@ -45,4 +45,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2598/cfamily/rule.adoc b/rules/S2598/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2598/cfamily/rule.adoc +++ b/rules/S2598/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2598/flex/rule.adoc b/rules/S2598/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2598/flex/rule.adoc +++ b/rules/S2598/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2598/html/rule.adoc b/rules/S2598/html/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2598/html/rule.adoc +++ b/rules/S2598/html/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2598/java/rule.adoc b/rules/S2598/java/rule.adoc index 51903a6a39..667e12988d 100644 --- a/rules/S2598/java/rule.adoc +++ b/rules/S2598/java/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2598/javascript/rule.adoc b/rules/S2598/javascript/rule.adoc index 8b31c6e782..862223f9ee 100644 --- a/rules/S2598/javascript/rule.adoc +++ b/rules/S2598/javascript/rule.adoc @@ -83,4 +83,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2598/php/rule.adoc b/rules/S2598/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2598/php/rule.adoc +++ b/rules/S2598/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2598/python/rule.adoc b/rules/S2598/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2598/python/rule.adoc +++ b/rules/S2598/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2598/swift/rule.adoc b/rules/S2598/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2598/swift/rule.adoc +++ b/rules/S2598/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2608/cfamily/rule.adoc b/rules/S2608/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2608/cfamily/rule.adoc +++ b/rules/S2608/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2608/csharp/rule.adoc b/rules/S2608/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2608/csharp/rule.adoc +++ b/rules/S2608/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2608/flex/rule.adoc b/rules/S2608/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2608/flex/rule.adoc +++ b/rules/S2608/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2608/html/rule.adoc b/rules/S2608/html/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2608/html/rule.adoc +++ b/rules/S2608/html/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2608/java/rule.adoc b/rules/S2608/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2608/java/rule.adoc +++ b/rules/S2608/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2608/php/rule.adoc b/rules/S2608/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2608/php/rule.adoc +++ b/rules/S2608/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2608/python/rule.adoc b/rules/S2608/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2608/python/rule.adoc +++ b/rules/S2608/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2608/swift/rule.adoc b/rules/S2608/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2608/swift/rule.adoc +++ b/rules/S2608/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2608/vb6/rule.adoc b/rules/S2608/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2608/vb6/rule.adoc +++ b/rules/S2608/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2608/vbnet/rule.adoc b/rules/S2608/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2608/vbnet/rule.adoc +++ b/rules/S2608/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2609/html/rule.adoc b/rules/S2609/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2609/html/rule.adoc +++ b/rules/S2609/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2609/javascript/rule.adoc b/rules/S2609/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2609/javascript/rule.adoc +++ b/rules/S2609/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2609/php/rule.adoc b/rules/S2609/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2609/php/rule.adoc +++ b/rules/S2609/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2609/python/rule.adoc b/rules/S2609/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2609/python/rule.adoc +++ b/rules/S2609/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2610/cfamily/rule.adoc b/rules/S2610/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2610/cfamily/rule.adoc +++ b/rules/S2610/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2610/csharp/rule.adoc b/rules/S2610/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2610/csharp/rule.adoc +++ b/rules/S2610/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2610/flex/rule.adoc b/rules/S2610/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2610/flex/rule.adoc +++ b/rules/S2610/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2610/java/rule.adoc b/rules/S2610/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2610/java/rule.adoc +++ b/rules/S2610/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2610/php/rule.adoc b/rules/S2610/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2610/php/rule.adoc +++ b/rules/S2610/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2610/python/rule.adoc b/rules/S2610/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2610/python/rule.adoc +++ b/rules/S2610/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2610/swift/rule.adoc b/rules/S2610/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2610/swift/rule.adoc +++ b/rules/S2610/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2610/vbnet/rule.adoc b/rules/S2610/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2610/vbnet/rule.adoc +++ b/rules/S2610/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2612/csharp/rule.adoc b/rules/S2612/csharp/rule.adoc index 74389ad4f2..d9c0b1ebd0 100644 --- a/rules/S2612/csharp/rule.adoc +++ b/rules/S2612/csharp/rule.adoc @@ -88,4 +88,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2612/docker/rule.adoc b/rules/S2612/docker/rule.adoc index ac36ab662f..4de40abf81 100644 --- a/rules/S2612/docker/rule.adoc +++ b/rules/S2612/docker/rule.adoc @@ -62,4 +62,5 @@ Make sure granting write access to others is safe here. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2612/java/rule.adoc b/rules/S2612/java/rule.adoc index a5ba49fcb7..a2eb2afb11 100644 --- a/rules/S2612/java/rule.adoc +++ b/rules/S2612/java/rule.adoc @@ -87,4 +87,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2612/javascript/rule.adoc b/rules/S2612/javascript/rule.adoc index 5eef276dd7..099e1bf9b7 100644 --- a/rules/S2612/javascript/rule.adoc +++ b/rules/S2612/javascript/rule.adoc @@ -105,4 +105,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2612/kotlin/rule.adoc b/rules/S2612/kotlin/rule.adoc index 87dc4ddf79..e7d7937240 100644 --- a/rules/S2612/kotlin/rule.adoc +++ b/rules/S2612/kotlin/rule.adoc @@ -20,4 +20,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2612/php/rule.adoc b/rules/S2612/php/rule.adoc index da6a40baa3..e61e83446b 100644 --- a/rules/S2612/php/rule.adoc +++ b/rules/S2612/php/rule.adoc @@ -80,4 +80,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2612/python/rule.adoc b/rules/S2612/python/rule.adoc index 9809cc7e44..61a18fd5a5 100644 --- a/rules/S2612/python/rule.adoc +++ b/rules/S2612/python/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2612/vbnet/rule.adoc b/rules/S2612/vbnet/rule.adoc index 007ba804f7..3b0675927a 100644 --- a/rules/S2612/vbnet/rule.adoc +++ b/rules/S2612/vbnet/rule.adoc @@ -88,4 +88,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2614/abap/rule.adoc b/rules/S2614/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/abap/rule.adoc +++ b/rules/S2614/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/cfamily/rule.adoc b/rules/S2614/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/cfamily/rule.adoc +++ b/rules/S2614/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/cobol/rule.adoc b/rules/S2614/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/cobol/rule.adoc +++ b/rules/S2614/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/csharp/rule.adoc b/rules/S2614/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/csharp/rule.adoc +++ b/rules/S2614/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/flex/rule.adoc b/rules/S2614/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/flex/rule.adoc +++ b/rules/S2614/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/java/rule.adoc b/rules/S2614/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/java/rule.adoc +++ b/rules/S2614/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/javascript/rule.adoc b/rules/S2614/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/javascript/rule.adoc +++ b/rules/S2614/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/php/rule.adoc b/rules/S2614/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/php/rule.adoc +++ b/rules/S2614/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/pli/rule.adoc b/rules/S2614/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/pli/rule.adoc +++ b/rules/S2614/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/plsql/rule.adoc b/rules/S2614/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/plsql/rule.adoc +++ b/rules/S2614/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/python/rule.adoc b/rules/S2614/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/python/rule.adoc +++ b/rules/S2614/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/rpg/rule.adoc b/rules/S2614/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/rpg/rule.adoc +++ b/rules/S2614/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/swift/rule.adoc b/rules/S2614/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/swift/rule.adoc +++ b/rules/S2614/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/vb6/rule.adoc b/rules/S2614/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/vb6/rule.adoc +++ b/rules/S2614/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2614/vbnet/rule.adoc b/rules/S2614/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2614/vbnet/rule.adoc +++ b/rules/S2614/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2615/cfamily/rule.adoc b/rules/S2615/cfamily/rule.adoc index 10cae8868d..950f4e8451 100644 --- a/rules/S2615/cfamily/rule.adoc +++ b/rules/S2615/cfamily/rule.adoc @@ -20,4 +20,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2615/java/rule.adoc b/rules/S2615/java/rule.adoc index 10cae8868d..950f4e8451 100644 --- a/rules/S2615/java/rule.adoc +++ b/rules/S2615/java/rule.adoc @@ -20,4 +20,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2615/swift/rule.adoc b/rules/S2615/swift/rule.adoc index 5339c7dc95..82dcd5bacd 100644 --- a/rules/S2615/swift/rule.adoc +++ b/rules/S2615/swift/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2630/cfamily/rule.adoc b/rules/S2630/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2630/cfamily/rule.adoc +++ b/rules/S2630/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2630/csharp/rule.adoc b/rules/S2630/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2630/csharp/rule.adoc +++ b/rules/S2630/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2630/flex/rule.adoc b/rules/S2630/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2630/flex/rule.adoc +++ b/rules/S2630/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2630/java/rule.adoc b/rules/S2630/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2630/java/rule.adoc +++ b/rules/S2630/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2630/javascript/rule.adoc b/rules/S2630/javascript/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2630/javascript/rule.adoc +++ b/rules/S2630/javascript/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2630/php/rule.adoc b/rules/S2630/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2630/php/rule.adoc +++ b/rules/S2630/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2630/python/rule.adoc b/rules/S2630/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2630/python/rule.adoc +++ b/rules/S2630/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2630/swift/rule.adoc b/rules/S2630/swift/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2630/swift/rule.adoc +++ b/rules/S2630/swift/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2630/vb6/rule.adoc b/rules/S2630/vb6/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2630/vb6/rule.adoc +++ b/rules/S2630/vb6/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2630/vbnet/rule.adoc b/rules/S2630/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2630/vbnet/rule.adoc +++ b/rules/S2630/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2631/csharp/rule.adoc b/rules/S2631/csharp/rule.adoc index 4d13deb544..836e22b5cf 100644 --- a/rules/S2631/csharp/rule.adoc +++ b/rules/S2631/csharp/rule.adoc @@ -27,4 +27,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2631/java/rule.adoc b/rules/S2631/java/rule.adoc index cffaeb2a68..2babe47f1f 100644 --- a/rules/S2631/java/rule.adoc +++ b/rules/S2631/java/rule.adoc @@ -25,5 +25,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2631/javascript/rule.adoc b/rules/S2631/javascript/rule.adoc index ed09ef2bcd..5c5e5c6768 100644 --- a/rules/S2631/javascript/rule.adoc +++ b/rules/S2631/javascript/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2631/php/rule.adoc b/rules/S2631/php/rule.adoc index 2834ceee48..5bd43f1a5a 100644 --- a/rules/S2631/php/rule.adoc +++ b/rules/S2631/php/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2631/python/rule.adoc b/rules/S2631/python/rule.adoc index 44c4033985..0b80188bf4 100644 --- a/rules/S2631/python/rule.adoc +++ b/rules/S2631/python/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2637/cfamily/rule.adoc b/rules/S2637/cfamily/rule.adoc index 3c2260aa38..ef8a6dbe42 100644 --- a/rules/S2637/cfamily/rule.adoc +++ b/rules/S2637/cfamily/rule.adoc @@ -15,6 +15,7 @@ int* nonnull(__attribute__((nonnull)) int* parameter) { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2638/java/rule.adoc b/rules/S2638/java/rule.adoc index 75197ac448..da22f837e7 100644 --- a/rules/S2638/java/rule.adoc +++ b/rules/S2638/java/rule.adoc @@ -56,4 +56,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2638/python/rule.adoc b/rules/S2638/python/rule.adoc index 2a38f73617..1935c7639d 100644 --- a/rules/S2638/python/rule.adoc +++ b/rules/S2638/python/rule.adoc @@ -136,4 +136,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2639/javascript/rule.adoc b/rules/S2639/javascript/rule.adoc index 24cb2b2d82..09d515f396 100644 --- a/rules/S2639/javascript/rule.adoc +++ b/rules/S2639/javascript/rule.adoc @@ -31,4 +31,5 @@ Rework this empty character class that doesn't match anything. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2643/csharp/rule.adoc b/rules/S2643/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2643/csharp/rule.adoc +++ b/rules/S2643/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2643/java/rule.adoc b/rules/S2643/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2643/java/rule.adoc +++ b/rules/S2643/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2643/php/rule.adoc b/rules/S2643/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2643/php/rule.adoc +++ b/rules/S2643/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2647/csharp/rule.adoc b/rules/S2647/csharp/rule.adoc index 01d433d139..4dd7e9c071 100644 --- a/rules/S2647/csharp/rule.adoc +++ b/rules/S2647/csharp/rule.adoc @@ -18,4 +18,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2647/java/rule.adoc b/rules/S2647/java/rule.adoc index 78adfc8c0a..fcf08532cb 100644 --- a/rules/S2647/java/rule.adoc +++ b/rules/S2647/java/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2647/python/rule.adoc b/rules/S2647/python/rule.adoc index 0cd60e261f..5f2c1c205a 100644 --- a/rules/S2647/python/rule.adoc +++ b/rules/S2647/python/rule.adoc @@ -65,4 +65,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2647/xml/rule.adoc b/rules/S2647/xml/rule.adoc index a7313b956a..4ddad665cf 100644 --- a/rules/S2647/xml/rule.adoc +++ b/rules/S2647/xml/rule.adoc @@ -50,4 +50,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2658/java/rule.adoc b/rules/S2658/java/rule.adoc index 38dcdeb037..0cef2ac5a9 100644 --- a/rules/S2658/java/rule.adoc +++ b/rules/S2658/java/rule.adoc @@ -31,4 +31,5 @@ Remove this use of dynamic class loading. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2658/javascript/rule.adoc b/rules/S2658/javascript/rule.adoc index 7ad1e9df03..65c8c32954 100644 --- a/rules/S2658/javascript/rule.adoc +++ b/rules/S2658/javascript/rule.adoc @@ -37,4 +37,5 @@ Remove this use of dynamic module loading. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2662/cfamily/rule.adoc b/rules/S2662/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2662/cfamily/rule.adoc +++ b/rules/S2662/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2662/csharp/rule.adoc b/rules/S2662/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2662/csharp/rule.adoc +++ b/rules/S2662/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2662/javascript/rule.adoc b/rules/S2662/javascript/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2662/javascript/rule.adoc +++ b/rules/S2662/javascript/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2662/php/rule.adoc b/rules/S2662/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2662/php/rule.adoc +++ b/rules/S2662/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2662/plsql/rule.adoc b/rules/S2662/plsql/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2662/plsql/rule.adoc +++ b/rules/S2662/plsql/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2662/vbnet/rule.adoc b/rules/S2662/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2662/vbnet/rule.adoc +++ b/rules/S2662/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2674/csharp/rule.adoc b/rules/S2674/csharp/rule.adoc index fc621ab32b..46d95a39d2 100644 --- a/rules/S2674/csharp/rule.adoc +++ b/rules/S2674/csharp/rule.adoc @@ -56,4 +56,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2674/java/rule.adoc b/rules/S2674/java/rule.adoc index 8f84473cb8..04a39291c4 100644 --- a/rules/S2674/java/rule.adoc +++ b/rules/S2674/java/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2681/cfamily/rule.adoc b/rules/S2681/cfamily/rule.adoc index 5e5cf74745..7962938db5 100644 --- a/rules/S2681/cfamily/rule.adoc +++ b/rules/S2681/cfamily/rule.adoc @@ -23,4 +23,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2681/csharp/rule.adoc b/rules/S2681/csharp/rule.adoc index 62064e5cca..1a9940cc26 100644 --- a/rules/S2681/csharp/rule.adoc +++ b/rules/S2681/csharp/rule.adoc @@ -21,4 +21,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2681/java/rule.adoc b/rules/S2681/java/rule.adoc index d03ffc2de3..78572fec01 100644 --- a/rules/S2681/java/rule.adoc +++ b/rules/S2681/java/rule.adoc @@ -24,4 +24,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2681/javascript/rule.adoc b/rules/S2681/javascript/rule.adoc index 4a2d5ffddf..50841d3249 100644 --- a/rules/S2681/javascript/rule.adoc +++ b/rules/S2681/javascript/rule.adoc @@ -23,4 +23,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2681/php/rule.adoc b/rules/S2681/php/rule.adoc index 6bdece7160..fb06fedc92 100644 --- a/rules/S2681/php/rule.adoc +++ b/rules/S2681/php/rule.adoc @@ -24,4 +24,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2681/tsql/rule.adoc b/rules/S2681/tsql/rule.adoc index a2ded2e5cc..e891b82879 100644 --- a/rules/S2681/tsql/rule.adoc +++ b/rules/S2681/tsql/rule.adoc @@ -44,4 +44,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2688/csharp/rule.adoc b/rules/S2688/csharp/rule.adoc index cd130edb91..558cc9d9cd 100644 --- a/rules/S2688/csharp/rule.adoc +++ b/rules/S2688/csharp/rule.adoc @@ -45,4 +45,5 @@ Use double.IsNaN() instead. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2688/javascript/rule.adoc b/rules/S2688/javascript/rule.adoc index e7e25c2402..0561487448 100644 --- a/rules/S2688/javascript/rule.adoc +++ b/rules/S2688/javascript/rule.adoc @@ -46,4 +46,5 @@ Use a test of the format "a [!==|!=|==|===] a" instead. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2696/java/rule.adoc b/rules/S2696/java/rule.adoc index 425671ae29..98f39bd7ba 100644 --- a/rules/S2696/java/rule.adoc +++ b/rules/S2696/java/rule.adoc @@ -45,4 +45,5 @@ Make the enclosing method "static" or remove this set. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2699/apex/rule.adoc b/rules/S2699/apex/rule.adoc index 95ed46b918..cccd7c86b9 100644 --- a/rules/S2699/apex/rule.adoc +++ b/rules/S2699/apex/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2699/java/rule.adoc b/rules/S2699/java/rule.adoc index 8b3376575d..3008b107a1 100644 --- a/rules/S2699/java/rule.adoc +++ b/rules/S2699/java/rule.adoc @@ -83,4 +83,5 @@ Comma-separated list of fully qualified method symbols that should be considered (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2699/javascript/rule.adoc b/rules/S2699/javascript/rule.adoc index e4f88b3931..2a465dd88e 100644 --- a/rules/S2699/javascript/rule.adoc +++ b/rules/S2699/javascript/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2699/php/rule.adoc b/rules/S2699/php/rule.adoc index b8a3637c5d..71d9c57b51 100644 --- a/rules/S2699/php/rule.adoc +++ b/rules/S2699/php/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2701/csharp/rule.adoc b/rules/S2701/csharp/rule.adoc index 5e3043168b..4ab79e6f0a 100644 --- a/rules/S2701/csharp/rule.adoc +++ b/rules/S2701/csharp/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2701/java/rule.adoc b/rules/S2701/java/rule.adoc index 922b94641c..6e73b14c1f 100644 --- a/rules/S2701/java/rule.adoc +++ b/rules/S2701/java/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2701/javascript/rule.adoc b/rules/S2701/javascript/rule.adoc index 0a9028d258..8a9cc1e63e 100644 --- a/rules/S2701/javascript/rule.adoc +++ b/rules/S2701/javascript/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2701/php/rule.adoc b/rules/S2701/php/rule.adoc index 4b00e7db70..5ae812db7d 100644 --- a/rules/S2701/php/rule.adoc +++ b/rules/S2701/php/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2737/cfamily/rule.adoc b/rules/S2737/cfamily/rule.adoc index c14845f57c..0bcfc21731 100644 --- a/rules/S2737/cfamily/rule.adoc +++ b/rules/S2737/cfamily/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2737/csharp/rule.adoc b/rules/S2737/csharp/rule.adoc index 90acfe0193..f650657692 100644 --- a/rules/S2737/csharp/rule.adoc +++ b/rules/S2737/csharp/rule.adoc @@ -41,4 +41,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2737/java/rule.adoc b/rules/S2737/java/rule.adoc index 1f8198a2d6..8fa4a41418 100644 --- a/rules/S2737/java/rule.adoc +++ b/rules/S2737/java/rule.adoc @@ -71,4 +71,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2737/javascript/rule.adoc b/rules/S2737/javascript/rule.adoc index c162f719f9..d605db1a5a 100644 --- a/rules/S2737/javascript/rule.adoc +++ b/rules/S2737/javascript/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2737/php/rule.adoc b/rules/S2737/php/rule.adoc index 0725c3dd9c..ff70b3c2c4 100644 --- a/rules/S2737/php/rule.adoc +++ b/rules/S2737/php/rule.adoc @@ -58,4 +58,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2737/plsql/rule.adoc b/rules/S2737/plsql/rule.adoc index 1d343a2047..2ea55157d4 100644 --- a/rules/S2737/plsql/rule.adoc +++ b/rules/S2737/plsql/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2737/python/rule.adoc b/rules/S2737/python/rule.adoc index 30755f8b56..55ed523260 100644 --- a/rules/S2737/python/rule.adoc +++ b/rules/S2737/python/rule.adoc @@ -41,4 +41,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2737/swift/rule.adoc b/rules/S2737/swift/rule.adoc index 489f4bf958..bee4d1222a 100644 --- a/rules/S2737/swift/rule.adoc +++ b/rules/S2737/swift/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2737/tsql/rule.adoc b/rules/S2737/tsql/rule.adoc index 6145b429cf..e353ffc71d 100644 --- a/rules/S2737/tsql/rule.adoc +++ b/rules/S2737/tsql/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2737/vbnet/rule.adoc b/rules/S2737/vbnet/rule.adoc index a236aedff7..f6910e9577 100644 --- a/rules/S2737/vbnet/rule.adoc +++ b/rules/S2737/vbnet/rule.adoc @@ -67,4 +67,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2738/cfamily/rule.adoc b/rules/S2738/cfamily/rule.adoc index 3df22ccf27..7a37201763 100644 --- a/rules/S2738/cfamily/rule.adoc +++ b/rules/S2738/cfamily/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2738/csharp/rule.adoc b/rules/S2738/csharp/rule.adoc index a050fab391..884fe0351d 100644 --- a/rules/S2738/csharp/rule.adoc +++ b/rules/S2738/csharp/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2738/python/rule.adoc b/rules/S2738/python/rule.adoc index 0d14966071..9f6e0a449a 100644 --- a/rules/S2738/python/rule.adoc +++ b/rules/S2738/python/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/abap/rule.adoc b/rules/S2751/abap/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/abap/rule.adoc +++ b/rules/S2751/abap/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/cfamily/rule.adoc b/rules/S2751/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/cfamily/rule.adoc +++ b/rules/S2751/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/cobol/rule.adoc b/rules/S2751/cobol/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/cobol/rule.adoc +++ b/rules/S2751/cobol/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/csharp/rule.adoc b/rules/S2751/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/csharp/rule.adoc +++ b/rules/S2751/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/flex/rule.adoc b/rules/S2751/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/flex/rule.adoc +++ b/rules/S2751/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/java/rule.adoc b/rules/S2751/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/java/rule.adoc +++ b/rules/S2751/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/javascript/rule.adoc b/rules/S2751/javascript/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/javascript/rule.adoc +++ b/rules/S2751/javascript/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/php/rule.adoc b/rules/S2751/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/php/rule.adoc +++ b/rules/S2751/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/python/rule.adoc b/rules/S2751/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/python/rule.adoc +++ b/rules/S2751/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/rpg/rule.adoc b/rules/S2751/rpg/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/rpg/rule.adoc +++ b/rules/S2751/rpg/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/swift/rule.adoc b/rules/S2751/swift/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/swift/rule.adoc +++ b/rules/S2751/swift/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/vb6/rule.adoc b/rules/S2751/vb6/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/vb6/rule.adoc +++ b/rules/S2751/vb6/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2751/vbnet/rule.adoc b/rules/S2751/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S2751/vbnet/rule.adoc +++ b/rules/S2751/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2755/cfamily/rule.adoc b/rules/S2755/cfamily/rule.adoc index a41ce57ca1..733c202982 100644 --- a/rules/S2755/cfamily/rule.adoc +++ b/rules/S2755/cfamily/rule.adoc @@ -116,4 +116,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2755/java/rule.adoc b/rules/S2755/java/rule.adoc index 8758664a1d..1226766f92 100644 --- a/rules/S2755/java/rule.adoc +++ b/rules/S2755/java/rule.adoc @@ -127,4 +127,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2755/javascript/rule.adoc b/rules/S2755/javascript/rule.adoc index 4cc6c173d2..7a5f26e6cf 100644 --- a/rules/S2755/javascript/rule.adoc +++ b/rules/S2755/javascript/rule.adoc @@ -47,4 +47,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2755/python/rule.adoc b/rules/S2755/python/rule.adoc index b1460beb37..10a3336ddd 100644 --- a/rules/S2755/python/rule.adoc +++ b/rules/S2755/python/rule.adoc @@ -119,4 +119,5 @@ message: 'This function loads the XML code and triggers the vulnerability.' (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2757/apex/rule.adoc b/rules/S2757/apex/rule.adoc index 10607f9327..03cb16ee3a 100644 --- a/rules/S2757/apex/rule.adoc +++ b/rules/S2757/apex/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2757/cfamily/rule.adoc b/rules/S2757/cfamily/rule.adoc index b96609a67d..0cc9e46b33 100644 --- a/rules/S2757/cfamily/rule.adoc +++ b/rules/S2757/cfamily/rule.adoc @@ -26,4 +26,5 @@ the two operators, ex: "=+" (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2757/csharp/rule.adoc b/rules/S2757/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2757/csharp/rule.adoc +++ b/rules/S2757/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2757/go/rule.adoc b/rules/S2757/go/rule.adoc index d6ad11449b..9e8eb303f5 100644 --- a/rules/S2757/go/rule.adoc +++ b/rules/S2757/go/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2757/java/rule.adoc b/rules/S2757/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2757/java/rule.adoc +++ b/rules/S2757/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2757/javascript/rule.adoc b/rules/S2757/javascript/rule.adoc index 9ff67d229e..4b63bc17d6 100644 --- a/rules/S2757/javascript/rule.adoc +++ b/rules/S2757/javascript/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2757/kotlin/rule.adoc b/rules/S2757/kotlin/rule.adoc index 1ddb3e8df0..3f2857a8ab 100644 --- a/rules/S2757/kotlin/rule.adoc +++ b/rules/S2757/kotlin/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2757/php/rule.adoc b/rules/S2757/php/rule.adoc index b41cb4cd3b..978e2289c4 100644 --- a/rules/S2757/php/rule.adoc +++ b/rules/S2757/php/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2757/python/rule.adoc b/rules/S2757/python/rule.adoc index 04550908b4..b0cc91c73d 100644 --- a/rules/S2757/python/rule.adoc +++ b/rules/S2757/python/rule.adoc @@ -46,4 +46,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2757/ruby/rule.adoc b/rules/S2757/ruby/rule.adoc index 212628f1de..b772d8c158 100644 --- a/rules/S2757/ruby/rule.adoc +++ b/rules/S2757/ruby/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2757/vbnet/rule.adoc b/rules/S2757/vbnet/rule.adoc index 03a22872f5..35083d7cd3 100644 --- a/rules/S2757/vbnet/rule.adoc +++ b/rules/S2757/vbnet/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2758/csharp/rule.adoc b/rules/S2758/csharp/rule.adoc index 07de6ec2f3..4ce93d08cd 100644 --- a/rules/S2758/csharp/rule.adoc +++ b/rules/S2758/csharp/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2758/swift/rule.adoc b/rules/S2758/swift/rule.adoc index be53e328cc..9c96dea4ed 100644 --- a/rules/S2758/swift/rule.adoc +++ b/rules/S2758/swift/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2760/swift/rule.adoc b/rules/S2760/swift/rule.adoc index 929d743b78..e6d6f27664 100644 --- a/rules/S2760/swift/rule.adoc +++ b/rules/S2760/swift/rule.adoc @@ -50,4 +50,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2761/csharp/rule.adoc b/rules/S2761/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2761/csharp/rule.adoc +++ b/rules/S2761/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2761/go/rule.adoc b/rules/S2761/go/rule.adoc index 89e8462011..d31d0d586d 100644 --- a/rules/S2761/go/rule.adoc +++ b/rules/S2761/go/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2761/java/rule.adoc b/rules/S2761/java/rule.adoc index fd36fc7f66..5b01ca44e0 100644 --- a/rules/S2761/java/rule.adoc +++ b/rules/S2761/java/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2761/php/rule.adoc b/rules/S2761/php/rule.adoc index 8df8f52780..c2a246d2bc 100644 --- a/rules/S2761/php/rule.adoc +++ b/rules/S2761/php/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2761/python/rule.adoc b/rules/S2761/python/rule.adoc index a01f8530e3..a953769cfe 100644 --- a/rules/S2761/python/rule.adoc +++ b/rules/S2761/python/rule.adoc @@ -38,4 +38,5 @@ Use the "bool()" builtin function instead of calling "not" twice. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2761/tsql/rule.adoc b/rules/S2761/tsql/rule.adoc index b6431177be..78a41d317a 100644 --- a/rules/S2761/tsql/rule.adoc +++ b/rules/S2761/tsql/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2761/vbnet/rule.adoc b/rules/S2761/vbnet/rule.adoc index 56b03ff586..fbd4bf6857 100644 --- a/rules/S2761/vbnet/rule.adoc +++ b/rules/S2761/vbnet/rule.adoc @@ -22,4 +22,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2773/abap/rule.adoc b/rules/S2773/abap/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2773/abap/rule.adoc +++ b/rules/S2773/abap/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2773/cfamily/rule.adoc b/rules/S2773/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2773/cfamily/rule.adoc +++ b/rules/S2773/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2773/cobol/rule.adoc b/rules/S2773/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2773/cobol/rule.adoc +++ b/rules/S2773/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2773/csharp/rule.adoc b/rules/S2773/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2773/csharp/rule.adoc +++ b/rules/S2773/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2773/java/rule.adoc b/rules/S2773/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2773/java/rule.adoc +++ b/rules/S2773/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2773/php/rule.adoc b/rules/S2773/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2773/php/rule.adoc +++ b/rules/S2773/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2773/python/rule.adoc b/rules/S2773/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2773/python/rule.adoc +++ b/rules/S2773/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2773/swift/rule.adoc b/rules/S2773/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2773/swift/rule.adoc +++ b/rules/S2773/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2773/vbnet/rule.adoc b/rules/S2773/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2773/vbnet/rule.adoc +++ b/rules/S2773/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2774/abap/rule.adoc b/rules/S2774/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/abap/rule.adoc +++ b/rules/S2774/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/cfamily/rule.adoc b/rules/S2774/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/cfamily/rule.adoc +++ b/rules/S2774/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/cobol/rule.adoc b/rules/S2774/cobol/rule.adoc index ce4ea51de4..845f8b6361 100644 --- a/rules/S2774/cobol/rule.adoc +++ b/rules/S2774/cobol/rule.adoc @@ -10,6 +10,7 @@ include::../description.adoc[] ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/csharp/rule.adoc b/rules/S2774/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/csharp/rule.adoc +++ b/rules/S2774/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/flex/rule.adoc b/rules/S2774/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/flex/rule.adoc +++ b/rules/S2774/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/html/rule.adoc b/rules/S2774/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/html/rule.adoc +++ b/rules/S2774/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/java/rule.adoc b/rules/S2774/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/java/rule.adoc +++ b/rules/S2774/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/javascript/rule.adoc b/rules/S2774/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/javascript/rule.adoc +++ b/rules/S2774/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/php/rule.adoc b/rules/S2774/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/php/rule.adoc +++ b/rules/S2774/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/python/rule.adoc b/rules/S2774/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/python/rule.adoc +++ b/rules/S2774/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/rpg/rule.adoc b/rules/S2774/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/rpg/rule.adoc +++ b/rules/S2774/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/swift/rule.adoc b/rules/S2774/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/swift/rule.adoc +++ b/rules/S2774/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/vb6/rule.adoc b/rules/S2774/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/vb6/rule.adoc +++ b/rules/S2774/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/vbnet/rule.adoc b/rules/S2774/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/vbnet/rule.adoc +++ b/rules/S2774/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2774/xml/rule.adoc b/rules/S2774/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2774/xml/rule.adoc +++ b/rules/S2774/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2776/abap/rule.adoc b/rules/S2776/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2776/abap/rule.adoc +++ b/rules/S2776/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2776/cfamily/rule.adoc b/rules/S2776/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2776/cfamily/rule.adoc +++ b/rules/S2776/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2776/cobol/rule.adoc b/rules/S2776/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2776/cobol/rule.adoc +++ b/rules/S2776/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2776/java/rule.adoc b/rules/S2776/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2776/java/rule.adoc +++ b/rules/S2776/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2814/javascript/rule.adoc b/rules/S2814/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2814/javascript/rule.adoc +++ b/rules/S2814/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2830/php/rule.adoc b/rules/S2830/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2830/php/rule.adoc +++ b/rules/S2830/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2887/java/rule.adoc b/rules/S2887/java/rule.adoc index e16783358b..7c017624b5 100644 --- a/rules/S2887/java/rule.adoc +++ b/rules/S2887/java/rule.adoc @@ -17,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2925/csharp/rule.adoc b/rules/S2925/csharp/rule.adoc index 6bcf30e0af..4f79a15b0f 100644 --- a/rules/S2925/csharp/rule.adoc +++ b/rules/S2925/csharp/rule.adoc @@ -71,4 +71,5 @@ public void UserService_Test() ---- include::../resources-dotnet.adoc[] + include::../rspecator-dotnet.adoc[] \ No newline at end of file diff --git a/rules/S2925/vbnet/rule.adoc b/rules/S2925/vbnet/rule.adoc index 3db0175a56..59a13c826f 100644 --- a/rules/S2925/vbnet/rule.adoc +++ b/rules/S2925/vbnet/rule.adoc @@ -59,4 +59,5 @@ End Sub ---- include::../resources-dotnet.adoc[] + include::../rspecator-dotnet.adoc[] \ No newline at end of file diff --git a/rules/S2931/csharp/rule.adoc b/rules/S2931/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2931/csharp/rule.adoc +++ b/rules/S2931/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2933/csharp/rule.adoc b/rules/S2933/csharp/rule.adoc index 080a1e8d64..0aeabcfcfa 100644 --- a/rules/S2933/csharp/rule.adoc +++ b/rules/S2933/csharp/rule.adoc @@ -55,4 +55,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2933/javascript/rule.adoc b/rules/S2933/javascript/rule.adoc index ed710c919f..979fd92f85 100644 --- a/rules/S2933/javascript/rule.adoc +++ b/rules/S2933/javascript/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2959/swift/rule.adoc b/rules/S2959/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S2959/swift/rule.adoc +++ b/rules/S2959/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S2963/swift/rule.adoc b/rules/S2963/swift/rule.adoc index 2f8385695b..96011bc5d1 100644 --- a/rules/S2963/swift/rule.adoc +++ b/rules/S2963/swift/rule.adoc @@ -52,4 +52,5 @@ Remove the "self" keyword. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2966/javascript/rule.adoc b/rules/S2966/javascript/rule.adoc index 9617bb0122..71dbb6e8bb 100644 --- a/rules/S2966/javascript/rule.adoc +++ b/rules/S2966/javascript/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2966/swift/rule.adoc b/rules/S2966/swift/rule.adoc index bd83912bcf..6ecd9f1f3c 100644 --- a/rules/S2966/swift/rule.adoc +++ b/rules/S2966/swift/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2970/java/rule.adoc b/rules/S2970/java/rule.adoc index cf81e2f933..cfbda4194c 100644 --- a/rules/S2970/java/rule.adoc +++ b/rules/S2970/java/rule.adoc @@ -81,4 +81,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2970/javascript/rule.adoc b/rules/S2970/javascript/rule.adoc index 38eff65fcf..872c66ac13 100644 --- a/rules/S2970/javascript/rule.adoc +++ b/rules/S2970/javascript/rule.adoc @@ -78,4 +78,5 @@ message: 'Call this assertion function.' (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S2997/csharp/rule.adoc b/rules/S2997/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S2997/csharp/rule.adoc +++ b/rules/S2997/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3010/csharp/rule.adoc b/rules/S3010/csharp/rule.adoc index 3fae40061a..a13460d3fe 100644 --- a/rules/S3010/csharp/rule.adoc +++ b/rules/S3010/csharp/rule.adoc @@ -50,4 +50,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3010/java/rule.adoc b/rules/S3010/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3010/java/rule.adoc +++ b/rules/S3010/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3011/java/rule.adoc b/rules/S3011/java/rule.adoc index 99cc36010e..04bd420a4e 100644 --- a/rules/S3011/java/rule.adoc +++ b/rules/S3011/java/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3011/php/rule.adoc b/rules/S3011/php/rule.adoc index bf8248755f..c7efbe466a 100644 --- a/rules/S3011/php/rule.adoc +++ b/rules/S3011/php/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3011/vbnet/rule.adoc b/rules/S3011/vbnet/rule.adoc index b0e56d69c0..65f3899c85 100644 --- a/rules/S3011/vbnet/rule.adoc +++ b/rules/S3011/vbnet/rule.adoc @@ -29,4 +29,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3038/java/rule.adoc b/rules/S3038/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3038/java/rule.adoc +++ b/rules/S3038/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3045/cfamily/rule.adoc b/rules/S3045/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3045/cfamily/rule.adoc +++ b/rules/S3045/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3045/csharp/rule.adoc b/rules/S3045/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3045/csharp/rule.adoc +++ b/rules/S3045/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3045/flex/rule.adoc b/rules/S3045/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3045/flex/rule.adoc +++ b/rules/S3045/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3045/java/rule.adoc b/rules/S3045/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3045/java/rule.adoc +++ b/rules/S3045/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3045/javascript/rule.adoc b/rules/S3045/javascript/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3045/javascript/rule.adoc +++ b/rules/S3045/javascript/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3045/php/rule.adoc b/rules/S3045/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3045/php/rule.adoc +++ b/rules/S3045/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3045/python/rule.adoc b/rules/S3045/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3045/python/rule.adoc +++ b/rules/S3045/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3045/swift/rule.adoc b/rules/S3045/swift/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3045/swift/rule.adoc +++ b/rules/S3045/swift/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3045/vbnet/rule.adoc b/rules/S3045/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3045/vbnet/rule.adoc +++ b/rules/S3045/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3046/java/rule.adoc b/rules/S3046/java/rule.adoc index 6ffc3fc93c..2ff414c439 100644 --- a/rules/S3046/java/rule.adoc +++ b/rules/S3046/java/rule.adoc @@ -31,4 +31,5 @@ Don't use "wait()" here; multiple locks are held. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3047/java/rule.adoc b/rules/S3047/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3047/java/rule.adoc +++ b/rules/S3047/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3052/csharp/rule.adoc b/rules/S3052/csharp/rule.adoc index a2ecc0aa7c..3a98a6c594 100644 --- a/rules/S3052/csharp/rule.adoc +++ b/rules/S3052/csharp/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3052/java/rule.adoc b/rules/S3052/java/rule.adoc index b6d7a582d9..1e000c2202 100644 --- a/rules/S3052/java/rule.adoc +++ b/rules/S3052/java/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3055/java/rule.adoc b/rules/S3055/java/rule.adoc index 061a57d4e9..e3dca988f0 100644 --- a/rules/S3055/java/rule.adoc +++ b/rules/S3055/java/rule.adoc @@ -41,4 +41,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3059/csharp/rule.adoc b/rules/S3059/csharp/rule.adoc index c9ab310ba2..2a3a5ce448 100644 --- a/rules/S3059/csharp/rule.adoc +++ b/rules/S3059/csharp/rule.adoc @@ -98,4 +98,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3059/java/rule.adoc b/rules/S3059/java/rule.adoc index 570c70745b..2bbb39c351 100644 --- a/rules/S3059/java/rule.adoc +++ b/rules/S3059/java/rule.adoc @@ -63,4 +63,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3060/csharp/rule.adoc b/rules/S3060/csharp/rule.adoc index 5140c2038c..444d58cf9a 100644 --- a/rules/S3060/csharp/rule.adoc +++ b/rules/S3060/csharp/rule.adoc @@ -105,4 +105,5 @@ Offload the code that's conditional on this "is" test to the appropriate subclas (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3060/java/rule.adoc b/rules/S3060/java/rule.adoc index 8a2a770ed1..297aa6c930 100644 --- a/rules/S3060/java/rule.adoc +++ b/rules/S3060/java/rule.adoc @@ -33,4 +33,5 @@ Offload the code that's conditional on this "instanceof" test to the appropriate (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3065/java/rule.adoc b/rules/S3065/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3065/java/rule.adoc +++ b/rules/S3065/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3072/csharp/rule.adoc b/rules/S3072/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3072/csharp/rule.adoc +++ b/rules/S3072/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3072/java/rule.adoc b/rules/S3072/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3072/java/rule.adoc +++ b/rules/S3072/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3087/swift/rule.adoc b/rules/S3087/swift/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S3087/swift/rule.adoc +++ b/rules/S3087/swift/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3215/csharp/rule.adoc b/rules/S3215/csharp/rule.adoc index 986eeae55b..a6df78d51e 100644 --- a/rules/S3215/csharp/rule.adoc +++ b/rules/S3215/csharp/rule.adoc @@ -66,4 +66,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3215/java/rule.adoc b/rules/S3215/java/rule.adoc index 0f1388f22c..eabd2b05df 100644 --- a/rules/S3215/java/rule.adoc +++ b/rules/S3215/java/rule.adoc @@ -51,4 +51,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3221/cfamily/rule.adoc b/rules/S3221/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3221/cfamily/rule.adoc +++ b/rules/S3221/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3221/csharp/rule.adoc b/rules/S3221/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3221/csharp/rule.adoc +++ b/rules/S3221/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3221/flex/rule.adoc b/rules/S3221/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3221/flex/rule.adoc +++ b/rules/S3221/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3221/java/rule.adoc b/rules/S3221/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3221/java/rule.adoc +++ b/rules/S3221/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3221/swift/rule.adoc b/rules/S3221/swift/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3221/swift/rule.adoc +++ b/rules/S3221/swift/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3222/cfamily/rule.adoc b/rules/S3222/cfamily/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S3222/cfamily/rule.adoc +++ b/rules/S3222/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3235/csharp/rule.adoc b/rules/S3235/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3235/csharp/rule.adoc +++ b/rules/S3235/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3236/csharp/rule.adoc b/rules/S3236/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3236/csharp/rule.adoc +++ b/rules/S3236/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3241/csharp/rule.adoc b/rules/S3241/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3241/csharp/rule.adoc +++ b/rules/S3241/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3242/csharp/rule.adoc b/rules/S3242/csharp/rule.adoc index 28eb8513db..7c439abc00 100644 --- a/rules/S3242/csharp/rule.adoc +++ b/rules/S3242/csharp/rule.adoc @@ -64,4 +64,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3242/java/rule.adoc b/rules/S3242/java/rule.adoc index 98888c12f1..d041ef33eb 100644 --- a/rules/S3242/java/rule.adoc +++ b/rules/S3242/java/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3244/csharp/rule.adoc b/rules/S3244/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3244/csharp/rule.adoc +++ b/rules/S3244/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3249/csharp/rule.adoc b/rules/S3249/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3249/csharp/rule.adoc +++ b/rules/S3249/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3252/java/rule.adoc b/rules/S3252/java/rule.adoc index 8be0fa4017..abd46a4ca1 100644 --- a/rules/S3252/java/rule.adoc +++ b/rules/S3252/java/rule.adoc @@ -49,4 +49,5 @@ Use static access for "X.y". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3254/csharp/rule.adoc b/rules/S3254/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3254/csharp/rule.adoc +++ b/rules/S3254/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3254/java/rule.adoc b/rules/S3254/java/rule.adoc index f79ee3a25d..9ebc89b2ac 100644 --- a/rules/S3254/java/rule.adoc +++ b/rules/S3254/java/rule.adoc @@ -43,4 +43,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3255/cfamily/rule.adoc b/rules/S3255/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3255/cfamily/rule.adoc +++ b/rules/S3255/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3255/csharp/rule.adoc b/rules/S3255/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3255/csharp/rule.adoc +++ b/rules/S3255/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3255/flex/rule.adoc b/rules/S3255/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3255/flex/rule.adoc +++ b/rules/S3255/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3255/java/rule.adoc b/rules/S3255/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3255/java/rule.adoc +++ b/rules/S3255/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3255/php/rule.adoc b/rules/S3255/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3255/php/rule.adoc +++ b/rules/S3255/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3255/python/rule.adoc b/rules/S3255/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3255/python/rule.adoc +++ b/rules/S3255/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3255/swift/rule.adoc b/rules/S3255/swift/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3255/swift/rule.adoc +++ b/rules/S3255/swift/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3257/csharp/rule.adoc b/rules/S3257/csharp/rule.adoc index 7352943c96..45254d5a3a 100644 --- a/rules/S3257/csharp/rule.adoc +++ b/rules/S3257/csharp/rule.adoc @@ -83,4 +83,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3257/javascript/rule.adoc b/rules/S3257/javascript/rule.adoc index d2915adbb8..b7d34bd0d9 100644 --- a/rules/S3257/javascript/rule.adoc +++ b/rules/S3257/javascript/rule.adoc @@ -43,4 +43,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3261/cfamily/rule.adoc b/rules/S3261/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3261/cfamily/rule.adoc +++ b/rules/S3261/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3261/csharp/rule.adoc b/rules/S3261/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3261/csharp/rule.adoc +++ b/rules/S3261/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3263/csharp/rule.adoc b/rules/S3263/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3263/csharp/rule.adoc +++ b/rules/S3263/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3268/html/rule.adoc b/rules/S3268/html/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3268/html/rule.adoc +++ b/rules/S3268/html/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3268/php/rule.adoc b/rules/S3268/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3268/php/rule.adoc +++ b/rules/S3268/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3268/python/rule.adoc b/rules/S3268/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3268/python/rule.adoc +++ b/rules/S3268/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3272/cfamily/rule.adoc b/rules/S3272/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3272/cfamily/rule.adoc +++ b/rules/S3272/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3272/csharp/rule.adoc b/rules/S3272/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3272/csharp/rule.adoc +++ b/rules/S3272/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3272/java/rule.adoc b/rules/S3272/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3272/java/rule.adoc +++ b/rules/S3272/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3272/javascript/rule.adoc b/rules/S3272/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3272/javascript/rule.adoc +++ b/rules/S3272/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3272/php/rule.adoc b/rules/S3272/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3272/php/rule.adoc +++ b/rules/S3272/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3272/python/rule.adoc b/rules/S3272/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3272/python/rule.adoc +++ b/rules/S3272/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3272/swift/rule.adoc b/rules/S3272/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3272/swift/rule.adoc +++ b/rules/S3272/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3272/vbnet/rule.adoc b/rules/S3272/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3272/vbnet/rule.adoc +++ b/rules/S3272/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3275/cfamily/rule.adoc b/rules/S3275/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3275/cfamily/rule.adoc +++ b/rules/S3275/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3275/csharp/rule.adoc b/rules/S3275/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3275/csharp/rule.adoc +++ b/rules/S3275/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3275/java/rule.adoc b/rules/S3275/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3275/java/rule.adoc +++ b/rules/S3275/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3275/php/rule.adoc b/rules/S3275/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3275/php/rule.adoc +++ b/rules/S3275/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3275/python/rule.adoc b/rules/S3275/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3275/python/rule.adoc +++ b/rules/S3275/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3275/swift/rule.adoc b/rules/S3275/swift/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3275/swift/rule.adoc +++ b/rules/S3275/swift/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3275/vbnet/rule.adoc b/rules/S3275/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3275/vbnet/rule.adoc +++ b/rules/S3275/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3317/javascript/rule.adoc b/rules/S3317/javascript/rule.adoc index 45f0ee6d5d..b21ca894ab 100644 --- a/rules/S3317/javascript/rule.adoc +++ b/rules/S3317/javascript/rule.adoc @@ -41,4 +41,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3318/cfamily/rule.adoc b/rules/S3318/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3318/cfamily/rule.adoc +++ b/rules/S3318/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3318/csharp/rule.adoc b/rules/S3318/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3318/csharp/rule.adoc +++ b/rules/S3318/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3318/java/rule.adoc b/rules/S3318/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3318/java/rule.adoc +++ b/rules/S3318/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3318/php/rule.adoc b/rules/S3318/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3318/php/rule.adoc +++ b/rules/S3318/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3318/python/rule.adoc b/rules/S3318/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3318/python/rule.adoc +++ b/rules/S3318/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3318/swift/rule.adoc b/rules/S3318/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3318/swift/rule.adoc +++ b/rules/S3318/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3318/vbnet/rule.adoc b/rules/S3318/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3318/vbnet/rule.adoc +++ b/rules/S3318/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3329/apex/rule.adoc b/rules/S3329/apex/rule.adoc index 0d90e7c5da..76d8bb5724 100644 --- a/rules/S3329/apex/rule.adoc +++ b/rules/S3329/apex/rule.adoc @@ -51,4 +51,5 @@ the initialization vector parameter (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3329/cfamily/rule.adoc b/rules/S3329/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3329/cfamily/rule.adoc +++ b/rules/S3329/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3329/csharp/rule.adoc b/rules/S3329/csharp/rule.adoc index fb319d60ae..542e2e15bb 100644 --- a/rules/S3329/csharp/rule.adoc +++ b/rules/S3329/csharp/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3329/java/rule.adoc b/rules/S3329/java/rule.adoc index 70ef570891..7a1528e908 100644 --- a/rules/S3329/java/rule.adoc +++ b/rules/S3329/java/rule.adoc @@ -36,6 +36,7 @@ public void encrypt(String key, String plainText) throws GeneralSecurityExceptio include::../see.adoc[] + * Derived from FindSecBugs rule https://find-sec-bugs.github.io/bugs.htm#STATIC_IV[STATIC_IV] @@ -53,4 +54,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3329/kotlin/rule.adoc b/rules/S3329/kotlin/rule.adoc index 931e0253d6..d6917685b1 100644 --- a/rules/S3329/kotlin/rule.adoc +++ b/rules/S3329/kotlin/rule.adoc @@ -50,4 +50,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3329/php/rule.adoc b/rules/S3329/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3329/php/rule.adoc +++ b/rules/S3329/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3329/python/rule.adoc b/rules/S3329/python/rule.adoc index 57ae3d4bef..e439fdb941 100644 --- a/rules/S3329/python/rule.adoc +++ b/rules/S3329/python/rule.adoc @@ -71,4 +71,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3329/swift/rule.adoc b/rules/S3329/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3329/swift/rule.adoc +++ b/rules/S3329/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3329/vbnet/rule.adoc b/rules/S3329/vbnet/rule.adoc index ec99782bb9..f9e592da4b 100644 --- a/rules/S3329/vbnet/rule.adoc +++ b/rules/S3329/vbnet/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3330/cfamily/rule.adoc b/rules/S3330/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3330/cfamily/rule.adoc +++ b/rules/S3330/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3330/csharp/rule.adoc b/rules/S3330/csharp/rule.adoc index 830df83e1e..e7e0f89892 100644 --- a/rules/S3330/csharp/rule.adoc +++ b/rules/S3330/csharp/rule.adoc @@ -56,4 +56,5 @@ Add the "HttpOnly" cookie attribute. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3330/javascript/rule.adoc b/rules/S3330/javascript/rule.adoc index 7e28a31de1..e86cda857f 100644 --- a/rules/S3330/javascript/rule.adoc +++ b/rules/S3330/javascript/rule.adoc @@ -113,4 +113,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3330/kotlin/rule.adoc b/rules/S3330/kotlin/rule.adoc index 4625318620..610301fb06 100644 --- a/rules/S3330/kotlin/rule.adoc +++ b/rules/S3330/kotlin/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3330/php/rule.adoc b/rules/S3330/php/rule.adoc index b3a4467938..3a71e841a5 100644 --- a/rules/S3330/php/rule.adoc +++ b/rules/S3330/php/rule.adoc @@ -72,4 +72,5 @@ php files: Set the last argument of "setcookie()" function to "true". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3330/swift/rule.adoc b/rules/S3330/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3330/swift/rule.adoc +++ b/rules/S3330/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3330/vbnet/rule.adoc b/rules/S3330/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S3330/vbnet/rule.adoc +++ b/rules/S3330/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3330/xml/rule.adoc b/rules/S3330/xml/rule.adoc index 8976d8ca97..d1bdd237cf 100644 --- a/rules/S3330/xml/rule.adoc +++ b/rules/S3330/xml/rule.adoc @@ -45,4 +45,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3331/java/rule.adoc b/rules/S3331/java/rule.adoc index 33382ef50f..dec55f2f3d 100644 --- a/rules/S3331/java/rule.adoc +++ b/rules/S3331/java/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3331/php/rule.adoc b/rules/S3331/php/rule.adoc index 1d6b03a1cb..7926c30f0a 100644 --- a/rules/S3331/php/rule.adoc +++ b/rules/S3331/php/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3346/java/rule.adoc b/rules/S3346/java/rule.adoc index a0edfff39e..cfdc1f41a3 100644 --- a/rules/S3346/java/rule.adoc +++ b/rules/S3346/java/rule.adoc @@ -28,4 +28,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3358/cfamily/rule.adoc b/rules/S3358/cfamily/rule.adoc index 728a1464aa..7693d22839 100644 --- a/rules/S3358/cfamily/rule.adoc +++ b/rules/S3358/cfamily/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3358/csharp/rule.adoc b/rules/S3358/csharp/rule.adoc index a927c74aab..2775aafbd3 100644 --- a/rules/S3358/csharp/rule.adoc +++ b/rules/S3358/csharp/rule.adoc @@ -21,4 +21,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3358/java/rule.adoc b/rules/S3358/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3358/java/rule.adoc +++ b/rules/S3358/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3358/javascript/rule.adoc b/rules/S3358/javascript/rule.adoc index 36f73a6a1c..f607874a1e 100644 --- a/rules/S3358/javascript/rule.adoc +++ b/rules/S3358/javascript/rule.adoc @@ -22,6 +22,7 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] === Exceptions diff --git a/rules/S3358/php/rule.adoc b/rules/S3358/php/rule.adoc index 4db979cf43..793e41171c 100644 --- a/rules/S3358/php/rule.adoc +++ b/rules/S3358/php/rule.adoc @@ -31,4 +31,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3358/python/rule.adoc b/rules/S3358/python/rule.adoc index 7f579a4508..63700721f6 100644 --- a/rules/S3358/python/rule.adoc +++ b/rules/S3358/python/rule.adoc @@ -54,4 +54,5 @@ message: 'Parent conditional expression.' (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3358/swift/rule.adoc b/rules/S3358/swift/rule.adoc index 18f7c3a27c..0bf228c7b4 100644 --- a/rules/S3358/swift/rule.adoc +++ b/rules/S3358/swift/rule.adoc @@ -24,4 +24,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3358/tsql/rule.adoc b/rules/S3358/tsql/rule.adoc index 69c365794c..f7b16e6363 100644 --- a/rules/S3358/tsql/rule.adoc +++ b/rules/S3358/tsql/rule.adoc @@ -22,4 +22,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3358/vbnet/rule.adoc b/rules/S3358/vbnet/rule.adoc index 6155f38cd1..de57f72cf1 100644 --- a/rules/S3358/vbnet/rule.adoc +++ b/rules/S3358/vbnet/rule.adoc @@ -22,4 +22,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3360/java/rule.adoc b/rules/S3360/java/rule.adoc index 92906c76d1..725561e70b 100644 --- a/rules/S3360/java/rule.adoc +++ b/rules/S3360/java/rule.adoc @@ -43,4 +43,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3360/php/rule.adoc b/rules/S3360/php/rule.adoc index 58c026a66e..4cd0b0a07c 100644 --- a/rules/S3360/php/rule.adoc +++ b/rules/S3360/php/rule.adoc @@ -61,4 +61,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3361/csharp/rule.adoc b/rules/S3361/csharp/rule.adoc index 2cd9e77fac..5609a485cf 100644 --- a/rules/S3361/csharp/rule.adoc +++ b/rules/S3361/csharp/rule.adoc @@ -17,4 +17,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3361/java/rule.adoc b/rules/S3361/java/rule.adoc index 2cd9e77fac..5609a485cf 100644 --- a/rules/S3361/java/rule.adoc +++ b/rules/S3361/java/rule.adoc @@ -17,4 +17,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3361/swift/rule.adoc b/rules/S3361/swift/rule.adoc index 2cd9e77fac..5609a485cf 100644 --- a/rules/S3361/swift/rule.adoc +++ b/rules/S3361/swift/rule.adoc @@ -17,4 +17,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3366/csharp/rule.adoc b/rules/S3366/csharp/rule.adoc index b7ff8d69ed..756fb1bc97 100644 --- a/rules/S3366/csharp/rule.adoc +++ b/rules/S3366/csharp/rule.adoc @@ -39,4 +39,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3366/java/rule.adoc b/rules/S3366/java/rule.adoc index fa54b96a41..de6fa67a43 100644 --- a/rules/S3366/java/rule.adoc +++ b/rules/S3366/java/rule.adoc @@ -26,4 +26,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3376/csharp/rule.adoc b/rules/S3376/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3376/csharp/rule.adoc +++ b/rules/S3376/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3397/csharp/rule.adoc b/rules/S3397/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3397/csharp/rule.adoc +++ b/rules/S3397/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3398/java/rule.adoc b/rules/S3398/java/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S3398/java/rule.adoc +++ b/rules/S3398/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3399/cfamily/rule.adoc b/rules/S3399/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3399/cfamily/rule.adoc +++ b/rules/S3399/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3399/csharp/rule.adoc b/rules/S3399/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3399/csharp/rule.adoc +++ b/rules/S3399/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3399/java/rule.adoc b/rules/S3399/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3399/java/rule.adoc +++ b/rules/S3399/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3399/swift/rule.adoc b/rules/S3399/swift/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3399/swift/rule.adoc +++ b/rules/S3399/swift/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3400/cfamily/rule.adoc b/rules/S3400/cfamily/rule.adoc index 410cc747ef..9b2c541c29 100644 --- a/rules/S3400/cfamily/rule.adoc +++ b/rules/S3400/cfamily/rule.adoc @@ -25,4 +25,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3400/csharp/rule.adoc b/rules/S3400/csharp/rule.adoc index e7596a1c63..59151d25ee 100644 --- a/rules/S3400/csharp/rule.adoc +++ b/rules/S3400/csharp/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3400/java/rule.adoc b/rules/S3400/java/rule.adoc index dffb864609..e15a61e6f0 100644 --- a/rules/S3400/java/rule.adoc +++ b/rules/S3400/java/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3400/swift/rule.adoc b/rules/S3400/swift/rule.adoc index 112be87def..f7284f6198 100644 --- a/rules/S3400/swift/rule.adoc +++ b/rules/S3400/swift/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3403/javascript/rule.adoc b/rules/S3403/javascript/rule.adoc index 4525f31da8..49a726f434 100644 --- a/rules/S3403/javascript/rule.adoc +++ b/rules/S3403/javascript/rule.adoc @@ -55,4 +55,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3403/python/rule.adoc b/rules/S3403/python/rule.adoc index e4b9df290c..d785d17ada 100644 --- a/rules/S3403/python/rule.adoc +++ b/rules/S3403/python/rule.adoc @@ -30,4 +30,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3414/java/rule.adoc b/rules/S3414/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3414/java/rule.adoc +++ b/rules/S3414/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3415/csharp/rule.adoc b/rules/S3415/csharp/rule.adoc index c3c8452bf0..ff6b5916f6 100644 --- a/rules/S3415/csharp/rule.adoc +++ b/rules/S3415/csharp/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3415/java/rule.adoc b/rules/S3415/java/rule.adoc index acea4c8af5..00f8922ab1 100644 --- a/rules/S3415/java/rule.adoc +++ b/rules/S3415/java/rule.adoc @@ -43,4 +43,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3415/javascript/rule.adoc b/rules/S3415/javascript/rule.adoc index b3160c2d96..4e2176cbab 100644 --- a/rules/S3415/javascript/rule.adoc +++ b/rules/S3415/javascript/rule.adoc @@ -74,4 +74,5 @@ If expect(actual).someMethod(expected) is used: (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3415/php/rule.adoc b/rules/S3415/php/rule.adoc index 69409dd177..c1dbfdfae2 100644 --- a/rules/S3415/php/rule.adoc +++ b/rules/S3415/php/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3424/abap/rule.adoc b/rules/S3424/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/abap/rule.adoc +++ b/rules/S3424/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/cfamily/rule.adoc b/rules/S3424/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/cfamily/rule.adoc +++ b/rules/S3424/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/cobol/rule.adoc b/rules/S3424/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/cobol/rule.adoc +++ b/rules/S3424/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/csharp/rule.adoc b/rules/S3424/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/csharp/rule.adoc +++ b/rules/S3424/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/flex/rule.adoc b/rules/S3424/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/flex/rule.adoc +++ b/rules/S3424/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/java/rule.adoc b/rules/S3424/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/java/rule.adoc +++ b/rules/S3424/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/javascript/rule.adoc b/rules/S3424/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/javascript/rule.adoc +++ b/rules/S3424/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/php/rule.adoc b/rules/S3424/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/php/rule.adoc +++ b/rules/S3424/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/pli/rule.adoc b/rules/S3424/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/pli/rule.adoc +++ b/rules/S3424/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/plsql/rule.adoc b/rules/S3424/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/plsql/rule.adoc +++ b/rules/S3424/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/python/rule.adoc b/rules/S3424/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/python/rule.adoc +++ b/rules/S3424/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/rpg/rule.adoc b/rules/S3424/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/rpg/rule.adoc +++ b/rules/S3424/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/swift/rule.adoc b/rules/S3424/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/swift/rule.adoc +++ b/rules/S3424/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3424/vbnet/rule.adoc b/rules/S3424/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S3424/vbnet/rule.adoc +++ b/rules/S3424/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3427/csharp/rule.adoc b/rules/S3427/csharp/rule.adoc index c935f37616..f4393d6d2c 100644 --- a/rules/S3427/csharp/rule.adoc +++ b/rules/S3427/csharp/rule.adoc @@ -84,4 +84,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S3431/csharp/rule.adoc b/rules/S3431/csharp/rule.adoc index 0b4665e587..31e121d06e 100644 --- a/rules/S3431/csharp/rule.adoc +++ b/rules/S3431/csharp/rule.adoc @@ -68,4 +68,5 @@ ExpectedException attribute (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3431/vbnet/rule.adoc b/rules/S3431/vbnet/rule.adoc index 98825cc5eb..66c58cec7b 100644 --- a/rules/S3431/vbnet/rule.adoc +++ b/rules/S3431/vbnet/rule.adoc @@ -47,4 +47,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3433/csharp/rule.adoc b/rules/S3433/csharp/rule.adoc index 6beb0197e0..521d7a83e1 100644 --- a/rules/S3433/csharp/rule.adoc +++ b/rules/S3433/csharp/rule.adoc @@ -68,4 +68,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S3434/csharp/rule.adoc b/rules/S3434/csharp/rule.adoc index f400461d94..752af71b7e 100644 --- a/rules/S3434/csharp/rule.adoc +++ b/rules/S3434/csharp/rule.adoc @@ -83,4 +83,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3434/java/rule.adoc b/rules/S3434/java/rule.adoc index 2c01a92994..6594b111ec 100644 --- a/rules/S3434/java/rule.adoc +++ b/rules/S3434/java/rule.adoc @@ -68,4 +68,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3440/csharp/rule.adoc b/rules/S3440/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3440/csharp/rule.adoc +++ b/rules/S3440/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3449/rspecator-dotnet.adoc b/rules/S3449/rspecator-dotnet.adoc index 3650e3a5c5..3068e7fd2d 100644 --- a/rules/S3449/rspecator-dotnet.adoc +++ b/rules/S3449/rspecator-dotnet.adoc @@ -13,4 +13,5 @@ include::./highlighting.adoc[] (visible only on this page) include::./comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3453/csharp/rule.adoc b/rules/S3453/csharp/rule.adoc index cf82ad59d8..780c0b2b48 100644 --- a/rules/S3453/csharp/rule.adoc +++ b/rules/S3453/csharp/rule.adoc @@ -42,4 +42,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3453/vbnet/rule.adoc b/rules/S3453/vbnet/rule.adoc index c97d4588b8..0d4c88da0b 100644 --- a/rules/S3453/vbnet/rule.adoc +++ b/rules/S3453/vbnet/rule.adoc @@ -41,4 +41,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3457/cfamily/rule.adoc b/rules/S3457/cfamily/rule.adoc index d472456594..f03251ed88 100644 --- a/rules/S3457/cfamily/rule.adoc +++ b/rules/S3457/cfamily/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3457/csharp/rule.adoc b/rules/S3457/csharp/rule.adoc index 1230fd1841..0c0b855d35 100644 --- a/rules/S3457/csharp/rule.adoc +++ b/rules/S3457/csharp/rule.adoc @@ -54,4 +54,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3457/java/rule.adoc b/rules/S3457/java/rule.adoc index a02dcbcb69..143d1abce8 100644 --- a/rules/S3457/java/rule.adoc +++ b/rules/S3457/java/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3457/python/rule.adoc b/rules/S3457/python/rule.adoc index 5a90c3d396..76e40522eb 100644 --- a/rules/S3457/python/rule.adoc +++ b/rules/S3457/python/rule.adoc @@ -88,4 +88,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3458/cfamily/rule.adoc b/rules/S3458/cfamily/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3458/cfamily/rule.adoc +++ b/rules/S3458/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3458/csharp/rule.adoc b/rules/S3458/csharp/rule.adoc index 8560c5819a..52a08f9945 100644 --- a/rules/S3458/csharp/rule.adoc +++ b/rules/S3458/csharp/rule.adoc @@ -54,4 +54,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3464/csharp/rule.adoc b/rules/S3464/csharp/rule.adoc index 69bc5f3d5c..f3a0338123 100644 --- a/rules/S3464/csharp/rule.adoc +++ b/rules/S3464/csharp/rule.adoc @@ -91,4 +91,5 @@ var c2 = new C2(); // This would result into a TypeLoadException ---- include::../resources.adoc[] + include::../rspecator.adoc[] diff --git a/rules/S3464/rspecator.adoc b/rules/S3464/rspecator.adoc index 22ee4ccac8..c6fd2dac12 100644 --- a/rules/S3464/rspecator.adoc +++ b/rules/S3464/rspecator.adoc @@ -13,4 +13,5 @@ include::highlighting.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S3464/vbnet/rule.adoc b/rules/S3464/vbnet/rule.adoc index 9dc6165038..04ac817e2d 100644 --- a/rules/S3464/vbnet/rule.adoc +++ b/rules/S3464/vbnet/rule.adoc @@ -86,4 +86,5 @@ Dim c2 = New C2(Of Integer) ' This would result into a TypeLoadException ---- include::../resources.adoc[] + include::../rspecator.adoc[] diff --git a/rules/S3466/csharp/rule.adoc b/rules/S3466/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3466/csharp/rule.adoc +++ b/rules/S3466/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3466/vbnet/rule.adoc b/rules/S3466/vbnet/rule.adoc index c4a13dc3af..68fe54ebfe 100644 --- a/rules/S3466/vbnet/rule.adoc +++ b/rules/S3466/vbnet/rule.adoc @@ -67,4 +67,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3477/csharp/rule.adoc b/rules/S3477/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3477/csharp/rule.adoc +++ b/rules/S3477/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3477/java/rule.adoc b/rules/S3477/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3477/java/rule.adoc +++ b/rules/S3477/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3477/php/rule.adoc b/rules/S3477/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3477/php/rule.adoc +++ b/rules/S3477/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3502/cfamily/rule.adoc b/rules/S3502/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3502/cfamily/rule.adoc +++ b/rules/S3502/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3502/csharp/rule.adoc b/rules/S3502/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3502/csharp/rule.adoc +++ b/rules/S3502/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3502/css/rule.adoc b/rules/S3502/css/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3502/css/rule.adoc +++ b/rules/S3502/css/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3502/flex/rule.adoc b/rules/S3502/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3502/flex/rule.adoc +++ b/rules/S3502/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3502/java/rule.adoc b/rules/S3502/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3502/java/rule.adoc +++ b/rules/S3502/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3502/javascript/rule.adoc b/rules/S3502/javascript/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3502/javascript/rule.adoc +++ b/rules/S3502/javascript/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3502/php/rule.adoc b/rules/S3502/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3502/php/rule.adoc +++ b/rules/S3502/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3502/python/rule.adoc b/rules/S3502/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3502/python/rule.adoc +++ b/rules/S3502/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3502/swift/rule.adoc b/rules/S3502/swift/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3502/swift/rule.adoc +++ b/rules/S3502/swift/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3502/vb6/rule.adoc b/rules/S3502/vb6/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3502/vb6/rule.adoc +++ b/rules/S3502/vb6/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3502/vbnet/rule.adoc b/rules/S3502/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3502/vbnet/rule.adoc +++ b/rules/S3502/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3516/cfamily/rule.adoc b/rules/S3516/cfamily/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3516/cfamily/rule.adoc +++ b/rules/S3516/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3516/java/rule.adoc b/rules/S3516/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3516/java/rule.adoc +++ b/rules/S3516/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3516/javascript/rule.adoc b/rules/S3516/javascript/rule.adoc index 12299cfbb4..126b64b168 100644 --- a/rules/S3516/javascript/rule.adoc +++ b/rules/S3516/javascript/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3516/python/rule.adoc b/rules/S3516/python/rule.adoc index 927ecd66d3..f749858b3d 100644 --- a/rules/S3516/python/rule.adoc +++ b/rules/S3516/python/rule.adoc @@ -31,4 +31,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3518/cfamily/rule.adoc b/rules/S3518/cfamily/rule.adoc index 395da6812d..b523ce02eb 100644 --- a/rules/S3518/cfamily/rule.adoc +++ b/rules/S3518/cfamily/rule.adoc @@ -30,4 +30,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3518/java/rule.adoc b/rules/S3518/java/rule.adoc index 37ae5f19ed..210cb181a0 100644 --- a/rules/S3518/java/rule.adoc +++ b/rules/S3518/java/rule.adoc @@ -33,4 +33,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3543/cfamily/rule.adoc b/rules/S3543/cfamily/rule.adoc index 1f5a5c0030..e1af3b8cab 100644 --- a/rules/S3543/cfamily/rule.adoc +++ b/rules/S3543/cfamily/rule.adoc @@ -56,4 +56,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3543/java/rule.adoc b/rules/S3543/java/rule.adoc index 94d3c463b6..8ec16f3397 100644 --- a/rules/S3543/java/rule.adoc +++ b/rules/S3543/java/rule.adoc @@ -60,4 +60,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3554/cfamily/rule.adoc b/rules/S3554/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3554/cfamily/rule.adoc +++ b/rules/S3554/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3554/csharp/rule.adoc b/rules/S3554/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3554/csharp/rule.adoc +++ b/rules/S3554/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3554/flex/rule.adoc b/rules/S3554/flex/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3554/flex/rule.adoc +++ b/rules/S3554/flex/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3554/java/rule.adoc b/rules/S3554/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3554/java/rule.adoc +++ b/rules/S3554/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3554/javascript/rule.adoc b/rules/S3554/javascript/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3554/javascript/rule.adoc +++ b/rules/S3554/javascript/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3554/php/rule.adoc b/rules/S3554/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3554/php/rule.adoc +++ b/rules/S3554/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3554/python/rule.adoc b/rules/S3554/python/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3554/python/rule.adoc +++ b/rules/S3554/python/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3554/swift/rule.adoc b/rules/S3554/swift/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3554/swift/rule.adoc +++ b/rules/S3554/swift/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3554/vb6/rule.adoc b/rules/S3554/vb6/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3554/vb6/rule.adoc +++ b/rules/S3554/vb6/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3554/vbnet/rule.adoc b/rules/S3554/vbnet/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3554/vbnet/rule.adoc +++ b/rules/S3554/vbnet/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3598/vbnet/rule.adoc b/rules/S3598/vbnet/rule.adoc index d3d1f44988..ce70ca8588 100644 --- a/rules/S3598/vbnet/rule.adoc +++ b/rules/S3598/vbnet/rule.adoc @@ -25,6 +25,7 @@ End Interface ---- include::../exceptions.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3604/csharp/rule.adoc b/rules/S3604/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S3604/csharp/rule.adoc +++ b/rules/S3604/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3618/cobol/rule.adoc b/rules/S3618/cobol/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3618/cobol/rule.adoc +++ b/rules/S3618/cobol/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3618/plsql/rule.adoc b/rules/S3618/plsql/rule.adoc index 33b313e5b4..ab39b36bfe 100644 --- a/rules/S3618/plsql/rule.adoc +++ b/rules/S3618/plsql/rule.adoc @@ -54,4 +54,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3626/abap/rule.adoc b/rules/S3626/abap/rule.adoc index 2911ccdb81..803bbd25d0 100644 --- a/rules/S3626/abap/rule.adoc +++ b/rules/S3626/abap/rule.adoc @@ -42,4 +42,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3626/cfamily/rule.adoc b/rules/S3626/cfamily/rule.adoc index 6d0d4a3066..4b9924a8c5 100644 --- a/rules/S3626/cfamily/rule.adoc +++ b/rules/S3626/cfamily/rule.adoc @@ -56,4 +56,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3626/csharp/rule.adoc b/rules/S3626/csharp/rule.adoc index e51abacf7d..8b1db04666 100644 --- a/rules/S3626/csharp/rule.adoc +++ b/rules/S3626/csharp/rule.adoc @@ -56,4 +56,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3626/java/rule.adoc b/rules/S3626/java/rule.adoc index e38e68bddb..1f48d64756 100644 --- a/rules/S3626/java/rule.adoc +++ b/rules/S3626/java/rule.adoc @@ -46,4 +46,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3626/javascript/rule.adoc b/rules/S3626/javascript/rule.adoc index 1acbb55ed8..cf15338757 100644 --- a/rules/S3626/javascript/rule.adoc +++ b/rules/S3626/javascript/rule.adoc @@ -44,4 +44,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3626/php/rule.adoc b/rules/S3626/php/rule.adoc index 88a01ac9b5..4a701c8d1c 100644 --- a/rules/S3626/php/rule.adoc +++ b/rules/S3626/php/rule.adoc @@ -42,4 +42,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3626/plsql/rule.adoc b/rules/S3626/plsql/rule.adoc index aa0d390582..db7e7642e1 100644 --- a/rules/S3626/plsql/rule.adoc +++ b/rules/S3626/plsql/rule.adoc @@ -43,4 +43,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3626/python/rule.adoc b/rules/S3626/python/rule.adoc index 030748378d..cf0c383c4e 100644 --- a/rules/S3626/python/rule.adoc +++ b/rules/S3626/python/rule.adoc @@ -53,4 +53,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3626/swift/rule.adoc b/rules/S3626/swift/rule.adoc index bc7bffbfb9..4395c605a8 100644 --- a/rules/S3626/swift/rule.adoc +++ b/rules/S3626/swift/rule.adoc @@ -38,4 +38,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3626/tsql/rule.adoc b/rules/S3626/tsql/rule.adoc index a012bcde88..fa992ca6fa 100644 --- a/rules/S3626/tsql/rule.adoc +++ b/rules/S3626/tsql/rule.adoc @@ -47,4 +47,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3630/cfamily/rule.adoc b/rules/S3630/cfamily/rule.adoc index 1b4d9e8aff..92effbafa4 100644 --- a/rules/S3630/cfamily/rule.adoc +++ b/rules/S3630/cfamily/rule.adoc @@ -65,4 +65,5 @@ Replace "reinterpret_cast" with a safer cast or refactor the code to avoid such (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3633/abap/rule.adoc b/rules/S3633/abap/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3633/abap/rule.adoc +++ b/rules/S3633/abap/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3633/cobol/rule.adoc b/rules/S3633/cobol/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3633/cobol/rule.adoc +++ b/rules/S3633/cobol/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3633/plsql/rule.adoc b/rules/S3633/plsql/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3633/plsql/rule.adoc +++ b/rules/S3633/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3641/plsql/rule.adoc b/rules/S3641/plsql/rule.adoc index 716014dc20..842d96f01f 100644 --- a/rules/S3641/plsql/rule.adoc +++ b/rules/S3641/plsql/rule.adoc @@ -28,4 +28,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3641/tsql/rule.adoc b/rules/S3641/tsql/rule.adoc index cac4e71689..aa53b9d710 100644 --- a/rules/S3641/tsql/rule.adoc +++ b/rules/S3641/tsql/rule.adoc @@ -24,4 +24,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3643/abap/rule.adoc b/rules/S3643/abap/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3643/abap/rule.adoc +++ b/rules/S3643/abap/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3643/cobol/rule.adoc b/rules/S3643/cobol/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3643/cobol/rule.adoc +++ b/rules/S3643/cobol/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3643/plsql/rule.adoc b/rules/S3643/plsql/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3643/plsql/rule.adoc +++ b/rules/S3643/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3643/tsql/rule.adoc b/rules/S3643/tsql/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3643/tsql/rule.adoc +++ b/rules/S3643/tsql/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3649/csharp/rule.adoc b/rules/S3649/csharp/rule.adoc index 062888f5a2..8cd8dc2df7 100644 --- a/rules/S3649/csharp/rule.adoc +++ b/rules/S3649/csharp/rule.adoc @@ -35,4 +35,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3649/java/rule.adoc b/rules/S3649/java/rule.adoc index e3d5f19c73..351cde8051 100644 --- a/rules/S3649/java/rule.adoc +++ b/rules/S3649/java/rule.adoc @@ -38,4 +38,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3649/javascript/how-to-fix-it/knex.adoc b/rules/S3649/javascript/how-to-fix-it/knex.adoc index b015d4bf44..d476743ebf 100644 --- a/rules/S3649/javascript/how-to-fix-it/knex.adoc +++ b/rules/S3649/javascript/how-to-fix-it/knex.adoc @@ -39,5 +39,6 @@ async function index(req, res) { :secure_feature: Knex :unsafe_function: whereRaw() + include::../../common/fix/secure-by-design.adoc[] diff --git a/rules/S3649/javascript/rule.adoc b/rules/S3649/javascript/rule.adoc index 41befc36db..80f995df7f 100644 --- a/rules/S3649/javascript/rule.adoc +++ b/rules/S3649/javascript/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3649/php/how-to-fix-it/laravel.adoc b/rules/S3649/php/how-to-fix-it/laravel.adoc index 9524e96394..587186fbee 100644 --- a/rules/S3649/php/how-to-fix-it/laravel.adoc +++ b/rules/S3649/php/how-to-fix-it/laravel.adoc @@ -69,5 +69,6 @@ class UserController extends Controller :secure_feature: Illuminate :unsafe_function: DB::raw() + include::../../common/fix/secure-by-design.adoc[] diff --git a/rules/S3649/php/rule.adoc b/rules/S3649/php/rule.adoc index fdb597bea1..8a7556f434 100644 --- a/rules/S3649/php/rule.adoc +++ b/rules/S3649/php/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3649/python/how-to-fix-it/sqlalchemy.adoc b/rules/S3649/python/how-to-fix-it/sqlalchemy.adoc index bd4de09890..f839c89439 100644 --- a/rules/S3649/python/how-to-fix-it/sqlalchemy.adoc +++ b/rules/S3649/python/how-to-fix-it/sqlalchemy.adoc @@ -56,4 +56,5 @@ def get_users(): :secure_feature: SQLAlchemy :unsafe_function: sqlalchemy.text() + include::../../common/fix/secure-by-design.adoc[] diff --git a/rules/S3649/python/rule.adoc b/rules/S3649/python/rule.adoc index 220cdc0653..2d91ed863f 100644 --- a/rules/S3649/python/rule.adoc +++ b/rules/S3649/python/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3650/tsql/rule.adoc b/rules/S3650/tsql/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3650/tsql/rule.adoc +++ b/rules/S3650/tsql/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3651/plsql/rule.adoc b/rules/S3651/plsql/rule.adoc index 4f04999f9a..abfa60cd96 100644 --- a/rules/S3651/plsql/rule.adoc +++ b/rules/S3651/plsql/rule.adoc @@ -39,4 +39,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3655/java/rule.adoc b/rules/S3655/java/rule.adoc index 06155bb34e..712c1b96e3 100644 --- a/rules/S3655/java/rule.adoc +++ b/rules/S3655/java/rule.adoc @@ -86,4 +86,5 @@ call "xxx.isPresent()" before accessing the value. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3688/cobol/rule.adoc b/rules/S3688/cobol/rule.adoc index cf1ba33885..8a1977e81f 100644 --- a/rules/S3688/cobol/rule.adoc +++ b/rules/S3688/cobol/rule.adoc @@ -47,4 +47,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3688/csharp/rule.adoc b/rules/S3688/csharp/rule.adoc index 4131e033ab..63ba4ae1f9 100644 --- a/rules/S3688/csharp/rule.adoc +++ b/rules/S3688/csharp/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3688/java/rule.adoc b/rules/S3688/java/rule.adoc index 2cd9e77fac..5609a485cf 100644 --- a/rules/S3688/java/rule.adoc +++ b/rules/S3688/java/rule.adoc @@ -17,4 +17,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3693/csharp/rule.adoc b/rules/S3693/csharp/rule.adoc index 61330fe9a7..bec48718ed 100644 --- a/rules/S3693/csharp/rule.adoc +++ b/rules/S3693/csharp/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3693/vbnet/rule.adoc b/rules/S3693/vbnet/rule.adoc index d5f370525e..00368d00f7 100644 --- a/rules/S3693/vbnet/rule.adoc +++ b/rules/S3693/vbnet/rule.adoc @@ -35,4 +35,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3696/cfamily/rule.adoc b/rules/S3696/cfamily/rule.adoc index 784b7dab54..3d6817b136 100644 --- a/rules/S3696/cfamily/rule.adoc +++ b/rules/S3696/cfamily/rule.adoc @@ -25,4 +25,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3696/javascript/rule.adoc b/rules/S3696/javascript/rule.adoc index 5fccb343c2..5a6b20c387 100644 --- a/rules/S3696/javascript/rule.adoc +++ b/rules/S3696/javascript/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3699/javascript/rule.adoc b/rules/S3699/javascript/rule.adoc index ed71fc6f8a..296c309675 100644 --- a/rules/S3699/javascript/rule.adoc +++ b/rules/S3699/javascript/rule.adoc @@ -21,4 +21,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3699/php/rule.adoc b/rules/S3699/php/rule.adoc index 3f18f71c88..37da1d0864 100644 --- a/rules/S3699/php/rule.adoc +++ b/rules/S3699/php/rule.adoc @@ -31,4 +31,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3699/python/rule.adoc b/rules/S3699/python/rule.adoc index e01cb34de9..82d29afc15 100644 --- a/rules/S3699/python/rule.adoc +++ b/rules/S3699/python/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3717/csharp/rule.adoc b/rules/S3717/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3717/csharp/rule.adoc +++ b/rules/S3717/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3723/javascript/rule.adoc b/rules/S3723/javascript/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3723/javascript/rule.adoc +++ b/rules/S3723/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3752/java/rule.adoc b/rules/S3752/java/rule.adoc index 7d7a3da151..a1ea880144 100644 --- a/rules/S3752/java/rule.adoc +++ b/rules/S3752/java/rule.adoc @@ -59,4 +59,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3752/python/rule.adoc b/rules/S3752/python/rule.adoc index 27ab19c912..e2544ad8f6 100644 --- a/rules/S3752/python/rule.adoc +++ b/rules/S3752/python/rule.adoc @@ -102,4 +102,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3776/vbnet/rule.adoc b/rules/S3776/vbnet/rule.adoc index 75f8911cd7..498141588a 100644 --- a/rules/S3776/vbnet/rule.adoc +++ b/rules/S3776/vbnet/rule.adoc @@ -35,4 +35,5 @@ End Function ---- include::../resources.adoc[] + include::../rspecator-dotnet.adoc[] \ No newline at end of file diff --git a/rules/S3801/javascript/rule.adoc b/rules/S3801/javascript/rule.adoc index 8d9498789a..615540267e 100644 --- a/rules/S3801/javascript/rule.adoc +++ b/rules/S3801/javascript/rule.adoc @@ -50,4 +50,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3801/php/rule.adoc b/rules/S3801/php/rule.adoc index 3b349bbd9d..4c62eee5c4 100644 --- a/rules/S3801/php/rule.adoc +++ b/rules/S3801/php/rule.adoc @@ -57,4 +57,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3801/python/rule.adoc b/rules/S3801/python/rule.adoc index 4a96409a67..361c45a0fc 100644 --- a/rules/S3801/python/rule.adoc +++ b/rules/S3801/python/rule.adoc @@ -51,4 +51,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3827/javascript/rule.adoc b/rules/S3827/javascript/rule.adoc index 6f557492eb..260451d455 100644 --- a/rules/S3827/javascript/rule.adoc +++ b/rules/S3827/javascript/rule.adoc @@ -57,4 +57,5 @@ Secondary location: the variable/class/function's definition later in the same s (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3827/python/rule.adoc b/rules/S3827/python/rule.adoc index efaa7e1683..5bd522e72a 100644 --- a/rules/S3827/python/rule.adoc +++ b/rules/S3827/python/rule.adoc @@ -62,4 +62,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3830/plsql/rule.adoc b/rules/S3830/plsql/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3830/plsql/rule.adoc +++ b/rules/S3830/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3872/csharp/rule.adoc b/rules/S3872/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3872/csharp/rule.adoc +++ b/rules/S3872/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3878/java/rule.adoc b/rules/S3878/java/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S3878/java/rule.adoc +++ b/rules/S3878/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3884/vbnet/rule.adoc b/rules/S3884/vbnet/rule.adoc index 7450cb71a4..21c949e9f9 100644 --- a/rules/S3884/vbnet/rule.adoc +++ b/rules/S3884/vbnet/rule.adoc @@ -61,6 +61,7 @@ End Class ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3887/csharp/rule.adoc b/rules/S3887/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3887/csharp/rule.adoc +++ b/rules/S3887/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3889/csharp/rule.adoc b/rules/S3889/csharp/rule.adoc index cd6fc1a0bf..a7f646bd25 100644 --- a/rules/S3889/csharp/rule.adoc +++ b/rules/S3889/csharp/rule.adoc @@ -3,6 +3,7 @@ include::../why-dotnet.adoc[] include::../resources-dotnet.adoc[] + * https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/statements/lock[lock statement] === Articles & blog posts diff --git a/rules/S3889/vbnet/rule.adoc b/rules/S3889/vbnet/rule.adoc index 85fea16875..bb2cd2e44f 100644 --- a/rules/S3889/vbnet/rule.adoc +++ b/rules/S3889/vbnet/rule.adoc @@ -3,6 +3,7 @@ include::../why-dotnet.adoc[] include::../resources-dotnet.adoc[] + * https://learn.microsoft.com/en-us/dotnet/visual-basic/language-reference/statements/synclock-statement[SyncLock Statement] ifdef::env-github,rspecator-view[] diff --git a/rules/S3890/cobol/rule.adoc b/rules/S3890/cobol/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3890/cobol/rule.adoc +++ b/rules/S3890/cobol/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3898/csharp/rule.adoc b/rules/S3898/csharp/rule.adoc index b68574624d..8dc2a27c65 100644 --- a/rules/S3898/csharp/rule.adoc +++ b/rules/S3898/csharp/rule.adoc @@ -28,4 +28,5 @@ struct MyStruct : IEquatable ---- include::../see.adoc[] + include::../rspecator.adoc[] diff --git a/rules/S3898/vbnet/rule.adoc b/rules/S3898/vbnet/rule.adoc index fe5af90fd5..32cfddaeea 100644 --- a/rules/S3898/vbnet/rule.adoc +++ b/rules/S3898/vbnet/rule.adoc @@ -30,4 +30,5 @@ End Structure ---- include::../see.adoc[] + include::../rspecator.adoc[] diff --git a/rules/S3902/csharp/rule.adoc b/rules/S3902/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3902/csharp/rule.adoc +++ b/rules/S3902/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3903/csharp/rule.adoc b/rules/S3903/csharp/rule.adoc index 2abcf178a8..097e02175e 100644 --- a/rules/S3903/csharp/rule.adoc +++ b/rules/S3903/csharp/rule.adoc @@ -48,4 +48,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3903/vbnet/rule.adoc b/rules/S3903/vbnet/rule.adoc index 404cbb5be3..7f7a9ddb17 100644 --- a/rules/S3903/vbnet/rule.adoc +++ b/rules/S3903/vbnet/rule.adoc @@ -41,4 +41,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3906/csharp/rule.adoc b/rules/S3906/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S3906/csharp/rule.adoc +++ b/rules/S3906/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3908/csharp/rule.adoc b/rules/S3908/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S3908/csharp/rule.adoc +++ b/rules/S3908/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3921/cobol/rule.adoc b/rules/S3921/cobol/rule.adoc index f97c82652e..ad5d31fd21 100644 --- a/rules/S3921/cobol/rule.adoc +++ b/rules/S3921/cobol/rule.adoc @@ -50,4 +50,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3921/plsql/rule.adoc b/rules/S3921/plsql/rule.adoc index 5367b06619..7c248b305b 100644 --- a/rules/S3921/plsql/rule.adoc +++ b/rules/S3921/plsql/rule.adoc @@ -56,4 +56,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/abap/rule.adoc b/rules/S3923/abap/rule.adoc index 9063a9e13a..b5a2ac0a3e 100644 --- a/rules/S3923/abap/rule.adoc +++ b/rules/S3923/abap/rule.adoc @@ -55,4 +55,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/apex/rule.adoc b/rules/S3923/apex/rule.adoc index cd519eda8c..1eca51746e 100644 --- a/rules/S3923/apex/rule.adoc +++ b/rules/S3923/apex/rule.adoc @@ -21,4 +21,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/cfamily/rule.adoc b/rules/S3923/cfamily/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3923/cfamily/rule.adoc +++ b/rules/S3923/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/cobol/rule.adoc b/rules/S3923/cobol/rule.adoc index fae1ff9a75..55b58b7034 100644 --- a/rules/S3923/cobol/rule.adoc +++ b/rules/S3923/cobol/rule.adoc @@ -51,4 +51,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/csharp/rule.adoc b/rules/S3923/csharp/rule.adoc index b60f8c9c6d..e14975afdc 100644 --- a/rules/S3923/csharp/rule.adoc +++ b/rules/S3923/csharp/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/flex/rule.adoc b/rules/S3923/flex/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3923/flex/rule.adoc +++ b/rules/S3923/flex/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/go/rule.adoc b/rules/S3923/go/rule.adoc index f5f4f09aa3..859ca13d52 100644 --- a/rules/S3923/go/rule.adoc +++ b/rules/S3923/go/rule.adoc @@ -32,4 +32,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/java/rule.adoc b/rules/S3923/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3923/java/rule.adoc +++ b/rules/S3923/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/javascript/rule.adoc b/rules/S3923/javascript/rule.adoc index c1f525c2e0..18763eb95f 100644 --- a/rules/S3923/javascript/rule.adoc +++ b/rules/S3923/javascript/rule.adoc @@ -33,4 +33,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/kotlin/rule.adoc b/rules/S3923/kotlin/rule.adoc index d4698a7756..f5e3e8de49 100644 --- a/rules/S3923/kotlin/rule.adoc +++ b/rules/S3923/kotlin/rule.adoc @@ -51,4 +51,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/php/rule.adoc b/rules/S3923/php/rule.adoc index 43e5b59305..5d2ff1b7b7 100644 --- a/rules/S3923/php/rule.adoc +++ b/rules/S3923/php/rule.adoc @@ -32,4 +32,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/plsql/rule.adoc b/rules/S3923/plsql/rule.adoc index 96e8cbb82e..4c2ee87afd 100644 --- a/rules/S3923/plsql/rule.adoc +++ b/rules/S3923/plsql/rule.adoc @@ -52,4 +52,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/python/rule.adoc b/rules/S3923/python/rule.adoc index 41f06b681e..e8faecea79 100644 --- a/rules/S3923/python/rule.adoc +++ b/rules/S3923/python/rule.adoc @@ -51,4 +51,5 @@ secondary: each identical body of the "if-elif-else" (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/ruby/rule.adoc b/rules/S3923/ruby/rule.adoc index fb951185cb..886320a576 100644 --- a/rules/S3923/ruby/rule.adoc +++ b/rules/S3923/ruby/rule.adoc @@ -57,4 +57,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/scala/rule.adoc b/rules/S3923/scala/rule.adoc index 2320e827b7..bbeb8e1bbc 100644 --- a/rules/S3923/scala/rule.adoc +++ b/rules/S3923/scala/rule.adoc @@ -51,4 +51,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/swift/rule.adoc b/rules/S3923/swift/rule.adoc index a4e70602ac..fba44bba70 100644 --- a/rules/S3923/swift/rule.adoc +++ b/rules/S3923/swift/rule.adoc @@ -33,4 +33,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/tsql/rule.adoc b/rules/S3923/tsql/rule.adoc index a38bc5666c..e7552b1c9a 100644 --- a/rules/S3923/tsql/rule.adoc +++ b/rules/S3923/tsql/rule.adoc @@ -53,4 +53,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3923/vbnet/rule.adoc b/rules/S3923/vbnet/rule.adoc index 75ba9d1215..826fed95fb 100644 --- a/rules/S3923/vbnet/rule.adoc +++ b/rules/S3923/vbnet/rule.adoc @@ -57,4 +57,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3925/csharp/rule.adoc b/rules/S3925/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3925/csharp/rule.adoc +++ b/rules/S3925/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3926/csharp/rule.adoc b/rules/S3926/csharp/rule.adoc index a840efea5e..bbeadf1cb5 100644 --- a/rules/S3926/csharp/rule.adoc +++ b/rules/S3926/csharp/rule.adoc @@ -55,4 +55,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3926/vbnet/rule.adoc b/rules/S3926/vbnet/rule.adoc index daeb0632b7..9b65d37953 100644 --- a/rules/S3926/vbnet/rule.adoc +++ b/rules/S3926/vbnet/rule.adoc @@ -48,4 +48,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3927/csharp/rule.adoc b/rules/S3927/csharp/rule.adoc index fc9e76e47b..155537aadb 100644 --- a/rules/S3927/csharp/rule.adoc +++ b/rules/S3927/csharp/rule.adoc @@ -76,4 +76,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3927/vbnet/rule.adoc b/rules/S3927/vbnet/rule.adoc index 97a27b04ff..ff8facc5e3 100644 --- a/rules/S3927/vbnet/rule.adoc +++ b/rules/S3927/vbnet/rule.adoc @@ -80,4 +80,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3931/javascript/rule.adoc b/rules/S3931/javascript/rule.adoc index 1a57172965..4cf0f9026f 100644 --- a/rules/S3931/javascript/rule.adoc +++ b/rules/S3931/javascript/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3937/csharp/rule.adoc b/rules/S3937/csharp/rule.adoc index 85c305ae66..225fe4616a 100644 --- a/rules/S3937/csharp/rule.adoc +++ b/rules/S3937/csharp/rule.adoc @@ -19,4 +19,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3937/java/rule.adoc b/rules/S3937/java/rule.adoc index fab1d6f0cf..a5921b7bd2 100644 --- a/rules/S3937/java/rule.adoc +++ b/rules/S3937/java/rule.adoc @@ -31,4 +31,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3941/cfamily/rule.adoc b/rules/S3941/cfamily/rule.adoc index b33cff83c8..6afa1be21e 100644 --- a/rules/S3941/cfamily/rule.adoc +++ b/rules/S3941/cfamily/rule.adoc @@ -17,4 +17,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3941/java/rule.adoc b/rules/S3941/java/rule.adoc index b33cff83c8..6afa1be21e 100644 --- a/rules/S3941/java/rule.adoc +++ b/rules/S3941/java/rule.adoc @@ -17,4 +17,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3941/python/rule.adoc b/rules/S3941/python/rule.adoc index 2b112f5d82..581bf505b6 100644 --- a/rules/S3941/python/rule.adoc +++ b/rules/S3941/python/rule.adoc @@ -13,4 +13,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3949/cfamily/rule.adoc b/rules/S3949/cfamily/rule.adoc index 1684dee69d..0cef8f7015 100644 --- a/rules/S3949/cfamily/rule.adoc +++ b/rules/S3949/cfamily/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3949/rspecator.adoc b/rules/S3949/rspecator.adoc index e1c09218c0..f213e9de87 100644 --- a/rules/S3949/rspecator.adoc +++ b/rules/S3949/rspecator.adoc @@ -13,4 +13,5 @@ include::highlighting.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3955/cfamily/rule.adoc b/rules/S3955/cfamily/rule.adoc index 675780d90c..2447d763ad 100644 --- a/rules/S3955/cfamily/rule.adoc +++ b/rules/S3955/cfamily/rule.adoc @@ -11,4 +11,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3955/csharp/rule.adoc b/rules/S3955/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3955/csharp/rule.adoc +++ b/rules/S3955/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3955/java/rule.adoc b/rules/S3955/java/rule.adoc index 675780d90c..2447d763ad 100644 --- a/rules/S3955/java/rule.adoc +++ b/rules/S3955/java/rule.adoc @@ -11,4 +11,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3955/javascript/rule.adoc b/rules/S3955/javascript/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3955/javascript/rule.adoc +++ b/rules/S3955/javascript/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3955/php/rule.adoc b/rules/S3955/php/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3955/php/rule.adoc +++ b/rules/S3955/php/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3955/plsql/rule.adoc b/rules/S3955/plsql/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S3955/plsql/rule.adoc +++ b/rules/S3955/plsql/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3973/cfamily/rule.adoc b/rules/S3973/cfamily/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3973/cfamily/rule.adoc +++ b/rules/S3973/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3973/csharp/rule.adoc b/rules/S3973/csharp/rule.adoc index 745718b001..1c0bec0394 100644 --- a/rules/S3973/csharp/rule.adoc +++ b/rules/S3973/csharp/rule.adoc @@ -63,4 +63,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3973/java/rule.adoc b/rules/S3973/java/rule.adoc index fbb82fbdc3..748daa7f98 100644 --- a/rules/S3973/java/rule.adoc +++ b/rules/S3973/java/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3973/javascript/rule.adoc b/rules/S3973/javascript/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3973/javascript/rule.adoc +++ b/rules/S3973/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3973/php/rule.adoc b/rules/S3973/php/rule.adoc index f02a740f28..095b0161a1 100644 --- a/rules/S3973/php/rule.adoc +++ b/rules/S3973/php/rule.adoc @@ -51,4 +51,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3973/tsql/rule.adoc b/rules/S3973/tsql/rule.adoc index 1d1c5a5112..3e3536feef 100644 --- a/rules/S3973/tsql/rule.adoc +++ b/rules/S3973/tsql/rule.adoc @@ -51,4 +51,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3981/csharp/rule.adoc b/rules/S3981/csharp/rule.adoc index 7eb54dda0f..55e0da345e 100644 --- a/rules/S3981/csharp/rule.adoc +++ b/rules/S3981/csharp/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3981/go/rule.adoc b/rules/S3981/go/rule.adoc index 53804a20c9..9d9f412c10 100644 --- a/rules/S3981/go/rule.adoc +++ b/rules/S3981/go/rule.adoc @@ -33,4 +33,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3981/java/rule.adoc b/rules/S3981/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3981/java/rule.adoc +++ b/rules/S3981/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3981/javascript/rule.adoc b/rules/S3981/javascript/rule.adoc index e70d773d9e..5d08c173a3 100644 --- a/rules/S3981/javascript/rule.adoc +++ b/rules/S3981/javascript/rule.adoc @@ -33,4 +33,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3981/kotlin/rule.adoc b/rules/S3981/kotlin/rule.adoc index b6d4dcfa59..241c2a0cd4 100644 --- a/rules/S3981/kotlin/rule.adoc +++ b/rules/S3981/kotlin/rule.adoc @@ -33,4 +33,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3981/php/rule.adoc b/rules/S3981/php/rule.adoc index 3ab6cdaae1..44fef76631 100644 --- a/rules/S3981/php/rule.adoc +++ b/rules/S3981/php/rule.adoc @@ -36,4 +36,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3981/python/rule.adoc b/rules/S3981/python/rule.adoc index 77a608039f..a8db736631 100644 --- a/rules/S3981/python/rule.adoc +++ b/rules/S3981/python/rule.adoc @@ -33,4 +33,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3981/swift/rule.adoc b/rules/S3981/swift/rule.adoc index 98441f10b5..6851627158 100644 --- a/rules/S3981/swift/rule.adoc +++ b/rules/S3981/swift/rule.adoc @@ -31,4 +31,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3981/vbnet/rule.adoc b/rules/S3981/vbnet/rule.adoc index 346429fccc..984337ea76 100644 --- a/rules/S3981/vbnet/rule.adoc +++ b/rules/S3981/vbnet/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3984/java/rule.adoc b/rules/S3984/java/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S3984/java/rule.adoc +++ b/rules/S3984/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3985/java/rule.adoc b/rules/S3985/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S3985/java/rule.adoc +++ b/rules/S3985/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3985/python/rule.adoc b/rules/S3985/python/rule.adoc index ae5c84fdfe..75d10b3547 100644 --- a/rules/S3985/python/rule.adoc +++ b/rules/S3985/python/rule.adoc @@ -60,4 +60,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S3993/csharp/rule.adoc b/rules/S3993/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S3993/csharp/rule.adoc +++ b/rules/S3993/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3994/csharp/rule.adoc b/rules/S3994/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S3994/csharp/rule.adoc +++ b/rules/S3994/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3995/csharp/rule.adoc b/rules/S3995/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S3995/csharp/rule.adoc +++ b/rules/S3995/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3996/csharp/rule.adoc b/rules/S3996/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S3996/csharp/rule.adoc +++ b/rules/S3996/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3997/csharp/rule.adoc b/rules/S3997/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S3997/csharp/rule.adoc +++ b/rules/S3997/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S3998/rspecator.adoc b/rules/S3998/rspecator.adoc index e1c09218c0..f213e9de87 100644 --- a/rules/S3998/rspecator.adoc +++ b/rules/S3998/rspecator.adoc @@ -13,4 +13,5 @@ include::highlighting.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4004/csharp/rule.adoc b/rules/S4004/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4004/csharp/rule.adoc +++ b/rules/S4004/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4005/csharp/rule.adoc b/rules/S4005/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4005/csharp/rule.adoc +++ b/rules/S4005/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4018/csharp/rule.adoc b/rules/S4018/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4018/csharp/rule.adoc +++ b/rules/S4018/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4022/csharp/rule.adoc b/rules/S4022/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S4022/csharp/rule.adoc +++ b/rules/S4022/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4023/csharp/rule.adoc b/rules/S4023/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4023/csharp/rule.adoc +++ b/rules/S4023/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4025/csharp/rule.adoc b/rules/S4025/csharp/rule.adoc index f4387b2402..18e04c9749 100644 --- a/rules/S4025/csharp/rule.adoc +++ b/rules/S4025/csharp/rule.adoc @@ -71,4 +71,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4025/vbnet/rule.adoc b/rules/S4025/vbnet/rule.adoc index b626b74d6e..758c0a3233 100644 --- a/rules/S4025/vbnet/rule.adoc +++ b/rules/S4025/vbnet/rule.adoc @@ -84,4 +84,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4026/csharp/rule.adoc b/rules/S4026/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4026/csharp/rule.adoc +++ b/rules/S4026/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4036/cfamily/rule.adoc b/rules/S4036/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4036/cfamily/rule.adoc +++ b/rules/S4036/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4036/csharp/rule.adoc b/rules/S4036/csharp/rule.adoc index 9ad9285c31..194b7f562c 100644 --- a/rules/S4036/csharp/rule.adoc +++ b/rules/S4036/csharp/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4036/java/rule.adoc b/rules/S4036/java/rule.adoc index b5c5a00de2..a8c38d6031 100644 --- a/rules/S4036/java/rule.adoc +++ b/rules/S4036/java/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4036/javascript/rule.adoc b/rules/S4036/javascript/rule.adoc index 1f9fbab218..44d65004a5 100644 --- a/rules/S4036/javascript/rule.adoc +++ b/rules/S4036/javascript/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4036/php/rule.adoc b/rules/S4036/php/rule.adoc index 6d59311208..7971246bee 100644 --- a/rules/S4036/php/rule.adoc +++ b/rules/S4036/php/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4036/python/rule.adoc b/rules/S4036/python/rule.adoc index 76232e83a1..68c74a2709 100644 --- a/rules/S4036/python/rule.adoc +++ b/rules/S4036/python/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4036/swift/rule.adoc b/rules/S4036/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4036/swift/rule.adoc +++ b/rules/S4036/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4036/vb6/rule.adoc b/rules/S4036/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4036/vb6/rule.adoc +++ b/rules/S4036/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4036/vbnet/rule.adoc b/rules/S4036/vbnet/rule.adoc index 61d724a784..e0b0cc83b3 100644 --- a/rules/S4036/vbnet/rule.adoc +++ b/rules/S4036/vbnet/rule.adoc @@ -34,4 +34,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4040/csharp/rule.adoc b/rules/S4040/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4040/csharp/rule.adoc +++ b/rules/S4040/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4054/cobol/rule.adoc b/rules/S4054/cobol/rule.adoc index eda653b42e..15a7364e9b 100644 --- a/rules/S4054/cobol/rule.adoc +++ b/rules/S4054/cobol/rule.adoc @@ -44,4 +44,5 @@ FETCH FIRST n ROWS ONLY (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4054/tsql/rule.adoc b/rules/S4054/tsql/rule.adoc index 86342695bc..e0d4224421 100644 --- a/rules/S4054/tsql/rule.adoc +++ b/rules/S4054/tsql/rule.adoc @@ -63,4 +63,5 @@ Add an "ORDER BY" clause; without it, "TOP" will return rows selected at random. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4109/tsql/rule.adoc b/rules/S4109/tsql/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4109/tsql/rule.adoc +++ b/rules/S4109/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4136/javascript/rule.adoc b/rules/S4136/javascript/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4136/javascript/rule.adoc +++ b/rules/S4136/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4143/cfamily/rule.adoc b/rules/S4143/cfamily/rule.adoc index e3a57c6f91..71c87ea44f 100644 --- a/rules/S4143/cfamily/rule.adoc +++ b/rules/S4143/cfamily/rule.adoc @@ -27,4 +27,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4143/go/rule.adoc b/rules/S4143/go/rule.adoc index 05569eaef6..07c35f868d 100644 --- a/rules/S4143/go/rule.adoc +++ b/rules/S4143/go/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4143/java/rule.adoc b/rules/S4143/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4143/java/rule.adoc +++ b/rules/S4143/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4143/javascript/rule.adoc b/rules/S4143/javascript/rule.adoc index a656dc33cf..2eee8e2ef9 100644 --- a/rules/S4143/javascript/rule.adoc +++ b/rules/S4143/javascript/rule.adoc @@ -35,4 +35,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4143/php/rule.adoc b/rules/S4143/php/rule.adoc index ea0c537d5a..46a3b65f3e 100644 --- a/rules/S4143/php/rule.adoc +++ b/rules/S4143/php/rule.adoc @@ -27,4 +27,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4143/python/rule.adoc b/rules/S4143/python/rule.adoc index fbe2a98042..faa624646c 100644 --- a/rules/S4143/python/rule.adoc +++ b/rules/S4143/python/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4143/swift/rule.adoc b/rules/S4143/swift/rule.adoc index 06111e08ed..27f3a3be68 100644 --- a/rules/S4143/swift/rule.adoc +++ b/rules/S4143/swift/rule.adoc @@ -30,4 +30,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4143/vbnet/rule.adoc b/rules/S4143/vbnet/rule.adoc index 2813e83bde..8678f42ab4 100644 --- a/rules/S4143/vbnet/rule.adoc +++ b/rules/S4143/vbnet/rule.adoc @@ -27,4 +27,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/apex/rule.adoc b/rules/S4144/apex/rule.adoc index eae962469d..96e823e0e1 100644 --- a/rules/S4144/apex/rule.adoc +++ b/rules/S4144/apex/rule.adoc @@ -52,4 +52,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/cfamily/rule.adoc b/rules/S4144/cfamily/rule.adoc index 818a9d374b..596a9d2eb2 100644 --- a/rules/S4144/cfamily/rule.adoc +++ b/rules/S4144/cfamily/rule.adoc @@ -67,4 +67,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/csharp/rule.adoc b/rules/S4144/csharp/rule.adoc index d66cd6237f..67320083d2 100644 --- a/rules/S4144/csharp/rule.adoc +++ b/rules/S4144/csharp/rule.adoc @@ -60,4 +60,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/go/rule.adoc b/rules/S4144/go/rule.adoc index 7eb47ac16b..b44dc07662 100644 --- a/rules/S4144/go/rule.adoc +++ b/rules/S4144/go/rule.adoc @@ -53,4 +53,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/java/rule.adoc b/rules/S4144/java/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4144/java/rule.adoc +++ b/rules/S4144/java/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/javascript/rule.adoc b/rules/S4144/javascript/rule.adoc index 3ec29d3d00..dc1be5ebc1 100644 --- a/rules/S4144/javascript/rule.adoc +++ b/rules/S4144/javascript/rule.adoc @@ -64,4 +64,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/kotlin/rule.adoc b/rules/S4144/kotlin/rule.adoc index 2bbc902305..72e2fb4b71 100644 --- a/rules/S4144/kotlin/rule.adoc +++ b/rules/S4144/kotlin/rule.adoc @@ -58,4 +58,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/php/rule.adoc b/rules/S4144/php/rule.adoc index b75e254c48..630b954d6f 100644 --- a/rules/S4144/php/rule.adoc +++ b/rules/S4144/php/rule.adoc @@ -56,4 +56,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/python/rule.adoc b/rules/S4144/python/rule.adoc index 4a671adba6..97753977c1 100644 --- a/rules/S4144/python/rule.adoc +++ b/rules/S4144/python/rule.adoc @@ -58,4 +58,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/ruby/rule.adoc b/rules/S4144/ruby/rule.adoc index 9ae761205f..9ad2464ced 100644 --- a/rules/S4144/ruby/rule.adoc +++ b/rules/S4144/ruby/rule.adoc @@ -74,4 +74,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/scala/rule.adoc b/rules/S4144/scala/rule.adoc index 0be2281a05..df95923513 100644 --- a/rules/S4144/scala/rule.adoc +++ b/rules/S4144/scala/rule.adoc @@ -62,4 +62,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/swift/rule.adoc b/rules/S4144/swift/rule.adoc index 4c85090c6d..ee52744f02 100644 --- a/rules/S4144/swift/rule.adoc +++ b/rules/S4144/swift/rule.adoc @@ -50,4 +50,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4144/vbnet/rule.adoc b/rules/S4144/vbnet/rule.adoc index 1a60287c1c..ea7a5bbf5a 100644 --- a/rules/S4144/vbnet/rule.adoc +++ b/rules/S4144/vbnet/rule.adoc @@ -56,4 +56,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4165/java/rule.adoc b/rules/S4165/java/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4165/java/rule.adoc +++ b/rules/S4165/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4165/javascript/rule.adoc b/rules/S4165/javascript/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4165/javascript/rule.adoc +++ b/rules/S4165/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4188/swift/rule.adoc b/rules/S4188/swift/rule.adoc index 2ca5043b15..fb22212315 100644 --- a/rules/S4188/swift/rule.adoc +++ b/rules/S4188/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4200/csharp/rule.adoc b/rules/S4200/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4200/csharp/rule.adoc +++ b/rules/S4200/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4214/csharp/rule.adoc b/rules/S4214/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4214/csharp/rule.adoc +++ b/rules/S4214/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4214/vbnet/rule.adoc b/rules/S4214/vbnet/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4214/vbnet/rule.adoc +++ b/rules/S4214/vbnet/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4220/csharp/rule.adoc b/rules/S4220/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4220/csharp/rule.adoc +++ b/rules/S4220/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4275/java/rule.adoc b/rules/S4275/java/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4275/java/rule.adoc +++ b/rules/S4275/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4413/tsql/rule.adoc b/rules/S4413/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S4413/tsql/rule.adoc +++ b/rules/S4413/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4423/azureresourcemanager/rule.adoc b/rules/S4423/azureresourcemanager/rule.adoc index 21c6de795f..1ec4d6c416 100644 --- a/rules/S4423/azureresourcemanager/rule.adoc +++ b/rules/S4423/azureresourcemanager/rule.adoc @@ -7,6 +7,7 @@ include::../rationale.adoc[] include::../impact.adoc[] // How to fix it section + include::how-to-fix-it/azure-mysql.adoc[] include::how-to-fix-it/azure-storage-account.adoc[] @@ -46,4 +47,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4423/cfamily/rule.adoc b/rules/S4423/cfamily/rule.adoc index 3437dc9093..5c183a1879 100644 --- a/rules/S4423/cfamily/rule.adoc +++ b/rules/S4423/cfamily/rule.adoc @@ -7,6 +7,7 @@ include::../rationale.adoc[] include::../impact.adoc[] // How to fix it section + include::how-to-fix-it/curl.adoc[] include::how-to-fix-it/openssl.adoc[] @@ -37,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4423/cloudformation/rule.adoc b/rules/S4423/cloudformation/rule.adoc index eb1ed34175..da3036ff49 100644 --- a/rules/S4423/cloudformation/rule.adoc +++ b/rules/S4423/cloudformation/rule.adoc @@ -7,6 +7,7 @@ include::../rationale.adoc[] include::../impact.adoc[] // How to fix it section + include::how-to-fix-it/api-gateway.adoc[] include::how-to-fix-it/opensearch.adoc[] @@ -83,4 +84,5 @@ For `AWS::ApiGatewayV2::DomainName`: (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4423/docker/rule.adoc b/rules/S4423/docker/rule.adoc index caad503305..663f8666d5 100644 --- a/rules/S4423/docker/rule.adoc +++ b/rules/S4423/docker/rule.adoc @@ -7,6 +7,7 @@ include::../rationale.adoc[] include::../impact.adoc[] // How to fix it section + include::how-to-fix-it/curl.adoc[] include::how-to-fix-it/wget.adoc[] @@ -37,4 +38,5 @@ Change this code to enforce TLS 1.2 or above. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4423/java/rule.adoc b/rules/S4423/java/rule.adoc index 24cc939d5c..48ae5beb9d 100644 --- a/rules/S4423/java/rule.adoc +++ b/rules/S4423/java/rule.adoc @@ -22,6 +22,7 @@ include::../common/resources/articles.adoc[] include::../common/resources/presentations.adoc[] include::../common/resources/standards.adoc[] + * https://mobile-security.gitbook.io/masvs/security-requirements/0x08-v3-cryptography_verification_requirements[Mobile AppSec Verification Standard] - Cryptography Requirements * https://owasp.org/www-project-mobile-top-10/2016-risks/m5-insufficient-cryptography[OWASP Mobile Top 10 2016 Category M5] - Insufficient Cryptography * https://cwe.mitre.org/data/definitions/327[MITRE, CWE-327] - Use of a Broken or Risky Cryptographic Algorithm diff --git a/rules/S4423/kotlin/rule.adoc b/rules/S4423/kotlin/rule.adoc index 0be7b3bf6c..5557628573 100644 --- a/rules/S4423/kotlin/rule.adoc +++ b/rules/S4423/kotlin/rule.adoc @@ -22,6 +22,7 @@ include::../common/resources/articles.adoc[] include::../common/resources/presentations.adoc[] include::../common/resources/standards.adoc[] + * https://mobile-security.gitbook.io/masvs/security-requirements/0x08-v3-cryptography_verification_requirements[Mobile AppSec Verification Standard] - Cryptography Requirements * https://owasp.org/www-project-mobile-top-10/2016-risks/m5-insufficient-cryptography[OWASP Mobile Top 10 2016 Category M5] - Insufficient Cryptography * https://cwe.mitre.org/data/definitions/327[MITRE, CWE-327] - Use of a Broken or Risky Cryptographic Algorithm diff --git a/rules/S4423/python/rule.adoc b/rules/S4423/python/rule.adoc index 61f71c8340..910ca67387 100644 --- a/rules/S4423/python/rule.adoc +++ b/rules/S4423/python/rule.adoc @@ -8,6 +8,7 @@ include::../rationale.adoc[] include::../impact.adoc[] // How to fix it section + include::how-to-fix-it/ssl.adoc[] include::how-to-fix-it/openssl.adoc[] diff --git a/rules/S4423/terraform/rule.adoc b/rules/S4423/terraform/rule.adoc index 3d4a519da6..623838d3d7 100644 --- a/rules/S4423/terraform/rule.adoc +++ b/rules/S4423/terraform/rule.adoc @@ -7,6 +7,7 @@ include::../rationale.adoc[] include::../impact.adoc[] // How to fix it section + include::how-to-fix-it/aws-api-gateway.adoc[] include::how-to-fix-it/aws-opensearch.adoc[] @@ -106,4 +107,5 @@ For `google_compute_ssl_policy`: (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4426/cfamily/rule.adoc b/rules/S4426/cfamily/rule.adoc index 2904a58051..8dbccea7c8 100644 --- a/rules/S4426/cfamily/rule.adoc +++ b/rules/S4426/cfamily/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4426/python/rule.adoc b/rules/S4426/python/rule.adoc index 0f34c18250..be1e8d1ea8 100644 --- a/rules/S4426/python/rule.adoc +++ b/rules/S4426/python/rule.adoc @@ -7,6 +7,7 @@ include::../rationale.adoc[] include::../impact.adoc[] // How to fix it section + include::how-to-fix-it/pyca.adoc[] == Resources diff --git a/rules/S4428/csharp/rule.adoc b/rules/S4428/csharp/rule.adoc index fc3a111d51..2b39cb9f06 100644 --- a/rules/S4428/csharp/rule.adoc +++ b/rules/S4428/csharp/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4428/vbnet/rule.adoc b/rules/S4428/vbnet/rule.adoc index 03b138896a..709e406784 100644 --- a/rules/S4428/vbnet/rule.adoc +++ b/rules/S4428/vbnet/rule.adoc @@ -38,4 +38,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4432/java/rule.adoc b/rules/S4432/java/rule.adoc index d1fbce2a50..eaa4db4f6b 100644 --- a/rules/S4432/java/rule.adoc +++ b/rules/S4432/java/rule.adoc @@ -56,4 +56,5 @@ Cipher.getInstance() call (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4433/java/rule.adoc b/rules/S4433/java/rule.adoc index d02503fe48..500e0220ae 100644 --- a/rules/S4433/java/rule.adoc +++ b/rules/S4433/java/rule.adoc @@ -39,6 +39,7 @@ DirContext ctx = new InitialDirContext(env); ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4433/php/rule.adoc b/rules/S4433/php/rule.adoc index febbe20dcb..48db2710e1 100644 --- a/rules/S4433/php/rule.adoc +++ b/rules/S4433/php/rule.adoc @@ -28,6 +28,7 @@ if ($ldapconn) { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4433/python/rule.adoc b/rules/S4433/python/rule.adoc index 3da1e22f85..900dac7e6b 100644 --- a/rules/S4433/python/rule.adoc +++ b/rules/S4433/python/rule.adoc @@ -34,6 +34,7 @@ def init_ldap(): ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4456/csharp/rule.adoc b/rules/S4456/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4456/csharp/rule.adoc +++ b/rules/S4456/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4457/csharp/rule.adoc b/rules/S4457/csharp/rule.adoc index eb70c9f5e8..c45be3615f 100644 --- a/rules/S4457/csharp/rule.adoc +++ b/rules/S4457/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' @@ -14,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4462/csharp/rule.adoc b/rules/S4462/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4462/csharp/rule.adoc +++ b/rules/S4462/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4502/java/rule.adoc b/rules/S4502/java/rule.adoc index e0a9c7ce70..4e5876a2ec 100644 --- a/rules/S4502/java/rule.adoc +++ b/rules/S4502/java/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4502/javascript/rule.adoc b/rules/S4502/javascript/rule.adoc index 6e18b6fb71..daf41dff7f 100644 --- a/rules/S4502/javascript/rule.adoc +++ b/rules/S4502/javascript/rule.adoc @@ -74,4 +74,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4502/php/rule.adoc b/rules/S4502/php/rule.adoc index b39df6c191..b8bd8262fd 100644 --- a/rules/S4502/php/rule.adoc +++ b/rules/S4502/php/rule.adoc @@ -83,4 +83,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4502/python/rule.adoc b/rules/S4502/python/rule.adoc index 2dfce5b1d9..5b75c19e6b 100644 --- a/rules/S4502/python/rule.adoc +++ b/rules/S4502/python/rule.adoc @@ -143,4 +143,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4507/cobol/rule.adoc b/rules/S4507/cobol/rule.adoc index 5a9e542404..dd7572dcde 100644 --- a/rules/S4507/cobol/rule.adoc +++ b/rules/S4507/cobol/rule.adoc @@ -39,4 +39,5 @@ Make sure this debug clause is removed before delivering the code in production. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4507/docker/rule.adoc b/rules/S4507/docker/rule.adoc index 4edd711aba..5c0fc7e5bf 100644 --- a/rules/S4507/docker/rule.adoc +++ b/rules/S4507/docker/rule.adoc @@ -47,4 +47,5 @@ The environment variable name and its associated value. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4507/flex/rule.adoc b/rules/S4507/flex/rule.adoc index f782bf3458..8228a932ce 100644 --- a/rules/S4507/flex/rule.adoc +++ b/rules/S4507/flex/rule.adoc @@ -35,4 +35,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4507/java/rule.adoc b/rules/S4507/java/rule.adoc index 56b32f3a24..472eca8398 100644 --- a/rules/S4507/java/rule.adoc +++ b/rules/S4507/java/rule.adoc @@ -99,4 +99,5 @@ printStackTrace (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4507/javascript/rule.adoc b/rules/S4507/javascript/rule.adoc index d820ff277f..4791bf7a73 100644 --- a/rules/S4507/javascript/rule.adoc +++ b/rules/S4507/javascript/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4507/kotlin/rule.adoc b/rules/S4507/kotlin/rule.adoc index bca5b689db..5a7d8d6e69 100644 --- a/rules/S4507/kotlin/rule.adoc +++ b/rules/S4507/kotlin/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4507/php/rule.adoc b/rules/S4507/php/rule.adoc index e1ecb1df54..6b82dd0eaf 100644 --- a/rules/S4507/php/rule.adoc +++ b/rules/S4507/php/rule.adoc @@ -73,4 +73,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4507/python/rule.adoc b/rules/S4507/python/rule.adoc index c67241464a..f4e301488c 100644 --- a/rules/S4507/python/rule.adoc +++ b/rules/S4507/python/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4507/rpg/rule.adoc b/rules/S4507/rpg/rule.adoc index d494e0de94..72aac5a45f 100644 --- a/rules/S4507/rpg/rule.adoc +++ b/rules/S4507/rpg/rule.adoc @@ -51,4 +51,5 @@ Make sure this debug clause is removed before delivering the code in production. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4507/vbnet/rule.adoc b/rules/S4507/vbnet/rule.adoc index 9cc5eaff0e..1c852a9442 100644 --- a/rules/S4507/vbnet/rule.adoc +++ b/rules/S4507/vbnet/rule.adoc @@ -66,4 +66,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4507/xml/rule.adoc b/rules/S4507/xml/rule.adoc index 2ef3bcf5d0..1345d8d578 100644 --- a/rules/S4507/xml/rule.adoc +++ b/rules/S4507/xml/rule.adoc @@ -69,4 +69,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4508/java/rule.adoc b/rules/S4508/java/rule.adoc index 405f4927d1..869ea186e3 100644 --- a/rules/S4508/java/rule.adoc +++ b/rules/S4508/java/rule.adoc @@ -54,4 +54,5 @@ the call to the "readObject", "readUnshared" method on the ObjectInputStream (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4508/python/rule.adoc b/rules/S4508/python/rule.adoc index 5f0250ab54..f70b4f9f50 100644 --- a/rules/S4508/python/rule.adoc +++ b/rules/S4508/python/rule.adoc @@ -39,4 +39,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4524/abap/rule.adoc b/rules/S4524/abap/rule.adoc index 1a0757ebee..bbaa02eec6 100644 --- a/rules/S4524/abap/rule.adoc +++ b/rules/S4524/abap/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4524/cfamily/rule.adoc b/rules/S4524/cfamily/rule.adoc index f84962e680..0586ba4f04 100644 --- a/rules/S4524/cfamily/rule.adoc +++ b/rules/S4524/cfamily/rule.adoc @@ -20,4 +20,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4524/flex/rule.adoc b/rules/S4524/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4524/flex/rule.adoc +++ b/rules/S4524/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4524/java/rule.adoc b/rules/S4524/java/rule.adoc index 3491b5f588..59f430abfc 100644 --- a/rules/S4524/java/rule.adoc +++ b/rules/S4524/java/rule.adoc @@ -37,4 +37,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4524/javascript/rule.adoc b/rules/S4524/javascript/rule.adoc index f541b0b52a..dd630f49ff 100644 --- a/rules/S4524/javascript/rule.adoc +++ b/rules/S4524/javascript/rule.adoc @@ -16,4 +16,5 @@ Move this "default" clause to the end of this "switch" statement. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4524/php/rule.adoc b/rules/S4524/php/rule.adoc index 6ba87774c5..8adfdfea5d 100644 --- a/rules/S4524/php/rule.adoc +++ b/rules/S4524/php/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4524/rspecator.adoc b/rules/S4524/rspecator.adoc index 541fb159e5..cd3ab2417b 100644 --- a/rules/S4524/rspecator.adoc +++ b/rules/S4524/rspecator.adoc @@ -11,4 +11,5 @@ include::message.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4529/java/rule.adoc b/rules/S4529/java/rule.adoc index 524011cbcf..637513e0c8 100644 --- a/rules/S4529/java/rule.adoc +++ b/rules/S4529/java/rule.adoc @@ -45,4 +45,5 @@ The method annotated with @RequestMapping (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4529/php/rule.adoc b/rules/S4529/php/rule.adoc index 8bc4a0f170..5b1c39ae9a 100644 --- a/rules/S4529/php/rule.adoc +++ b/rules/S4529/php/rule.adoc @@ -51,4 +51,5 @@ The method name without its pararameters (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4529/python/rule.adoc b/rules/S4529/python/rule.adoc index c8f24bb6f7..6eb793d4fb 100644 --- a/rules/S4529/python/rule.adoc +++ b/rules/S4529/python/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4529/vbnet/rule.adoc b/rules/S4529/vbnet/rule.adoc index f9e49de5a7..99c02c1dbe 100644 --- a/rules/S4529/vbnet/rule.adoc +++ b/rules/S4529/vbnet/rule.adoc @@ -70,4 +70,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4545/csharp/rule.adoc b/rules/S4545/csharp/rule.adoc index 2214f76d57..ab0182894b 100644 --- a/rules/S4545/csharp/rule.adoc +++ b/rules/S4545/csharp/rule.adoc @@ -50,4 +50,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4545/vbnet/rule.adoc b/rules/S4545/vbnet/rule.adoc index cdb4f257c7..6fc99e5738 100644 --- a/rules/S4545/vbnet/rule.adoc +++ b/rules/S4545/vbnet/rule.adoc @@ -52,4 +52,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4581/csharp/rule.adoc b/rules/S4581/csharp/rule.adoc index d0021c6604..4e7b5ae44b 100644 --- a/rules/S4581/csharp/rule.adoc +++ b/rules/S4581/csharp/rule.adoc @@ -42,4 +42,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4581/vbnet/rule.adoc b/rules/S4581/vbnet/rule.adoc index f8db59bb3b..15bc5f9605 100644 --- a/rules/S4581/vbnet/rule.adoc +++ b/rules/S4581/vbnet/rule.adoc @@ -39,4 +39,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4586/csharp/rule.adoc b/rules/S4586/csharp/rule.adoc index b66f25f94d..8348590fea 100644 --- a/rules/S4586/csharp/rule.adoc +++ b/rules/S4586/csharp/rule.adoc @@ -71,6 +71,7 @@ public Task GetFooAsync() ---- include::../resources.adoc[] + * C# Language Design - https://github.com/dotnet/csharplang/issues/35[Proposal Champion "Null-conditional await"] include::../rspecator.adoc[] \ No newline at end of file diff --git a/rules/S4635/rspecator-dotnet.adoc b/rules/S4635/rspecator-dotnet.adoc index aa024c07d8..5bfef88305 100644 --- a/rules/S4635/rspecator-dotnet.adoc +++ b/rules/S4635/rspecator-dotnet.adoc @@ -15,4 +15,5 @@ include::highlighting.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S4635/rspecator.adoc b/rules/S4635/rspecator.adoc index 22ee4ccac8..c6fd2dac12 100644 --- a/rules/S4635/rspecator.adoc +++ b/rules/S4635/rspecator.adoc @@ -13,4 +13,5 @@ include::highlighting.adoc[] (visible only on this page) include::comments-and-links.adoc[] + endif::env-github,rspecator-view[] \ No newline at end of file diff --git a/rules/S4639/csharp/rule.adoc b/rules/S4639/csharp/rule.adoc index 0a3608aad3..0748d6467e 100644 --- a/rules/S4639/csharp/rule.adoc +++ b/rules/S4639/csharp/rule.adoc @@ -61,4 +61,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4639/java/rule.adoc b/rules/S4639/java/rule.adoc index d3690aeb60..e0fd29b4c3 100644 --- a/rules/S4639/java/rule.adoc +++ b/rules/S4639/java/rule.adoc @@ -67,4 +67,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4639/javascript/rule.adoc b/rules/S4639/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4639/javascript/rule.adoc +++ b/rules/S4639/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4639/php/rule.adoc b/rules/S4639/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4639/php/rule.adoc +++ b/rules/S4639/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4663/apex/rule.adoc b/rules/S4663/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S4663/apex/rule.adoc +++ b/rules/S4663/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4663/css/rule.adoc b/rules/S4663/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S4663/css/rule.adoc +++ b/rules/S4663/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4663/go/rule.adoc b/rules/S4663/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S4663/go/rule.adoc +++ b/rules/S4663/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4663/kotlin/rule.adoc b/rules/S4663/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S4663/kotlin/rule.adoc +++ b/rules/S4663/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4663/scala/rule.adoc b/rules/S4663/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S4663/scala/rule.adoc +++ b/rules/S4663/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4721/abap/rule.adoc b/rules/S4721/abap/rule.adoc index 6dee7ddc69..2a5a9a5a86 100644 --- a/rules/S4721/abap/rule.adoc +++ b/rules/S4721/abap/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/cfamily/rule.adoc b/rules/S4721/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/cfamily/rule.adoc +++ b/rules/S4721/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/cobol/rule.adoc b/rules/S4721/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/cobol/rule.adoc +++ b/rules/S4721/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/go/rule.adoc b/rules/S4721/go/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/go/rule.adoc +++ b/rules/S4721/go/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/kotlin/rule.adoc b/rules/S4721/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/kotlin/rule.adoc +++ b/rules/S4721/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/php/rule.adoc b/rules/S4721/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/php/rule.adoc +++ b/rules/S4721/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/plsql/rule.adoc b/rules/S4721/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/plsql/rule.adoc +++ b/rules/S4721/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/python/rule.adoc b/rules/S4721/python/rule.adoc index 8f42cd846b..8799210a28 100644 --- a/rules/S4721/python/rule.adoc +++ b/rules/S4721/python/rule.adoc @@ -98,4 +98,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/ruby/rule.adoc b/rules/S4721/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/ruby/rule.adoc +++ b/rules/S4721/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/rust/rule.adoc b/rules/S4721/rust/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/rust/rule.adoc +++ b/rules/S4721/rust/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/scala/rule.adoc b/rules/S4721/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/scala/rule.adoc +++ b/rules/S4721/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/solidity/rule.adoc b/rules/S4721/solidity/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/solidity/rule.adoc +++ b/rules/S4721/solidity/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/swift/rule.adoc b/rules/S4721/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/swift/rule.adoc +++ b/rules/S4721/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/tsql/rule.adoc b/rules/S4721/tsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S4721/tsql/rule.adoc +++ b/rules/S4721/tsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4721/vbnet/rule.adoc b/rules/S4721/vbnet/rule.adoc index d4916d09e1..af238cca56 100644 --- a/rules/S4721/vbnet/rule.adoc +++ b/rules/S4721/vbnet/rule.adoc @@ -50,4 +50,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4784/php/rule.adoc b/rules/S4784/php/rule.adoc index 6f23de8c92..fadb2ff2cc 100644 --- a/rules/S4784/php/rule.adoc +++ b/rules/S4784/php/rule.adoc @@ -79,4 +79,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4784/python/rule.adoc b/rules/S4784/python/rule.adoc index 4387cba389..5cfe7a7a7e 100644 --- a/rules/S4784/python/rule.adoc +++ b/rules/S4784/python/rule.adoc @@ -82,4 +82,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4784/vbnet/rule.adoc b/rules/S4784/vbnet/rule.adoc index ec076046f4..d9e357e89e 100644 --- a/rules/S4784/vbnet/rule.adoc +++ b/rules/S4784/vbnet/rule.adoc @@ -78,4 +78,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4787/java/rule.adoc b/rules/S4787/java/rule.adoc index 6ee98e8381..999da6e01f 100644 --- a/rules/S4787/java/rule.adoc +++ b/rules/S4787/java/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4787/php/rule.adoc b/rules/S4787/php/rule.adoc index 1bc57cdafc..0faa2a0bf6 100644 --- a/rules/S4787/php/rule.adoc +++ b/rules/S4787/php/rule.adoc @@ -241,4 +241,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4787/python/rule.adoc b/rules/S4787/python/rule.adoc index a3108a2402..165979b256 100644 --- a/rules/S4787/python/rule.adoc +++ b/rules/S4787/python/rule.adoc @@ -61,4 +61,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4787/vbnet/rule.adoc b/rules/S4787/vbnet/rule.adoc index ee74fd9475..2e0a5b3c6a 100644 --- a/rules/S4787/vbnet/rule.adoc +++ b/rules/S4787/vbnet/rule.adoc @@ -77,4 +77,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/abap/rule.adoc b/rules/S4790/abap/rule.adoc index 5c3d6559ae..565d29fa32 100644 --- a/rules/S4790/abap/rule.adoc +++ b/rules/S4790/abap/rule.adoc @@ -25,4 +25,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/apex/rule.adoc b/rules/S4790/apex/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4790/apex/rule.adoc +++ b/rules/S4790/apex/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/cfamily/rule.adoc b/rules/S4790/cfamily/rule.adoc index 11650a9961..002a748b3b 100644 --- a/rules/S4790/cfamily/rule.adoc +++ b/rules/S4790/cfamily/rule.adoc @@ -46,4 +46,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/cobol/rule.adoc b/rules/S4790/cobol/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4790/cobol/rule.adoc +++ b/rules/S4790/cobol/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/go/rule.adoc b/rules/S4790/go/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4790/go/rule.adoc +++ b/rules/S4790/go/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/kotlin/rule.adoc b/rules/S4790/kotlin/rule.adoc index 5d35de33b1..45ac9fdd89 100644 --- a/rules/S4790/kotlin/rule.adoc +++ b/rules/S4790/kotlin/rule.adoc @@ -57,4 +57,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/pli/rule.adoc b/rules/S4790/pli/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4790/pli/rule.adoc +++ b/rules/S4790/pli/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/plsql/rule.adoc b/rules/S4790/plsql/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4790/plsql/rule.adoc +++ b/rules/S4790/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/python/rule.adoc b/rules/S4790/python/rule.adoc index 2c48390056..f3c61a8fa6 100644 --- a/rules/S4790/python/rule.adoc +++ b/rules/S4790/python/rule.adoc @@ -49,4 +49,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/ruby/rule.adoc b/rules/S4790/ruby/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4790/ruby/rule.adoc +++ b/rules/S4790/ruby/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/rust/rule.adoc b/rules/S4790/rust/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4790/rust/rule.adoc +++ b/rules/S4790/rust/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/scala/rule.adoc b/rules/S4790/scala/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4790/scala/rule.adoc +++ b/rules/S4790/scala/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/swift/rule.adoc b/rules/S4790/swift/rule.adoc index 96b3a87aed..fc15de4c0a 100644 --- a/rules/S4790/swift/rule.adoc +++ b/rules/S4790/swift/rule.adoc @@ -40,4 +40,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/tsql/rule.adoc b/rules/S4790/tsql/rule.adoc index 8f2997d656..5dbb0c403f 100644 --- a/rules/S4790/tsql/rule.adoc +++ b/rules/S4790/tsql/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/vb6/rule.adoc b/rules/S4790/vb6/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4790/vb6/rule.adoc +++ b/rules/S4790/vb6/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4790/vbnet/rule.adoc b/rules/S4790/vbnet/rule.adoc index 32e173c668..41d3cdb84f 100644 --- a/rules/S4790/vbnet/rule.adoc +++ b/rules/S4790/vbnet/rule.adoc @@ -59,4 +59,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/abap/rule.adoc b/rules/S4792/abap/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/abap/rule.adoc +++ b/rules/S4792/abap/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/apex/rule.adoc b/rules/S4792/apex/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/apex/rule.adoc +++ b/rules/S4792/apex/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/cfamily/rule.adoc b/rules/S4792/cfamily/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/cfamily/rule.adoc +++ b/rules/S4792/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/cobol/rule.adoc b/rules/S4792/cobol/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/cobol/rule.adoc +++ b/rules/S4792/cobol/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/csharp/rule.adoc b/rules/S4792/csharp/rule.adoc index 167e90076a..4af5aac3f0 100644 --- a/rules/S4792/csharp/rule.adoc +++ b/rules/S4792/csharp/rule.adoc @@ -171,4 +171,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/flex/rule.adoc b/rules/S4792/flex/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/flex/rule.adoc +++ b/rules/S4792/flex/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/go/rule.adoc b/rules/S4792/go/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/go/rule.adoc +++ b/rules/S4792/go/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/javascript/rule.adoc b/rules/S4792/javascript/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/javascript/rule.adoc +++ b/rules/S4792/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/kotlin/rule.adoc b/rules/S4792/kotlin/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/kotlin/rule.adoc +++ b/rules/S4792/kotlin/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/php/rule.adoc b/rules/S4792/php/rule.adoc index f94b3f972b..f29398a28c 100644 --- a/rules/S4792/php/rule.adoc +++ b/rules/S4792/php/rule.adoc @@ -92,4 +92,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/python/rule.adoc b/rules/S4792/python/rule.adoc index 501811554d..78abd5241e 100644 --- a/rules/S4792/python/rule.adoc +++ b/rules/S4792/python/rule.adoc @@ -58,4 +58,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/rpg/rule.adoc b/rules/S4792/rpg/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/rpg/rule.adoc +++ b/rules/S4792/rpg/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/ruby/rule.adoc b/rules/S4792/ruby/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/ruby/rule.adoc +++ b/rules/S4792/ruby/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/rust/rule.adoc b/rules/S4792/rust/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/rust/rule.adoc +++ b/rules/S4792/rust/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/scala/rule.adoc b/rules/S4792/scala/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/scala/rule.adoc +++ b/rules/S4792/scala/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/swift/rule.adoc b/rules/S4792/swift/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/swift/rule.adoc +++ b/rules/S4792/swift/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/tsql/rule.adoc b/rules/S4792/tsql/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/tsql/rule.adoc +++ b/rules/S4792/tsql/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4792/vb6/rule.adoc b/rules/S4792/vb6/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S4792/vb6/rule.adoc +++ b/rules/S4792/vb6/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4797/php/rule.adoc b/rules/S4797/php/rule.adoc index 88a68ef15e..bdf00a7bd3 100644 --- a/rules/S4797/php/rule.adoc +++ b/rules/S4797/php/rule.adoc @@ -76,4 +76,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4797/python/rule.adoc b/rules/S4797/python/rule.adoc index 02ffbee53e..7bbb952e95 100644 --- a/rules/S4797/python/rule.adoc +++ b/rules/S4797/python/rule.adoc @@ -145,4 +145,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4797/vbnet/rule.adoc b/rules/S4797/vbnet/rule.adoc index 55f51d9c85..5b31c0365f 100644 --- a/rules/S4797/vbnet/rule.adoc +++ b/rules/S4797/vbnet/rule.adoc @@ -82,4 +82,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4801/plsql/rule.adoc b/rules/S4801/plsql/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4801/plsql/rule.adoc +++ b/rules/S4801/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4801/tsql/rule.adoc b/rules/S4801/tsql/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S4801/tsql/rule.adoc +++ b/rules/S4801/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4817/python/rule.adoc b/rules/S4817/python/rule.adoc index 9e757614cb..08e48efc07 100644 --- a/rules/S4817/python/rule.adoc +++ b/rules/S4817/python/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4817/vbnet/rule.adoc b/rules/S4817/vbnet/rule.adoc index 843db42c98..25757bcfca 100644 --- a/rules/S4817/vbnet/rule.adoc +++ b/rules/S4817/vbnet/rule.adoc @@ -50,4 +50,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4818/csharp/rule.adoc b/rules/S4818/csharp/rule.adoc index 35796e8bde..a7712af03d 100644 --- a/rules/S4818/csharp/rule.adoc +++ b/rules/S4818/csharp/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4818/java/rule.adoc b/rules/S4818/java/rule.adoc index f3511f5bb6..6e36a89a90 100644 --- a/rules/S4818/java/rule.adoc +++ b/rules/S4818/java/rule.adoc @@ -102,4 +102,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4818/php/rule.adoc b/rules/S4818/php/rule.adoc index 152778f42c..5112233a92 100644 --- a/rules/S4818/php/rule.adoc +++ b/rules/S4818/php/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4818/python/rule.adoc b/rules/S4818/python/rule.adoc index 5df074fa46..aff4d57882 100644 --- a/rules/S4818/python/rule.adoc +++ b/rules/S4818/python/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4818/vbnet/rule.adoc b/rules/S4818/vbnet/rule.adoc index a504e4ebbe..d1d9f8218f 100644 --- a/rules/S4818/vbnet/rule.adoc +++ b/rules/S4818/vbnet/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4823/php/rule.adoc b/rules/S4823/php/rule.adoc index dec68641e8..803f8c1a01 100644 --- a/rules/S4823/php/rule.adoc +++ b/rules/S4823/php/rule.adoc @@ -74,4 +74,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4823/python/rule.adoc b/rules/S4823/python/rule.adoc index 52393c00b0..184990d2e2 100644 --- a/rules/S4823/python/rule.adoc +++ b/rules/S4823/python/rule.adoc @@ -31,4 +31,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4823/vbnet/rule.adoc b/rules/S4823/vbnet/rule.adoc index bdf319843c..6c0afe0e4e 100644 --- a/rules/S4823/vbnet/rule.adoc +++ b/rules/S4823/vbnet/rule.adoc @@ -36,4 +36,5 @@ secondaries: references to ``++args++``. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4825/csharp/rule.adoc b/rules/S4825/csharp/rule.adoc index 0cdf96d249..00db2e3b5f 100644 --- a/rules/S4825/csharp/rule.adoc +++ b/rules/S4825/csharp/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4825/python/rule.adoc b/rules/S4825/python/rule.adoc index cff881ad67..7d881c2e55 100644 --- a/rules/S4825/python/rule.adoc +++ b/rules/S4825/python/rule.adoc @@ -93,4 +93,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4825/vbnet/rule.adoc b/rules/S4825/vbnet/rule.adoc index d5efd4ad67..463755854c 100644 --- a/rules/S4825/vbnet/rule.adoc +++ b/rules/S4825/vbnet/rule.adoc @@ -52,4 +52,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4828/cfamily/rule.adoc b/rules/S4828/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S4828/cfamily/rule.adoc +++ b/rules/S4828/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4828/go/rule.adoc b/rules/S4828/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S4828/go/rule.adoc +++ b/rules/S4828/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4828/javascript/rule.adoc b/rules/S4828/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S4828/javascript/rule.adoc +++ b/rules/S4828/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4828/php/rule.adoc b/rules/S4828/php/rule.adoc index 72984253c1..3bb3451415 100644 --- a/rules/S4828/php/rule.adoc +++ b/rules/S4828/php/rule.adoc @@ -26,6 +26,7 @@ if (isValidPid($targetPid)) { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4828/python/rule.adoc b/rules/S4828/python/rule.adoc index e527857984..ccf2d221d4 100644 --- a/rules/S4828/python/rule.adoc +++ b/rules/S4828/python/rule.adoc @@ -42,6 +42,7 @@ def send_signal(pgid): ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4828/ruby/rule.adoc b/rules/S4828/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S4828/ruby/rule.adoc +++ b/rules/S4828/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4829/java/rule.adoc b/rules/S4829/java/rule.adoc index 25c446e344..c0ce5e652c 100644 --- a/rules/S4829/java/rule.adoc +++ b/rules/S4829/java/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4829/php/rule.adoc b/rules/S4829/php/rule.adoc index caaa6556d2..198e391972 100644 --- a/rules/S4829/php/rule.adoc +++ b/rules/S4829/php/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4829/python/rule.adoc b/rules/S4829/python/rule.adoc index 6201bd46b3..1224feff12 100644 --- a/rules/S4829/python/rule.adoc +++ b/rules/S4829/python/rule.adoc @@ -74,4 +74,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4829/vbnet/rule.adoc b/rules/S4829/vbnet/rule.adoc index f7c896a15d..d2da7a4bf0 100644 --- a/rules/S4829/vbnet/rule.adoc +++ b/rules/S4829/vbnet/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4830/cfamily/rule.adoc b/rules/S4830/cfamily/rule.adoc index 7f12cfc6c6..2ea47dd515 100644 --- a/rules/S4830/cfamily/rule.adoc +++ b/rules/S4830/cfamily/rule.adoc @@ -33,5 +33,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4830/csharp/rule.adoc b/rules/S4830/csharp/rule.adoc index a404bffe55..e1a5b9cd8c 100644 --- a/rules/S4830/csharp/rule.adoc +++ b/rules/S4830/csharp/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4830/docker/rule.adoc b/rules/S4830/docker/rule.adoc index f55dff0b1b..165d445dde 100644 --- a/rules/S4830/docker/rule.adoc +++ b/rules/S4830/docker/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4830/java/rule.adoc b/rules/S4830/java/rule.adoc index 8eda292ffa..67a7d4a494 100644 --- a/rules/S4830/java/rule.adoc +++ b/rules/S4830/java/rule.adoc @@ -29,5 +29,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4830/javascript/rule.adoc b/rules/S4830/javascript/rule.adoc index 0649de42de..1078420553 100644 --- a/rules/S4830/javascript/rule.adoc +++ b/rules/S4830/javascript/rule.adoc @@ -31,5 +31,6 @@ include::highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4830/kotlin/rule.adoc b/rules/S4830/kotlin/rule.adoc index 8eda292ffa..67a7d4a494 100644 --- a/rules/S4830/kotlin/rule.adoc +++ b/rules/S4830/kotlin/rule.adoc @@ -29,5 +29,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4830/php/rule.adoc b/rules/S4830/php/rule.adoc index eda23e7e2c..21ef8e633c 100644 --- a/rules/S4830/php/rule.adoc +++ b/rules/S4830/php/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4830/python/rule.adoc b/rules/S4830/python/rule.adoc index b4ebb85794..b1f88487b1 100644 --- a/rules/S4830/python/rule.adoc +++ b/rules/S4830/python/rule.adoc @@ -31,5 +31,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4830/vbnet/rule.adoc b/rules/S4830/vbnet/rule.adoc index a404bffe55..e1a5b9cd8c 100644 --- a/rules/S4830/vbnet/rule.adoc +++ b/rules/S4830/vbnet/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S4834/php/rule.adoc b/rules/S4834/php/rule.adoc index 123765c2d8..a40bdacfc6 100644 --- a/rules/S4834/php/rule.adoc +++ b/rules/S4834/php/rule.adoc @@ -25,6 +25,7 @@ abstract class MyController extends Controller { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4834/python/rule.adoc b/rules/S4834/python/rule.adoc index 77acd841ef..daa8090298 100644 --- a/rules/S4834/python/rule.adoc +++ b/rules/S4834/python/rule.adoc @@ -81,6 +81,7 @@ class MyView(PermissionRequiredMixin, View): ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4834/vbnet/rule.adoc b/rules/S4834/vbnet/rule.adoc index 12b99ec13c..af4132107b 100644 --- a/rules/S4834/vbnet/rule.adoc +++ b/rules/S4834/vbnet/rule.adoc @@ -49,6 +49,7 @@ End Class ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S4970/java/rule.adoc b/rules/S4970/java/rule.adoc index 812efedd86..abca9ee000 100644 --- a/rules/S4970/java/rule.adoc +++ b/rules/S4970/java/rule.adoc @@ -67,4 +67,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5042/csharp/rule.adoc b/rules/S5042/csharp/rule.adoc index 13dc34f336..04fdb6a829 100644 --- a/rules/S5042/csharp/rule.adoc +++ b/rules/S5042/csharp/rule.adoc @@ -79,4 +79,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5042/javascript/rule.adoc b/rules/S5042/javascript/rule.adoc index 448e65c55d..9ef6a00554 100644 --- a/rules/S5042/javascript/rule.adoc +++ b/rules/S5042/javascript/rule.adoc @@ -303,4 +303,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5042/php/rule.adoc b/rules/S5042/php/rule.adoc index 0d0ed13ed8..9fa8ac0591 100644 --- a/rules/S5042/php/rule.adoc +++ b/rules/S5042/php/rule.adoc @@ -173,4 +173,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5042/python/rule.adoc b/rules/S5042/python/rule.adoc index a238ffc7ac..f60f34e575 100644 --- a/rules/S5042/python/rule.adoc +++ b/rules/S5042/python/rule.adoc @@ -126,4 +126,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5042/vbnet/rule.adoc b/rules/S5042/vbnet/rule.adoc index aa90654566..29317beefc 100644 --- a/rules/S5042/vbnet/rule.adoc +++ b/rules/S5042/vbnet/rule.adoc @@ -59,4 +59,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5122/go/rule.adoc b/rules/S5122/go/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S5122/go/rule.adoc +++ b/rules/S5122/go/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5122/php/rule.adoc b/rules/S5122/php/rule.adoc index efa8e7964e..d3748d5685 100644 --- a/rules/S5122/php/rule.adoc +++ b/rules/S5122/php/rule.adoc @@ -105,4 +105,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5122/python/rule.adoc b/rules/S5122/python/rule.adoc index bfdcf2e85c..3568f668cf 100644 --- a/rules/S5122/python/rule.adoc +++ b/rules/S5122/python/rule.adoc @@ -78,4 +78,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5122/ruby/rule.adoc b/rules/S5122/ruby/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S5122/ruby/rule.adoc +++ b/rules/S5122/ruby/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5122/scala/rule.adoc b/rules/S5122/scala/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S5122/scala/rule.adoc +++ b/rules/S5122/scala/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5122/vbnet/rule.adoc b/rules/S5122/vbnet/rule.adoc index 16bb032e5c..c6115859c5 100644 --- a/rules/S5122/vbnet/rule.adoc +++ b/rules/S5122/vbnet/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5122/xml/rule.adoc b/rules/S5122/xml/rule.adoc index 7b53039cf7..1fc0765aa8 100644 --- a/rules/S5122/xml/rule.adoc +++ b/rules/S5122/xml/rule.adoc @@ -50,4 +50,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5131/csharp/rule.adoc b/rules/S5131/csharp/rule.adoc index f1f7709ecf..9e4d45ac6e 100644 --- a/rules/S5131/csharp/rule.adoc +++ b/rules/S5131/csharp/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5131/java/rule.adoc b/rules/S5131/java/rule.adoc index 5e150a780b..9e62f549bd 100644 --- a/rules/S5131/java/rule.adoc +++ b/rules/S5131/java/rule.adoc @@ -19,6 +19,7 @@ include::how-to-fix-it/thymeleaf.adoc[] == Resources include::../common/resources/docs.adoc[] + * https://javadoc.io/doc/org.owasp.encoder/encoder/latest/index.html[OWASP Encoder] * https://spring.io/guides/gs/securing-web/[Spring.io, Securing a Web Application] * https://www.thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html[Thymeleaf.org, Tutorial: Using Thymeleaf] @@ -45,4 +46,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5131/javascript/rule.adoc b/rules/S5131/javascript/rule.adoc index 45ffb1d735..0b7736b50b 100644 --- a/rules/S5131/javascript/rule.adoc +++ b/rules/S5131/javascript/rule.adoc @@ -37,4 +37,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5131/php/rule.adoc b/rules/S5131/php/rule.adoc index 54b59f9100..c483ed0237 100644 --- a/rules/S5131/php/rule.adoc +++ b/rules/S5131/php/rule.adoc @@ -39,4 +39,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5131/python/rule.adoc b/rules/S5131/python/rule.adoc index 48f032d689..4a560b9f00 100644 --- a/rules/S5131/python/rule.adoc +++ b/rules/S5131/python/rule.adoc @@ -19,6 +19,7 @@ include::how-to-fix-it/jinja.adoc[] == Resources include::../common/resources/docs.adoc[] + * https://docs.djangoproject.com/en/4.0/ref/request-response/[Django Project, Request and response objects (Django 4.0)] * https://docs.djangoproject.com/en/4.0/ref/templates/builtins[Django, Built-in template tags and filters] * https://flask.palletsprojects.com/en/2.1.x/security/?highlight=xss#cross-site-scripting-xss[Flask, Security Considerations] @@ -45,4 +46,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5144/php/rule.adoc b/rules/S5144/php/rule.adoc index 469c6e09d2..daa2c45996 100644 --- a/rules/S5144/php/rule.adoc +++ b/rules/S5144/php/rule.adoc @@ -7,6 +7,7 @@ include::../impact.adoc[] // How to fix it section include::how-to-fix-it/core.adoc[] + include::how-to-fix-it/guzzle.adoc[] == Resources diff --git a/rules/S5144/python/rule.adoc b/rules/S5144/python/rule.adoc index 14901cc14b..5e54bd6d12 100644 --- a/rules/S5144/python/rule.adoc +++ b/rules/S5144/python/rule.adoc @@ -7,6 +7,7 @@ include::../impact.adoc[] // How to fix it section include::how-to-fix-it/python.adoc[] + include::how-to-fix-it/requests.adoc[] == Resources diff --git a/rules/S5148/html/rule.adoc b/rules/S5148/html/rule.adoc index 47f9732032..181b8e32dc 100644 --- a/rules/S5148/html/rule.adoc +++ b/rules/S5148/html/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5148/javascript/rule.adoc b/rules/S5148/javascript/rule.adoc index dbb1be5434..b73d27c34b 100644 --- a/rules/S5148/javascript/rule.adoc +++ b/rules/S5148/javascript/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5167/csharp/rule.adoc b/rules/S5167/csharp/rule.adoc index 05a83dea23..d1094358e8 100644 --- a/rules/S5167/csharp/rule.adoc +++ b/rules/S5167/csharp/rule.adoc @@ -24,6 +24,7 @@ Response.AddHeader("X-Header", value); ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5167/java/rule.adoc b/rules/S5167/java/rule.adoc index cc35f952f4..3f1dabbd61 100644 --- a/rules/S5167/java/rule.adoc +++ b/rules/S5167/java/rule.adoc @@ -28,6 +28,7 @@ protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws IO ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5167/php/rule.adoc b/rules/S5167/php/rule.adoc index b236ec8c43..2ffeecc8b6 100644 --- a/rules/S5167/php/rule.adoc +++ b/rules/S5167/php/rule.adoc @@ -23,6 +23,7 @@ if (ctype_alnum($value)) { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5167/python/rule.adoc b/rules/S5167/python/rule.adoc index 70f9f3f679..1abf198c25 100644 --- a/rules/S5167/python/rule.adoc +++ b/rules/S5167/python/rule.adoc @@ -76,6 +76,7 @@ def route(request): ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5245/plsql/rule.adoc b/rules/S5245/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5245/plsql/rule.adoc +++ b/rules/S5245/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5247/abap/rule.adoc b/rules/S5247/abap/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/abap/rule.adoc +++ b/rules/S5247/abap/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/apex/rule.adoc b/rules/S5247/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/apex/rule.adoc +++ b/rules/S5247/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/cfamily/rule.adoc b/rules/S5247/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/cfamily/rule.adoc +++ b/rules/S5247/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/cobol/rule.adoc b/rules/S5247/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/cobol/rule.adoc +++ b/rules/S5247/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/csharp/rule.adoc b/rules/S5247/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/csharp/rule.adoc +++ b/rules/S5247/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/css/rule.adoc b/rules/S5247/css/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/css/rule.adoc +++ b/rules/S5247/css/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/flex/rule.adoc b/rules/S5247/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/flex/rule.adoc +++ b/rules/S5247/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/go/rule.adoc b/rules/S5247/go/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/go/rule.adoc +++ b/rules/S5247/go/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/kotlin/rule.adoc b/rules/S5247/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/kotlin/rule.adoc +++ b/rules/S5247/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/pli/rule.adoc b/rules/S5247/pli/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/pli/rule.adoc +++ b/rules/S5247/pli/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/plsql/rule.adoc b/rules/S5247/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/plsql/rule.adoc +++ b/rules/S5247/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/python/rule.adoc b/rules/S5247/python/rule.adoc index 5b36980998..69e2679b1a 100644 --- a/rules/S5247/python/rule.adoc +++ b/rules/S5247/python/rule.adoc @@ -36,4 +36,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/rpg/rule.adoc b/rules/S5247/rpg/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/rpg/rule.adoc +++ b/rules/S5247/rpg/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/ruby/rule.adoc b/rules/S5247/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/ruby/rule.adoc +++ b/rules/S5247/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/rust/rule.adoc b/rules/S5247/rust/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/rust/rule.adoc +++ b/rules/S5247/rust/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/scala/rule.adoc b/rules/S5247/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/scala/rule.adoc +++ b/rules/S5247/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/solidity/rule.adoc b/rules/S5247/solidity/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/solidity/rule.adoc +++ b/rules/S5247/solidity/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/swift/rule.adoc b/rules/S5247/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/swift/rule.adoc +++ b/rules/S5247/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/tsql/rule.adoc b/rules/S5247/tsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/tsql/rule.adoc +++ b/rules/S5247/tsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/vb6/rule.adoc b/rules/S5247/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/vb6/rule.adoc +++ b/rules/S5247/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5247/vbnet/rule.adoc b/rules/S5247/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5247/vbnet/rule.adoc +++ b/rules/S5247/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5261/cfamily/rule.adoc b/rules/S5261/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5261/cfamily/rule.adoc +++ b/rules/S5261/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5261/java/rule.adoc b/rules/S5261/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5261/java/rule.adoc +++ b/rules/S5261/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5300/java/rule.adoc b/rules/S5300/java/rule.adoc index bdf5755664..d439aa8149 100644 --- a/rules/S5300/java/rule.adoc +++ b/rules/S5300/java/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5320/java/rule.adoc b/rules/S5320/java/rule.adoc index 8a45d49165..c890f40041 100644 --- a/rules/S5320/java/rule.adoc +++ b/rules/S5320/java/rule.adoc @@ -79,4 +79,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5320/kotlin/rule.adoc b/rules/S5320/kotlin/rule.adoc index ea87cccfb0..8efeed9908 100644 --- a/rules/S5320/kotlin/rule.adoc +++ b/rules/S5320/kotlin/rule.adoc @@ -85,4 +85,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5322/java/rule.adoc b/rules/S5322/java/rule.adoc index 614ba15712..1c402176ee 100644 --- a/rules/S5322/java/rule.adoc +++ b/rules/S5322/java/rule.adoc @@ -59,6 +59,7 @@ public class MyIntentReceiver { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5322/kotlin/rule.adoc b/rules/S5322/kotlin/rule.adoc index 6de6e322e0..ffcc2d9542 100644 --- a/rules/S5322/kotlin/rule.adoc +++ b/rules/S5322/kotlin/rule.adoc @@ -59,6 +59,7 @@ class MyIntentReceiver { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5322/xml/rule.adoc b/rules/S5322/xml/rule.adoc index 9bc9816a13..b644c4bf3f 100644 --- a/rules/S5322/xml/rule.adoc +++ b/rules/S5322/xml/rule.adoc @@ -42,6 +42,7 @@ Do not export the receiver and only receive system intents: ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5324/java/rule.adoc b/rules/S5324/java/rule.adoc index e3e8e9683d..6106728a47 100644 --- a/rules/S5324/java/rule.adoc +++ b/rules/S5324/java/rule.adoc @@ -46,5 +46,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5324/kotlin/rule.adoc b/rules/S5324/kotlin/rule.adoc index 37993d60a6..58dbf9a5c2 100644 --- a/rules/S5324/kotlin/rule.adoc +++ b/rules/S5324/kotlin/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5332/cfamily/rule.adoc b/rules/S5332/cfamily/rule.adoc index 35756a41c1..da41f3e947 100644 --- a/rules/S5332/cfamily/rule.adoc +++ b/rules/S5332/cfamily/rule.adoc @@ -49,6 +49,7 @@ curl_easy_setopt(curl_smtp_tls, CURLOPT_USE_SSL, CURLUSESSL_ALL); // SMTP with S include::../exceptions.adoc[] include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5332/csharp/rule.adoc b/rules/S5332/csharp/rule.adoc index 06afc5cad7..c2b6dabf68 100644 --- a/rules/S5332/csharp/rule.adoc +++ b/rules/S5332/csharp/rule.adoc @@ -37,6 +37,7 @@ using var ssh = new MySsh.Client("host", port); include::../exceptions.adoc[] include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5332/java/rule.adoc b/rules/S5332/java/rule.adoc index 277a37239a..6ddd1d2fcf 100644 --- a/rules/S5332/java/rule.adoc +++ b/rules/S5332/java/rule.adoc @@ -84,6 +84,7 @@ webView.getSettings().setMixedContentMode(MIXED_CONTENT_NEVER_ALLOW); include::../exceptions.adoc[] include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5332/javascript/rule.adoc b/rules/S5332/javascript/rule.adoc index dfd7fdcbf4..cb44dd7e9a 100644 --- a/rules/S5332/javascript/rule.adoc +++ b/rules/S5332/javascript/rule.adoc @@ -470,6 +470,7 @@ new CfnStream(this, 'cfnstream-explicit-encrypted', { include::../exceptions.adoc[] include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5332/kotlin/rule.adoc b/rules/S5332/kotlin/rule.adoc index 97f8777328..ce0d68895d 100644 --- a/rules/S5332/kotlin/rule.adoc +++ b/rules/S5332/kotlin/rule.adoc @@ -84,6 +84,7 @@ webView.getSettings().setMixedContentMode(MIXED_CONTENT_NEVER_ALLOW) include::../exceptions.adoc[] include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5332/php/rule.adoc b/rules/S5332/php/rule.adoc index 8b1f5b0b4a..e10f9fb7ce 100644 --- a/rules/S5332/php/rule.adoc +++ b/rules/S5332/php/rule.adoc @@ -46,6 +46,7 @@ define( 'FORCE_SSL_LOGIN', true); include::../exceptions.adoc[] include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5332/python/rule.adoc b/rules/S5332/python/rule.adoc index f75c326e9a..6c346b32a7 100644 --- a/rules/S5332/python/rule.adoc +++ b/rules/S5332/python/rule.adoc @@ -635,6 +635,7 @@ stream = kinesis.Stream( include::../exceptions.adoc[] include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5332/ruby/rule.adoc b/rules/S5332/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5332/ruby/rule.adoc +++ b/rules/S5332/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5332/scala/rule.adoc b/rules/S5332/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5332/scala/rule.adoc +++ b/rules/S5332/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5332/swift/rule.adoc b/rules/S5332/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5332/swift/rule.adoc +++ b/rules/S5332/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5332/vbnet/rule.adoc b/rules/S5332/vbnet/rule.adoc index 93d7806e04..15d5366a6c 100644 --- a/rules/S5332/vbnet/rule.adoc +++ b/rules/S5332/vbnet/rule.adoc @@ -41,6 +41,7 @@ End Using include::../exceptions.adoc[] include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5332/xml/rule.adoc b/rules/S5332/xml/rule.adoc index a0efa8008b..ec09b84468 100644 --- a/rules/S5332/xml/rule.adoc +++ b/rules/S5332/xml/rule.adoc @@ -32,6 +32,7 @@ is implicitely set to ``++true++``. ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5334/csharp/rule.adoc b/rules/S5334/csharp/rule.adoc index a001f55bed..6666e0b34f 100644 --- a/rules/S5334/csharp/rule.adoc +++ b/rules/S5334/csharp/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5334/java/rule.adoc b/rules/S5334/java/rule.adoc index 9b64839796..c50eb45077 100644 --- a/rules/S5334/java/rule.adoc +++ b/rules/S5334/java/rule.adoc @@ -36,5 +36,6 @@ the returned value is tainted (returns & method invocations results) (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5334/javascript/rule.adoc b/rules/S5334/javascript/rule.adoc index 8500488c19..b655cf2fdc 100644 --- a/rules/S5334/javascript/rule.adoc +++ b/rules/S5334/javascript/rule.adoc @@ -29,5 +29,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5334/php/rule.adoc b/rules/S5334/php/rule.adoc index 2834ceee48..5bd43f1a5a 100644 --- a/rules/S5334/php/rule.adoc +++ b/rules/S5334/php/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5334/python/rule.adoc b/rules/S5334/python/rule.adoc index 44c4033985..0b80188bf4 100644 --- a/rules/S5334/python/rule.adoc +++ b/rules/S5334/python/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5344/cfamily/rule.adoc b/rules/S5344/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5344/cfamily/rule.adoc +++ b/rules/S5344/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5344/csharp/rule.adoc b/rules/S5344/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5344/csharp/rule.adoc +++ b/rules/S5344/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5344/java/rule.adoc b/rules/S5344/java/rule.adoc index 8fee3fa33a..b1c49c13c8 100644 --- a/rules/S5344/java/rule.adoc +++ b/rules/S5344/java/rule.adoc @@ -56,4 +56,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5344/javascript/rule.adoc b/rules/S5344/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5344/javascript/rule.adoc +++ b/rules/S5344/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5344/kotlin/rule.adoc b/rules/S5344/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5344/kotlin/rule.adoc +++ b/rules/S5344/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5344/php/rule.adoc b/rules/S5344/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5344/php/rule.adoc +++ b/rules/S5344/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5344/python/rule.adoc b/rules/S5344/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5344/python/rule.adoc +++ b/rules/S5344/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5344/vb6/rule.adoc b/rules/S5344/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5344/vb6/rule.adoc +++ b/rules/S5344/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5344/vbnet/rule.adoc b/rules/S5344/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5344/vbnet/rule.adoc +++ b/rules/S5344/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5359/cfamily/rule.adoc b/rules/S5359/cfamily/rule.adoc index 8658008b25..861088a367 100644 --- a/rules/S5359/cfamily/rule.adoc +++ b/rules/S5359/cfamily/rule.adoc @@ -18,4 +18,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5443/cfamily/rule.adoc b/rules/S5443/cfamily/rule.adoc index 13197f2a53..59184f2325 100644 --- a/rules/S5443/cfamily/rule.adoc +++ b/rules/S5443/cfamily/rule.adoc @@ -56,4 +56,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5443/csharp/rule.adoc b/rules/S5443/csharp/rule.adoc index e3405f152f..87439fdaeb 100644 --- a/rules/S5443/csharp/rule.adoc +++ b/rules/S5443/csharp/rule.adoc @@ -73,4 +73,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5443/java/rule.adoc b/rules/S5443/java/rule.adoc index 4732d6a7d2..d829d0b654 100644 --- a/rules/S5443/java/rule.adoc +++ b/rules/S5443/java/rule.adoc @@ -54,4 +54,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5443/javascript/rule.adoc b/rules/S5443/javascript/rule.adoc index 010eed656a..6bde15b003 100644 --- a/rules/S5443/javascript/rule.adoc +++ b/rules/S5443/javascript/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5443/python/rule.adoc b/rules/S5443/python/rule.adoc index 8c594774cc..77978a86c5 100644 --- a/rules/S5443/python/rule.adoc +++ b/rules/S5443/python/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5443/vbnet/rule.adoc b/rules/S5443/vbnet/rule.adoc index f980e7f101..0399223bce 100644 --- a/rules/S5443/vbnet/rule.adoc +++ b/rules/S5443/vbnet/rule.adoc @@ -78,4 +78,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5445/csharp/rule.adoc b/rules/S5445/csharp/rule.adoc index ebd178f682..6852effc25 100644 --- a/rules/S5445/csharp/rule.adoc +++ b/rules/S5445/csharp/rule.adoc @@ -65,4 +65,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5445/java/rule.adoc b/rules/S5445/java/rule.adoc index a2eebde195..8f29c2e56a 100644 --- a/rules/S5445/java/rule.adoc +++ b/rules/S5445/java/rule.adoc @@ -52,4 +52,5 @@ Use "Files.createTempDirectory" to create this directory instead. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5445/python/rule.adoc b/rules/S5445/python/rule.adoc index f6abb22464..ff92b95d7f 100644 --- a/rules/S5445/python/rule.adoc +++ b/rules/S5445/python/rule.adoc @@ -55,4 +55,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5445/vbnet/rule.adoc b/rules/S5445/vbnet/rule.adoc index 43c2fdea97..badbb6753f 100644 --- a/rules/S5445/vbnet/rule.adoc +++ b/rules/S5445/vbnet/rule.adoc @@ -53,4 +53,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/abap/rule.adoc b/rules/S5527/abap/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/abap/rule.adoc +++ b/rules/S5527/abap/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/apex/rule.adoc b/rules/S5527/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/apex/rule.adoc +++ b/rules/S5527/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/cfamily/rule.adoc b/rules/S5527/cfamily/rule.adoc index e9dc3c00c6..50aa7c108c 100644 --- a/rules/S5527/cfamily/rule.adoc +++ b/rules/S5527/cfamily/rule.adoc @@ -175,4 +175,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/cobol/rule.adoc b/rules/S5527/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/cobol/rule.adoc +++ b/rules/S5527/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/css/rule.adoc b/rules/S5527/css/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/css/rule.adoc +++ b/rules/S5527/css/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/flex/rule.adoc b/rules/S5527/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/flex/rule.adoc +++ b/rules/S5527/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/go/rule.adoc b/rules/S5527/go/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/go/rule.adoc +++ b/rules/S5527/go/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/html/rule.adoc b/rules/S5527/html/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/html/rule.adoc +++ b/rules/S5527/html/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/java/rule.adoc b/rules/S5527/java/rule.adoc index f26732f9d5..a026b58a1b 100644 --- a/rules/S5527/java/rule.adoc +++ b/rules/S5527/java/rule.adoc @@ -121,4 +121,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/javascript/rule.adoc b/rules/S5527/javascript/rule.adoc index b60c13e0c3..4392436ee9 100644 --- a/rules/S5527/javascript/rule.adoc +++ b/rules/S5527/javascript/rule.adoc @@ -125,4 +125,5 @@ When ``++https.request++``|``++request.get++``|``++tls.connect++`` is used: (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/kotlin/rule.adoc b/rules/S5527/kotlin/rule.adoc index 0cdf351de3..2f47005b18 100644 --- a/rules/S5527/kotlin/rule.adoc +++ b/rules/S5527/kotlin/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/php/rule.adoc b/rules/S5527/php/rule.adoc index a2e5582969..9d577cddfe 100644 --- a/rules/S5527/php/rule.adoc +++ b/rules/S5527/php/rule.adoc @@ -33,4 +33,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/pli/rule.adoc b/rules/S5527/pli/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/pli/rule.adoc +++ b/rules/S5527/pli/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/plsql/rule.adoc b/rules/S5527/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/plsql/rule.adoc +++ b/rules/S5527/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/python/rule.adoc b/rules/S5527/python/rule.adoc index d9eda39775..7087689f05 100644 --- a/rules/S5527/python/rule.adoc +++ b/rules/S5527/python/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/rpg/rule.adoc b/rules/S5527/rpg/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/rpg/rule.adoc +++ b/rules/S5527/rpg/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/ruby/rule.adoc b/rules/S5527/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/ruby/rule.adoc +++ b/rules/S5527/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/rust/rule.adoc b/rules/S5527/rust/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/rust/rule.adoc +++ b/rules/S5527/rust/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/scala/rule.adoc b/rules/S5527/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/scala/rule.adoc +++ b/rules/S5527/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/solidity/rule.adoc b/rules/S5527/solidity/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/solidity/rule.adoc +++ b/rules/S5527/solidity/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/swift/rule.adoc b/rules/S5527/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/swift/rule.adoc +++ b/rules/S5527/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/tsql/rule.adoc b/rules/S5527/tsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/tsql/rule.adoc +++ b/rules/S5527/tsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/vb6/rule.adoc b/rules/S5527/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/vb6/rule.adoc +++ b/rules/S5527/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5527/xml/rule.adoc b/rules/S5527/xml/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5527/xml/rule.adoc +++ b/rules/S5527/xml/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5542/cfamily/rule.adoc b/rules/S5542/cfamily/rule.adoc index 2904a58051..8dbccea7c8 100644 --- a/rules/S5542/cfamily/rule.adoc +++ b/rules/S5542/cfamily/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5542/java/rule.adoc b/rules/S5542/java/rule.adoc index a25345cb06..3b8bdb6257 100644 --- a/rules/S5542/java/rule.adoc +++ b/rules/S5542/java/rule.adoc @@ -20,6 +20,7 @@ include::../common/resources/articles.adoc[] include::../common/resources/presentations.adoc[] include::../common/resources/standards.adoc[] + * https://mobile-security.gitbook.io/masvs/security-requirements/0x08-v3-cryptography_verification_requirements[Mobile AppSec Verification Standard] - Cryptography Requirements * https://owasp.org/www-project-mobile-top-10/2016-risks/m5-insufficient-cryptography[OWASP Mobile Top 10 2016 Category M5] - Insufficient Cryptography * https://cwe.mitre.org/data/definitions/327[MITRE, CWE-327] - Use of a Broken or Risky Cryptographic Algorithm diff --git a/rules/S5542/kotlin/rule.adoc b/rules/S5542/kotlin/rule.adoc index 298bf337a8..19bb1b7c11 100644 --- a/rules/S5542/kotlin/rule.adoc +++ b/rules/S5542/kotlin/rule.adoc @@ -20,6 +20,7 @@ include::../common/resources/articles.adoc[] include::../common/resources/presentations.adoc[] include::../common/resources/standards.adoc[] + * https://mobile-security.gitbook.io/masvs/security-requirements/0x08-v3-cryptography_verification_requirements[Mobile AppSec Verification Standard] - Cryptography Requirements * https://owasp.org/www-project-mobile-top-10/2016-risks/m5-insufficient-cryptography[OWASP Mobile Top 10 2016 Category M5] - Insufficient Cryptography * https://cwe.mitre.org/data/definitions/327[MITRE, CWE-327] - Use of a Broken or Risky Cryptographic Algorithm diff --git a/rules/S5542/python/rule.adoc b/rules/S5542/python/rule.adoc index e34f8f5ab5..c518010bb7 100644 --- a/rules/S5542/python/rule.adoc +++ b/rules/S5542/python/rule.adoc @@ -8,6 +8,7 @@ include::../rationale.adoc[] include::../impact.adoc[] // How to fix it section + include::how-to-fix-it/pycrypto.adoc[] include::how-to-fix-it/pyca.adoc[] diff --git a/rules/S5547/cfamily/rule.adoc b/rules/S5547/cfamily/rule.adoc index 2b1d42609c..d7dbb32e35 100644 --- a/rules/S5547/cfamily/rule.adoc +++ b/rules/S5547/cfamily/rule.adoc @@ -33,5 +33,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5547/csharp/rule.adoc b/rules/S5547/csharp/rule.adoc index 68b2ac54c1..1f9b6cb50a 100644 --- a/rules/S5547/csharp/rule.adoc +++ b/rules/S5547/csharp/rule.adoc @@ -29,5 +29,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5547/java/rule.adoc b/rules/S5547/java/rule.adoc index 00bc900a88..9b76adf8c7 100644 --- a/rules/S5547/java/rule.adoc +++ b/rules/S5547/java/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5547/javascript/rule.adoc b/rules/S5547/javascript/rule.adoc index a4f62373f9..b0e377ee03 100644 --- a/rules/S5547/javascript/rule.adoc +++ b/rules/S5547/javascript/rule.adoc @@ -27,5 +27,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5547/kotlin/rule.adoc b/rules/S5547/kotlin/rule.adoc index eb574a36ed..466c5b8eae 100644 --- a/rules/S5547/kotlin/rule.adoc +++ b/rules/S5547/kotlin/rule.adoc @@ -30,5 +30,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5547/php/rule.adoc b/rules/S5547/php/rule.adoc index b44af66f39..e483f6c560 100644 --- a/rules/S5547/php/rule.adoc +++ b/rules/S5547/php/rule.adoc @@ -29,5 +29,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5547/python/rule.adoc b/rules/S5547/python/rule.adoc index e8b08a1f31..f8bbbcda6f 100644 --- a/rules/S5547/python/rule.adoc +++ b/rules/S5547/python/rule.adoc @@ -33,5 +33,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5547/swift/rule.adoc b/rules/S5547/swift/rule.adoc index 91d657d807..8d2755a9a5 100644 --- a/rules/S5547/swift/rule.adoc +++ b/rules/S5547/swift/rule.adoc @@ -31,5 +31,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5547/vbnet/rule.adoc b/rules/S5547/vbnet/rule.adoc index 68b2ac54c1..1f9b6cb50a 100644 --- a/rules/S5547/vbnet/rule.adoc +++ b/rules/S5547/vbnet/rule.adoc @@ -29,5 +29,6 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5632/php/rule.adoc b/rules/S5632/php/rule.adoc index 826c9c5a2c..ab62f88e16 100644 --- a/rules/S5632/php/rule.adoc +++ b/rules/S5632/php/rule.adoc @@ -57,4 +57,5 @@ Throw an object derived from "Throwable". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5632/python/rule.adoc b/rules/S5632/python/rule.adoc index 4de7380120..3a1ad1b450 100644 --- a/rules/S5632/python/rule.adoc +++ b/rules/S5632/python/rule.adoc @@ -55,4 +55,5 @@ Change this code so that it raises an object deriving from BaseException. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5659/java/rule.adoc b/rules/S5659/java/rule.adoc index eb133106cb..628dbf398a 100644 --- a/rules/S5659/java/rule.adoc +++ b/rules/S5659/java/rule.adoc @@ -74,4 +74,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5659/javascript/rule.adoc b/rules/S5659/javascript/rule.adoc index e3ff4baed3..82bd0af488 100644 --- a/rules/S5659/javascript/rule.adoc +++ b/rules/S5659/javascript/rule.adoc @@ -50,4 +50,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5659/kotlin/rule.adoc b/rules/S5659/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5659/kotlin/rule.adoc +++ b/rules/S5659/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5659/php/rule.adoc b/rules/S5659/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5659/php/rule.adoc +++ b/rules/S5659/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5659/vbnet/rule.adoc b/rules/S5659/vbnet/rule.adoc index edd71945c1..7eae318afc 100644 --- a/rules/S5659/vbnet/rule.adoc +++ b/rules/S5659/vbnet/rule.adoc @@ -44,4 +44,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5689/abap/rule.adoc b/rules/S5689/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/abap/rule.adoc +++ b/rules/S5689/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/apex/rule.adoc b/rules/S5689/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/apex/rule.adoc +++ b/rules/S5689/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/cfamily/rule.adoc b/rules/S5689/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/cfamily/rule.adoc +++ b/rules/S5689/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/cobol/rule.adoc b/rules/S5689/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/cobol/rule.adoc +++ b/rules/S5689/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/csharp/rule.adoc b/rules/S5689/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/csharp/rule.adoc +++ b/rules/S5689/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/css/rule.adoc b/rules/S5689/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/css/rule.adoc +++ b/rules/S5689/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/flex/rule.adoc b/rules/S5689/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/flex/rule.adoc +++ b/rules/S5689/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/go/rule.adoc b/rules/S5689/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/go/rule.adoc +++ b/rules/S5689/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/html/rule.adoc b/rules/S5689/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/html/rule.adoc +++ b/rules/S5689/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/java/rule.adoc b/rules/S5689/java/rule.adoc index d0717dbc85..361a6074d5 100644 --- a/rules/S5689/java/rule.adoc +++ b/rules/S5689/java/rule.adoc @@ -20,6 +20,7 @@ public ResponseEntity testResponseEntity() { Don't use ``++x-powered-by++`` or ``++Server++`` HTTP header or any other means disclosing fingerprints of the application. include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/javascript/rule.adoc b/rules/S5689/javascript/rule.adoc index 653ab8cc4f..86234af0b5 100644 --- a/rules/S5689/javascript/rule.adoc +++ b/rules/S5689/javascript/rule.adoc @@ -34,6 +34,7 @@ app2.use(helmet.hidePoweredBy()); ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/kotlin/rule.adoc b/rules/S5689/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/kotlin/rule.adoc +++ b/rules/S5689/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/php/rule.adoc b/rules/S5689/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/php/rule.adoc +++ b/rules/S5689/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/pli/rule.adoc b/rules/S5689/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/pli/rule.adoc +++ b/rules/S5689/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/plsql/rule.adoc b/rules/S5689/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/plsql/rule.adoc +++ b/rules/S5689/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/python/rule.adoc b/rules/S5689/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/python/rule.adoc +++ b/rules/S5689/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/rpg/rule.adoc b/rules/S5689/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/rpg/rule.adoc +++ b/rules/S5689/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/ruby/rule.adoc b/rules/S5689/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/ruby/rule.adoc +++ b/rules/S5689/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/rust/rule.adoc b/rules/S5689/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/rust/rule.adoc +++ b/rules/S5689/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/scala/rule.adoc b/rules/S5689/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/scala/rule.adoc +++ b/rules/S5689/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/solidity/rule.adoc b/rules/S5689/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/solidity/rule.adoc +++ b/rules/S5689/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/swift/rule.adoc b/rules/S5689/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/swift/rule.adoc +++ b/rules/S5689/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/tsql/rule.adoc b/rules/S5689/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/tsql/rule.adoc +++ b/rules/S5689/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/vb6/rule.adoc b/rules/S5689/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/vb6/rule.adoc +++ b/rules/S5689/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/vbnet/rule.adoc b/rules/S5689/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/vbnet/rule.adoc +++ b/rules/S5689/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5689/xml/rule.adoc b/rules/S5689/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5689/xml/rule.adoc +++ b/rules/S5689/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/abap/rule.adoc b/rules/S5691/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/abap/rule.adoc +++ b/rules/S5691/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/apex/rule.adoc b/rules/S5691/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/apex/rule.adoc +++ b/rules/S5691/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/cfamily/rule.adoc b/rules/S5691/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/cfamily/rule.adoc +++ b/rules/S5691/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/cobol/rule.adoc b/rules/S5691/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/cobol/rule.adoc +++ b/rules/S5691/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/csharp/rule.adoc b/rules/S5691/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/csharp/rule.adoc +++ b/rules/S5691/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/css/rule.adoc b/rules/S5691/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/css/rule.adoc +++ b/rules/S5691/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/flex/rule.adoc b/rules/S5691/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/flex/rule.adoc +++ b/rules/S5691/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/go/rule.adoc b/rules/S5691/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/go/rule.adoc +++ b/rules/S5691/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/html/rule.adoc b/rules/S5691/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/html/rule.adoc +++ b/rules/S5691/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/java/rule.adoc b/rules/S5691/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/java/rule.adoc +++ b/rules/S5691/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/javascript/rule.adoc b/rules/S5691/javascript/rule.adoc index 34491fb792..e248f2bc20 100644 --- a/rules/S5691/javascript/rule.adoc +++ b/rules/S5691/javascript/rule.adoc @@ -31,6 +31,7 @@ app.use(serveStaticMiddleware); ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/kotlin/rule.adoc b/rules/S5691/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/kotlin/rule.adoc +++ b/rules/S5691/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/php/rule.adoc b/rules/S5691/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/php/rule.adoc +++ b/rules/S5691/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/pli/rule.adoc b/rules/S5691/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/pli/rule.adoc +++ b/rules/S5691/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/plsql/rule.adoc b/rules/S5691/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/plsql/rule.adoc +++ b/rules/S5691/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/python/rule.adoc b/rules/S5691/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/python/rule.adoc +++ b/rules/S5691/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/rpg/rule.adoc b/rules/S5691/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/rpg/rule.adoc +++ b/rules/S5691/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/ruby/rule.adoc b/rules/S5691/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/ruby/rule.adoc +++ b/rules/S5691/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/rust/rule.adoc b/rules/S5691/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/rust/rule.adoc +++ b/rules/S5691/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/scala/rule.adoc b/rules/S5691/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/scala/rule.adoc +++ b/rules/S5691/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/solidity/rule.adoc b/rules/S5691/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/solidity/rule.adoc +++ b/rules/S5691/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/swift/rule.adoc b/rules/S5691/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/swift/rule.adoc +++ b/rules/S5691/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/tsql/rule.adoc b/rules/S5691/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/tsql/rule.adoc +++ b/rules/S5691/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/vb6/rule.adoc b/rules/S5691/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/vb6/rule.adoc +++ b/rules/S5691/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/vbnet/rule.adoc b/rules/S5691/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/vbnet/rule.adoc +++ b/rules/S5691/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5691/xml/rule.adoc b/rules/S5691/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5691/xml/rule.adoc +++ b/rules/S5691/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5693/abap/rule.adoc b/rules/S5693/abap/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/abap/rule.adoc +++ b/rules/S5693/abap/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/apex/rule.adoc b/rules/S5693/apex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/apex/rule.adoc +++ b/rules/S5693/apex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/cfamily/rule.adoc b/rules/S5693/cfamily/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/cfamily/rule.adoc +++ b/rules/S5693/cfamily/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/cobol/rule.adoc b/rules/S5693/cobol/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/cobol/rule.adoc +++ b/rules/S5693/cobol/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/csharp/rule.adoc b/rules/S5693/csharp/rule.adoc index 1ee5419d2b..97f87f31e8 100644 --- a/rules/S5693/csharp/rule.adoc +++ b/rules/S5693/csharp/rule.adoc @@ -122,4 +122,5 @@ The maximum size of HTTP requests handling file uploads (in bytes) (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/css/rule.adoc b/rules/S5693/css/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/css/rule.adoc +++ b/rules/S5693/css/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/flex/rule.adoc b/rules/S5693/flex/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/flex/rule.adoc +++ b/rules/S5693/flex/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/go/rule.adoc b/rules/S5693/go/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/go/rule.adoc +++ b/rules/S5693/go/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/html/rule.adoc b/rules/S5693/html/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/html/rule.adoc +++ b/rules/S5693/html/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/java/rule.adoc b/rules/S5693/java/rule.adoc index 9eabad4a73..caf15a1d28 100644 --- a/rules/S5693/java/rule.adoc +++ b/rules/S5693/java/rule.adoc @@ -74,4 +74,5 @@ The maximum size of HTTP requests handling file uploads (in bytes) (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/javascript/rule.adoc b/rules/S5693/javascript/rule.adoc index fc175b388b..4b6870c63d 100644 --- a/rules/S5693/javascript/rule.adoc +++ b/rules/S5693/javascript/rule.adoc @@ -85,4 +85,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/kotlin/rule.adoc b/rules/S5693/kotlin/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/kotlin/rule.adoc +++ b/rules/S5693/kotlin/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/php/rule.adoc b/rules/S5693/php/rule.adoc index 3def919871..25238cd61f 100644 --- a/rules/S5693/php/rule.adoc +++ b/rules/S5693/php/rule.adoc @@ -99,4 +99,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/pli/rule.adoc b/rules/S5693/pli/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/pli/rule.adoc +++ b/rules/S5693/pli/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/plsql/rule.adoc b/rules/S5693/plsql/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/plsql/rule.adoc +++ b/rules/S5693/plsql/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/python/rule.adoc b/rules/S5693/python/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/python/rule.adoc +++ b/rules/S5693/python/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/rpg/rule.adoc b/rules/S5693/rpg/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/rpg/rule.adoc +++ b/rules/S5693/rpg/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/ruby/rule.adoc b/rules/S5693/ruby/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/ruby/rule.adoc +++ b/rules/S5693/ruby/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/rust/rule.adoc b/rules/S5693/rust/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/rust/rule.adoc +++ b/rules/S5693/rust/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/scala/rule.adoc b/rules/S5693/scala/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/scala/rule.adoc +++ b/rules/S5693/scala/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/solidity/rule.adoc b/rules/S5693/solidity/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/solidity/rule.adoc +++ b/rules/S5693/solidity/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/swift/rule.adoc b/rules/S5693/swift/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/swift/rule.adoc +++ b/rules/S5693/swift/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/tsql/rule.adoc b/rules/S5693/tsql/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/tsql/rule.adoc +++ b/rules/S5693/tsql/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/vb6/rule.adoc b/rules/S5693/vb6/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/vb6/rule.adoc +++ b/rules/S5693/vb6/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/vbnet/rule.adoc b/rules/S5693/vbnet/rule.adoc index 8e0e1a9865..51db2a6faf 100644 --- a/rules/S5693/vbnet/rule.adoc +++ b/rules/S5693/vbnet/rule.adoc @@ -81,4 +81,5 @@ The maximum size of HTTP requests handling file uploads (in bytes) (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5693/xml/rule.adoc b/rules/S5693/xml/rule.adoc index 7b7bb371fd..9987aa501a 100644 --- a/rules/S5693/xml/rule.adoc +++ b/rules/S5693/xml/rule.adoc @@ -15,4 +15,5 @@ include::../parameters.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5708/php/rule.adoc b/rules/S5708/php/rule.adoc index 9b02f2ed9f..ff2fc92c99 100644 --- a/rules/S5708/php/rule.adoc +++ b/rules/S5708/php/rule.adoc @@ -67,4 +67,5 @@ Change this type to be a class deriving from "Throwable". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5708/python/rule.adoc b/rules/S5708/python/rule.adoc index a052c032ef..99634591a6 100644 --- a/rules/S5708/python/rule.adoc +++ b/rules/S5708/python/rule.adoc @@ -76,4 +76,5 @@ The expression which does not resolve in a valid exception class or a tuple of s (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/abap/rule.adoc b/rules/S5725/abap/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/abap/rule.adoc +++ b/rules/S5725/abap/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/apex/rule.adoc b/rules/S5725/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/apex/rule.adoc +++ b/rules/S5725/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/cfamily/rule.adoc b/rules/S5725/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/cfamily/rule.adoc +++ b/rules/S5725/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/cobol/rule.adoc b/rules/S5725/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/cobol/rule.adoc +++ b/rules/S5725/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/csharp/rule.adoc b/rules/S5725/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/csharp/rule.adoc +++ b/rules/S5725/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/css/rule.adoc b/rules/S5725/css/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/css/rule.adoc +++ b/rules/S5725/css/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/flex/rule.adoc b/rules/S5725/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/flex/rule.adoc +++ b/rules/S5725/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/go/rule.adoc b/rules/S5725/go/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/go/rule.adoc +++ b/rules/S5725/go/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/html/rule.adoc b/rules/S5725/html/rule.adoc index f10c21e0c0..05e4d04631 100644 --- a/rules/S5725/html/rule.adoc +++ b/rules/S5725/html/rule.adoc @@ -40,4 +40,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/java/rule.adoc b/rules/S5725/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/java/rule.adoc +++ b/rules/S5725/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/javascript/rule.adoc b/rules/S5725/javascript/rule.adoc index f876f4b3ab..374cc366ca 100644 --- a/rules/S5725/javascript/rule.adoc +++ b/rules/S5725/javascript/rule.adoc @@ -42,4 +42,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/kotlin/rule.adoc b/rules/S5725/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/kotlin/rule.adoc +++ b/rules/S5725/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/php/rule.adoc b/rules/S5725/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/php/rule.adoc +++ b/rules/S5725/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/pli/rule.adoc b/rules/S5725/pli/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/pli/rule.adoc +++ b/rules/S5725/pli/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/plsql/rule.adoc b/rules/S5725/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/plsql/rule.adoc +++ b/rules/S5725/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/python/rule.adoc b/rules/S5725/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/python/rule.adoc +++ b/rules/S5725/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/rpg/rule.adoc b/rules/S5725/rpg/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/rpg/rule.adoc +++ b/rules/S5725/rpg/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/ruby/rule.adoc b/rules/S5725/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/ruby/rule.adoc +++ b/rules/S5725/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/rust/rule.adoc b/rules/S5725/rust/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/rust/rule.adoc +++ b/rules/S5725/rust/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/scala/rule.adoc b/rules/S5725/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/scala/rule.adoc +++ b/rules/S5725/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/solidity/rule.adoc b/rules/S5725/solidity/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/solidity/rule.adoc +++ b/rules/S5725/solidity/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/swift/rule.adoc b/rules/S5725/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/swift/rule.adoc +++ b/rules/S5725/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/tsql/rule.adoc b/rules/S5725/tsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/tsql/rule.adoc +++ b/rules/S5725/tsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/vb6/rule.adoc b/rules/S5725/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/vb6/rule.adoc +++ b/rules/S5725/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/vbnet/rule.adoc b/rules/S5725/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/vbnet/rule.adoc +++ b/rules/S5725/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5725/xml/rule.adoc b/rules/S5725/xml/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5725/xml/rule.adoc +++ b/rules/S5725/xml/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5728/abap/rule.adoc b/rules/S5728/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/abap/rule.adoc +++ b/rules/S5728/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/apex/rule.adoc b/rules/S5728/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/apex/rule.adoc +++ b/rules/S5728/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/cfamily/rule.adoc b/rules/S5728/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/cfamily/rule.adoc +++ b/rules/S5728/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/cobol/rule.adoc b/rules/S5728/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/cobol/rule.adoc +++ b/rules/S5728/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/csharp/rule.adoc b/rules/S5728/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/csharp/rule.adoc +++ b/rules/S5728/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/css/rule.adoc b/rules/S5728/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/css/rule.adoc +++ b/rules/S5728/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/flex/rule.adoc b/rules/S5728/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/flex/rule.adoc +++ b/rules/S5728/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/go/rule.adoc b/rules/S5728/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/go/rule.adoc +++ b/rules/S5728/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/html/rule.adoc b/rules/S5728/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/html/rule.adoc +++ b/rules/S5728/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/java/rule.adoc b/rules/S5728/java/rule.adoc index 04b87cb4ca..a11555ba68 100644 --- a/rules/S5728/java/rule.adoc +++ b/rules/S5728/java/rule.adoc @@ -30,6 +30,7 @@ http ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/javascript/rule.adoc b/rules/S5728/javascript/rule.adoc index 2444991638..0c17f6d713 100644 --- a/rules/S5728/javascript/rule.adoc +++ b/rules/S5728/javascript/rule.adoc @@ -34,6 +34,7 @@ app.use(helmet.contentSecurityPolicy()); // Compliant ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/kotlin/rule.adoc b/rules/S5728/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/kotlin/rule.adoc +++ b/rules/S5728/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/php/rule.adoc b/rules/S5728/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/php/rule.adoc +++ b/rules/S5728/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/pli/rule.adoc b/rules/S5728/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/pli/rule.adoc +++ b/rules/S5728/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/plsql/rule.adoc b/rules/S5728/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/plsql/rule.adoc +++ b/rules/S5728/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/python/rule.adoc b/rules/S5728/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/python/rule.adoc +++ b/rules/S5728/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/rpg/rule.adoc b/rules/S5728/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/rpg/rule.adoc +++ b/rules/S5728/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/ruby/rule.adoc b/rules/S5728/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/ruby/rule.adoc +++ b/rules/S5728/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/rust/rule.adoc b/rules/S5728/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/rust/rule.adoc +++ b/rules/S5728/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/scala/rule.adoc b/rules/S5728/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/scala/rule.adoc +++ b/rules/S5728/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/solidity/rule.adoc b/rules/S5728/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/solidity/rule.adoc +++ b/rules/S5728/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/swift/rule.adoc b/rules/S5728/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/swift/rule.adoc +++ b/rules/S5728/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/tsql/rule.adoc b/rules/S5728/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/tsql/rule.adoc +++ b/rules/S5728/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/vb6/rule.adoc b/rules/S5728/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/vb6/rule.adoc +++ b/rules/S5728/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/vbnet/rule.adoc b/rules/S5728/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/vbnet/rule.adoc +++ b/rules/S5728/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5728/xml/rule.adoc b/rules/S5728/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5728/xml/rule.adoc +++ b/rules/S5728/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/abap/rule.adoc b/rules/S5730/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/abap/rule.adoc +++ b/rules/S5730/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/apex/rule.adoc b/rules/S5730/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/apex/rule.adoc +++ b/rules/S5730/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/cfamily/rule.adoc b/rules/S5730/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/cfamily/rule.adoc +++ b/rules/S5730/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/cobol/rule.adoc b/rules/S5730/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/cobol/rule.adoc +++ b/rules/S5730/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/csharp/rule.adoc b/rules/S5730/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/csharp/rule.adoc +++ b/rules/S5730/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/css/rule.adoc b/rules/S5730/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/css/rule.adoc +++ b/rules/S5730/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/flex/rule.adoc b/rules/S5730/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/flex/rule.adoc +++ b/rules/S5730/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/go/rule.adoc b/rules/S5730/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/go/rule.adoc +++ b/rules/S5730/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/html/rule.adoc b/rules/S5730/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/html/rule.adoc +++ b/rules/S5730/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/java/rule.adoc b/rules/S5730/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/java/rule.adoc +++ b/rules/S5730/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/javascript/rule.adoc b/rules/S5730/javascript/rule.adoc index 787357e002..2777a8c3fd 100644 --- a/rules/S5730/javascript/rule.adoc +++ b/rules/S5730/javascript/rule.adoc @@ -45,6 +45,7 @@ app.use( ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/kotlin/rule.adoc b/rules/S5730/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/kotlin/rule.adoc +++ b/rules/S5730/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/php/rule.adoc b/rules/S5730/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/php/rule.adoc +++ b/rules/S5730/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/pli/rule.adoc b/rules/S5730/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/pli/rule.adoc +++ b/rules/S5730/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/plsql/rule.adoc b/rules/S5730/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/plsql/rule.adoc +++ b/rules/S5730/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/python/rule.adoc b/rules/S5730/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/python/rule.adoc +++ b/rules/S5730/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/rpg/rule.adoc b/rules/S5730/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/rpg/rule.adoc +++ b/rules/S5730/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/ruby/rule.adoc b/rules/S5730/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/ruby/rule.adoc +++ b/rules/S5730/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/rust/rule.adoc b/rules/S5730/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/rust/rule.adoc +++ b/rules/S5730/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/scala/rule.adoc b/rules/S5730/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/scala/rule.adoc +++ b/rules/S5730/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/solidity/rule.adoc b/rules/S5730/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/solidity/rule.adoc +++ b/rules/S5730/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/swift/rule.adoc b/rules/S5730/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/swift/rule.adoc +++ b/rules/S5730/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/tsql/rule.adoc b/rules/S5730/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/tsql/rule.adoc +++ b/rules/S5730/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/vb6/rule.adoc b/rules/S5730/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/vb6/rule.adoc +++ b/rules/S5730/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/vbnet/rule.adoc b/rules/S5730/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/vbnet/rule.adoc +++ b/rules/S5730/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5730/xml/rule.adoc b/rules/S5730/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5730/xml/rule.adoc +++ b/rules/S5730/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/abap/rule.adoc b/rules/S5732/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/abap/rule.adoc +++ b/rules/S5732/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/apex/rule.adoc b/rules/S5732/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/apex/rule.adoc +++ b/rules/S5732/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/cfamily/rule.adoc b/rules/S5732/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/cfamily/rule.adoc +++ b/rules/S5732/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/cobol/rule.adoc b/rules/S5732/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/cobol/rule.adoc +++ b/rules/S5732/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/csharp/rule.adoc b/rules/S5732/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/csharp/rule.adoc +++ b/rules/S5732/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/css/rule.adoc b/rules/S5732/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/css/rule.adoc +++ b/rules/S5732/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/flex/rule.adoc b/rules/S5732/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/flex/rule.adoc +++ b/rules/S5732/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/go/rule.adoc b/rules/S5732/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/go/rule.adoc +++ b/rules/S5732/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/html/rule.adoc b/rules/S5732/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/html/rule.adoc +++ b/rules/S5732/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/java/rule.adoc b/rules/S5732/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/java/rule.adoc +++ b/rules/S5732/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/javascript/rule.adoc b/rules/S5732/javascript/rule.adoc index 5609d47c48..7505bcc605 100644 --- a/rules/S5732/javascript/rule.adoc +++ b/rules/S5732/javascript/rule.adoc @@ -46,6 +46,7 @@ app.use( ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/kotlin/rule.adoc b/rules/S5732/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/kotlin/rule.adoc +++ b/rules/S5732/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/php/rule.adoc b/rules/S5732/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/php/rule.adoc +++ b/rules/S5732/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/pli/rule.adoc b/rules/S5732/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/pli/rule.adoc +++ b/rules/S5732/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/plsql/rule.adoc b/rules/S5732/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/plsql/rule.adoc +++ b/rules/S5732/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/python/rule.adoc b/rules/S5732/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/python/rule.adoc +++ b/rules/S5732/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/rpg/rule.adoc b/rules/S5732/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/rpg/rule.adoc +++ b/rules/S5732/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/ruby/rule.adoc b/rules/S5732/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/ruby/rule.adoc +++ b/rules/S5732/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/rust/rule.adoc b/rules/S5732/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/rust/rule.adoc +++ b/rules/S5732/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/scala/rule.adoc b/rules/S5732/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/scala/rule.adoc +++ b/rules/S5732/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/solidity/rule.adoc b/rules/S5732/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/solidity/rule.adoc +++ b/rules/S5732/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/swift/rule.adoc b/rules/S5732/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/swift/rule.adoc +++ b/rules/S5732/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/tsql/rule.adoc b/rules/S5732/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/tsql/rule.adoc +++ b/rules/S5732/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/vb6/rule.adoc b/rules/S5732/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/vb6/rule.adoc +++ b/rules/S5732/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/vbnet/rule.adoc b/rules/S5732/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/vbnet/rule.adoc +++ b/rules/S5732/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5732/xml/rule.adoc b/rules/S5732/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5732/xml/rule.adoc +++ b/rules/S5732/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/abap/rule.adoc b/rules/S5734/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/abap/rule.adoc +++ b/rules/S5734/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/apex/rule.adoc b/rules/S5734/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/apex/rule.adoc +++ b/rules/S5734/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/cfamily/rule.adoc b/rules/S5734/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/cfamily/rule.adoc +++ b/rules/S5734/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/cobol/rule.adoc b/rules/S5734/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/cobol/rule.adoc +++ b/rules/S5734/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/csharp/rule.adoc b/rules/S5734/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/csharp/rule.adoc +++ b/rules/S5734/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/css/rule.adoc b/rules/S5734/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/css/rule.adoc +++ b/rules/S5734/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/flex/rule.adoc b/rules/S5734/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/flex/rule.adoc +++ b/rules/S5734/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/go/rule.adoc b/rules/S5734/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/go/rule.adoc +++ b/rules/S5734/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/html/rule.adoc b/rules/S5734/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/html/rule.adoc +++ b/rules/S5734/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/java/rule.adoc b/rules/S5734/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/java/rule.adoc +++ b/rules/S5734/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/javascript/rule.adoc b/rules/S5734/javascript/rule.adoc index 0d93baa949..d81376e03a 100644 --- a/rules/S5734/javascript/rule.adoc +++ b/rules/S5734/javascript/rule.adoc @@ -36,6 +36,7 @@ app.use(helmet.noSniff()); ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/kotlin/rule.adoc b/rules/S5734/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/kotlin/rule.adoc +++ b/rules/S5734/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/php/rule.adoc b/rules/S5734/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/php/rule.adoc +++ b/rules/S5734/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/pli/rule.adoc b/rules/S5734/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/pli/rule.adoc +++ b/rules/S5734/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/plsql/rule.adoc b/rules/S5734/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/plsql/rule.adoc +++ b/rules/S5734/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/python/rule.adoc b/rules/S5734/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/python/rule.adoc +++ b/rules/S5734/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/rpg/rule.adoc b/rules/S5734/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/rpg/rule.adoc +++ b/rules/S5734/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/ruby/rule.adoc b/rules/S5734/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/ruby/rule.adoc +++ b/rules/S5734/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/rust/rule.adoc b/rules/S5734/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/rust/rule.adoc +++ b/rules/S5734/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/scala/rule.adoc b/rules/S5734/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/scala/rule.adoc +++ b/rules/S5734/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/solidity/rule.adoc b/rules/S5734/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/solidity/rule.adoc +++ b/rules/S5734/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/swift/rule.adoc b/rules/S5734/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/swift/rule.adoc +++ b/rules/S5734/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/tsql/rule.adoc b/rules/S5734/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/tsql/rule.adoc +++ b/rules/S5734/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/vb6/rule.adoc b/rules/S5734/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/vb6/rule.adoc +++ b/rules/S5734/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/vbnet/rule.adoc b/rules/S5734/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/vbnet/rule.adoc +++ b/rules/S5734/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5734/xml/rule.adoc b/rules/S5734/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5734/xml/rule.adoc +++ b/rules/S5734/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/abap/rule.adoc b/rules/S5736/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/abap/rule.adoc +++ b/rules/S5736/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/apex/rule.adoc b/rules/S5736/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/apex/rule.adoc +++ b/rules/S5736/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/cfamily/rule.adoc b/rules/S5736/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/cfamily/rule.adoc +++ b/rules/S5736/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/cobol/rule.adoc b/rules/S5736/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/cobol/rule.adoc +++ b/rules/S5736/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/csharp/rule.adoc b/rules/S5736/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/csharp/rule.adoc +++ b/rules/S5736/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/css/rule.adoc b/rules/S5736/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/css/rule.adoc +++ b/rules/S5736/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/flex/rule.adoc b/rules/S5736/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/flex/rule.adoc +++ b/rules/S5736/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/go/rule.adoc b/rules/S5736/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/go/rule.adoc +++ b/rules/S5736/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/html/rule.adoc b/rules/S5736/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/html/rule.adoc +++ b/rules/S5736/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/java/rule.adoc b/rules/S5736/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/java/rule.adoc +++ b/rules/S5736/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/javascript/rule.adoc b/rules/S5736/javascript/rule.adoc index 63e341b153..22f66dc9e3 100644 --- a/rules/S5736/javascript/rule.adoc +++ b/rules/S5736/javascript/rule.adoc @@ -38,6 +38,7 @@ app.use( ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/kotlin/rule.adoc b/rules/S5736/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/kotlin/rule.adoc +++ b/rules/S5736/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/php/rule.adoc b/rules/S5736/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/php/rule.adoc +++ b/rules/S5736/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/pli/rule.adoc b/rules/S5736/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/pli/rule.adoc +++ b/rules/S5736/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/plsql/rule.adoc b/rules/S5736/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/plsql/rule.adoc +++ b/rules/S5736/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/python/rule.adoc b/rules/S5736/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/python/rule.adoc +++ b/rules/S5736/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/rpg/rule.adoc b/rules/S5736/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/rpg/rule.adoc +++ b/rules/S5736/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/ruby/rule.adoc b/rules/S5736/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/ruby/rule.adoc +++ b/rules/S5736/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/rust/rule.adoc b/rules/S5736/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/rust/rule.adoc +++ b/rules/S5736/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/scala/rule.adoc b/rules/S5736/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/scala/rule.adoc +++ b/rules/S5736/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/solidity/rule.adoc b/rules/S5736/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/solidity/rule.adoc +++ b/rules/S5736/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/swift/rule.adoc b/rules/S5736/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/swift/rule.adoc +++ b/rules/S5736/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/tsql/rule.adoc b/rules/S5736/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/tsql/rule.adoc +++ b/rules/S5736/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/vb6/rule.adoc b/rules/S5736/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/vb6/rule.adoc +++ b/rules/S5736/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/vbnet/rule.adoc b/rules/S5736/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/vbnet/rule.adoc +++ b/rules/S5736/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5736/xml/rule.adoc b/rules/S5736/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5736/xml/rule.adoc +++ b/rules/S5736/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/abap/rule.adoc b/rules/S5739/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/abap/rule.adoc +++ b/rules/S5739/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/apex/rule.adoc b/rules/S5739/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/apex/rule.adoc +++ b/rules/S5739/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/cfamily/rule.adoc b/rules/S5739/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/cfamily/rule.adoc +++ b/rules/S5739/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/cobol/rule.adoc b/rules/S5739/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/cobol/rule.adoc +++ b/rules/S5739/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/csharp/rule.adoc b/rules/S5739/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/csharp/rule.adoc +++ b/rules/S5739/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/css/rule.adoc b/rules/S5739/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/css/rule.adoc +++ b/rules/S5739/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/flex/rule.adoc b/rules/S5739/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/flex/rule.adoc +++ b/rules/S5739/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/go/rule.adoc b/rules/S5739/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/go/rule.adoc +++ b/rules/S5739/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/html/rule.adoc b/rules/S5739/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/html/rule.adoc +++ b/rules/S5739/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/java/rule.adoc b/rules/S5739/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/java/rule.adoc +++ b/rules/S5739/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/javascript/rule.adoc b/rules/S5739/javascript/rule.adoc index 1946e404dc..91f9d1bb5b 100644 --- a/rules/S5739/javascript/rule.adoc +++ b/rules/S5739/javascript/rule.adoc @@ -38,6 +38,7 @@ app.use(helmet.hsts({ ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/kotlin/rule.adoc b/rules/S5739/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/kotlin/rule.adoc +++ b/rules/S5739/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/php/rule.adoc b/rules/S5739/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/php/rule.adoc +++ b/rules/S5739/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/pli/rule.adoc b/rules/S5739/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/pli/rule.adoc +++ b/rules/S5739/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/plsql/rule.adoc b/rules/S5739/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/plsql/rule.adoc +++ b/rules/S5739/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/python/rule.adoc b/rules/S5739/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/python/rule.adoc +++ b/rules/S5739/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/rpg/rule.adoc b/rules/S5739/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/rpg/rule.adoc +++ b/rules/S5739/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/ruby/rule.adoc b/rules/S5739/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/ruby/rule.adoc +++ b/rules/S5739/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/rust/rule.adoc b/rules/S5739/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/rust/rule.adoc +++ b/rules/S5739/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/scala/rule.adoc b/rules/S5739/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/scala/rule.adoc +++ b/rules/S5739/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/solidity/rule.adoc b/rules/S5739/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/solidity/rule.adoc +++ b/rules/S5739/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/swift/rule.adoc b/rules/S5739/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/swift/rule.adoc +++ b/rules/S5739/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/tsql/rule.adoc b/rules/S5739/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/tsql/rule.adoc +++ b/rules/S5739/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/vb6/rule.adoc b/rules/S5739/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/vb6/rule.adoc +++ b/rules/S5739/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/vbnet/rule.adoc b/rules/S5739/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/vbnet/rule.adoc +++ b/rules/S5739/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5739/xml/rule.adoc b/rules/S5739/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5739/xml/rule.adoc +++ b/rules/S5739/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/abap/rule.adoc b/rules/S5742/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/abap/rule.adoc +++ b/rules/S5742/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/apex/rule.adoc b/rules/S5742/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/apex/rule.adoc +++ b/rules/S5742/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/cfamily/rule.adoc b/rules/S5742/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/cfamily/rule.adoc +++ b/rules/S5742/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/cobol/rule.adoc b/rules/S5742/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/cobol/rule.adoc +++ b/rules/S5742/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/csharp/rule.adoc b/rules/S5742/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/csharp/rule.adoc +++ b/rules/S5742/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/css/rule.adoc b/rules/S5742/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/css/rule.adoc +++ b/rules/S5742/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/flex/rule.adoc b/rules/S5742/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/flex/rule.adoc +++ b/rules/S5742/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/go/rule.adoc b/rules/S5742/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/go/rule.adoc +++ b/rules/S5742/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/html/rule.adoc b/rules/S5742/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/html/rule.adoc +++ b/rules/S5742/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/java/rule.adoc b/rules/S5742/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/java/rule.adoc +++ b/rules/S5742/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/javascript/rule.adoc b/rules/S5742/javascript/rule.adoc index 5380b7d10f..ed811f26a2 100644 --- a/rules/S5742/javascript/rule.adoc +++ b/rules/S5742/javascript/rule.adoc @@ -39,6 +39,7 @@ app.use(helmet.expectCt({ ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/kotlin/rule.adoc b/rules/S5742/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/kotlin/rule.adoc +++ b/rules/S5742/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/php/rule.adoc b/rules/S5742/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/php/rule.adoc +++ b/rules/S5742/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/pli/rule.adoc b/rules/S5742/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/pli/rule.adoc +++ b/rules/S5742/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/plsql/rule.adoc b/rules/S5742/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/plsql/rule.adoc +++ b/rules/S5742/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/python/rule.adoc b/rules/S5742/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/python/rule.adoc +++ b/rules/S5742/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/rpg/rule.adoc b/rules/S5742/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/rpg/rule.adoc +++ b/rules/S5742/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/ruby/rule.adoc b/rules/S5742/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/ruby/rule.adoc +++ b/rules/S5742/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/rust/rule.adoc b/rules/S5742/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/rust/rule.adoc +++ b/rules/S5742/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/scala/rule.adoc b/rules/S5742/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/scala/rule.adoc +++ b/rules/S5742/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/solidity/rule.adoc b/rules/S5742/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/solidity/rule.adoc +++ b/rules/S5742/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/swift/rule.adoc b/rules/S5742/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/swift/rule.adoc +++ b/rules/S5742/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/tsql/rule.adoc b/rules/S5742/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/tsql/rule.adoc +++ b/rules/S5742/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/vb6/rule.adoc b/rules/S5742/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/vb6/rule.adoc +++ b/rules/S5742/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/vbnet/rule.adoc b/rules/S5742/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/vbnet/rule.adoc +++ b/rules/S5742/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5742/xml/rule.adoc b/rules/S5742/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5742/xml/rule.adoc +++ b/rules/S5742/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/abap/rule.adoc b/rules/S5743/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/abap/rule.adoc +++ b/rules/S5743/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/apex/rule.adoc b/rules/S5743/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/apex/rule.adoc +++ b/rules/S5743/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/cfamily/rule.adoc b/rules/S5743/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/cfamily/rule.adoc +++ b/rules/S5743/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/cobol/rule.adoc b/rules/S5743/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/cobol/rule.adoc +++ b/rules/S5743/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/csharp/rule.adoc b/rules/S5743/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/csharp/rule.adoc +++ b/rules/S5743/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/css/rule.adoc b/rules/S5743/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/css/rule.adoc +++ b/rules/S5743/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/flex/rule.adoc b/rules/S5743/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/flex/rule.adoc +++ b/rules/S5743/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/go/rule.adoc b/rules/S5743/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/go/rule.adoc +++ b/rules/S5743/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/html/rule.adoc b/rules/S5743/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/html/rule.adoc +++ b/rules/S5743/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/java/rule.adoc b/rules/S5743/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/java/rule.adoc +++ b/rules/S5743/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/javascript/rule.adoc b/rules/S5743/javascript/rule.adoc index e3bfdc1e89..3269a94302 100644 --- a/rules/S5743/javascript/rule.adoc +++ b/rules/S5743/javascript/rule.adoc @@ -40,6 +40,7 @@ app.use( ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/kotlin/rule.adoc b/rules/S5743/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/kotlin/rule.adoc +++ b/rules/S5743/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/php/rule.adoc b/rules/S5743/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/php/rule.adoc +++ b/rules/S5743/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/pli/rule.adoc b/rules/S5743/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/pli/rule.adoc +++ b/rules/S5743/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/plsql/rule.adoc b/rules/S5743/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/plsql/rule.adoc +++ b/rules/S5743/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/python/rule.adoc b/rules/S5743/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/python/rule.adoc +++ b/rules/S5743/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/rpg/rule.adoc b/rules/S5743/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/rpg/rule.adoc +++ b/rules/S5743/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/ruby/rule.adoc b/rules/S5743/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/ruby/rule.adoc +++ b/rules/S5743/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/rust/rule.adoc b/rules/S5743/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/rust/rule.adoc +++ b/rules/S5743/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/scala/rule.adoc b/rules/S5743/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/scala/rule.adoc +++ b/rules/S5743/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/solidity/rule.adoc b/rules/S5743/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/solidity/rule.adoc +++ b/rules/S5743/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/swift/rule.adoc b/rules/S5743/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/swift/rule.adoc +++ b/rules/S5743/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/tsql/rule.adoc b/rules/S5743/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/tsql/rule.adoc +++ b/rules/S5743/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/vb6/rule.adoc b/rules/S5743/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/vb6/rule.adoc +++ b/rules/S5743/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/vbnet/rule.adoc b/rules/S5743/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/vbnet/rule.adoc +++ b/rules/S5743/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5743/xml/rule.adoc b/rules/S5743/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5743/xml/rule.adoc +++ b/rules/S5743/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/abap/rule.adoc b/rules/S5750/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/abap/rule.adoc +++ b/rules/S5750/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/apex/rule.adoc b/rules/S5750/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/apex/rule.adoc +++ b/rules/S5750/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/cfamily/rule.adoc b/rules/S5750/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/cfamily/rule.adoc +++ b/rules/S5750/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/cobol/rule.adoc b/rules/S5750/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/cobol/rule.adoc +++ b/rules/S5750/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/csharp/rule.adoc b/rules/S5750/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/csharp/rule.adoc +++ b/rules/S5750/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/css/rule.adoc b/rules/S5750/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/css/rule.adoc +++ b/rules/S5750/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/flex/rule.adoc b/rules/S5750/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/flex/rule.adoc +++ b/rules/S5750/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/go/rule.adoc b/rules/S5750/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/go/rule.adoc +++ b/rules/S5750/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/html/rule.adoc b/rules/S5750/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/html/rule.adoc +++ b/rules/S5750/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/java/rule.adoc b/rules/S5750/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/java/rule.adoc +++ b/rules/S5750/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/javascript/rule.adoc b/rules/S5750/javascript/rule.adoc index 6d66f35f12..cc490ef6cd 100644 --- a/rules/S5750/javascript/rule.adoc +++ b/rules/S5750/javascript/rule.adoc @@ -30,6 +30,7 @@ app.use(helmet.nocache()); // Compliant ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/kotlin/rule.adoc b/rules/S5750/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/kotlin/rule.adoc +++ b/rules/S5750/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/php/rule.adoc b/rules/S5750/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/php/rule.adoc +++ b/rules/S5750/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/pli/rule.adoc b/rules/S5750/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/pli/rule.adoc +++ b/rules/S5750/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/plsql/rule.adoc b/rules/S5750/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/plsql/rule.adoc +++ b/rules/S5750/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/python/rule.adoc b/rules/S5750/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/python/rule.adoc +++ b/rules/S5750/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/rpg/rule.adoc b/rules/S5750/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/rpg/rule.adoc +++ b/rules/S5750/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/ruby/rule.adoc b/rules/S5750/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/ruby/rule.adoc +++ b/rules/S5750/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/rust/rule.adoc b/rules/S5750/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/rust/rule.adoc +++ b/rules/S5750/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/scala/rule.adoc b/rules/S5750/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/scala/rule.adoc +++ b/rules/S5750/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/solidity/rule.adoc b/rules/S5750/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/solidity/rule.adoc +++ b/rules/S5750/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/swift/rule.adoc b/rules/S5750/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/swift/rule.adoc +++ b/rules/S5750/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/tsql/rule.adoc b/rules/S5750/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/tsql/rule.adoc +++ b/rules/S5750/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/vb6/rule.adoc b/rules/S5750/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/vb6/rule.adoc +++ b/rules/S5750/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/vbnet/rule.adoc b/rules/S5750/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/vbnet/rule.adoc +++ b/rules/S5750/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5750/xml/rule.adoc b/rules/S5750/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5750/xml/rule.adoc +++ b/rules/S5750/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5753/csharp/rule.adoc b/rules/S5753/csharp/rule.adoc index edd39c7c6b..3b8fc01027 100644 --- a/rules/S5753/csharp/rule.adoc +++ b/rules/S5753/csharp/rule.adoc @@ -81,4 +81,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5757/abap/rule.adoc b/rules/S5757/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/abap/rule.adoc +++ b/rules/S5757/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/apex/rule.adoc b/rules/S5757/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/apex/rule.adoc +++ b/rules/S5757/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/cfamily/rule.adoc b/rules/S5757/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/cfamily/rule.adoc +++ b/rules/S5757/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/cobol/rule.adoc b/rules/S5757/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/cobol/rule.adoc +++ b/rules/S5757/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/csharp/rule.adoc b/rules/S5757/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/csharp/rule.adoc +++ b/rules/S5757/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/css/rule.adoc b/rules/S5757/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/css/rule.adoc +++ b/rules/S5757/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/flex/rule.adoc b/rules/S5757/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/flex/rule.adoc +++ b/rules/S5757/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/go/rule.adoc b/rules/S5757/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/go/rule.adoc +++ b/rules/S5757/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/html/rule.adoc b/rules/S5757/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/html/rule.adoc +++ b/rules/S5757/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/java/rule.adoc b/rules/S5757/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/java/rule.adoc +++ b/rules/S5757/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/javascript/rule.adoc b/rules/S5757/javascript/rule.adoc index 92cf8c0043..42b4f1c9ae 100644 --- a/rules/S5757/javascript/rule.adoc +++ b/rules/S5757/javascript/rule.adoc @@ -48,6 +48,7 @@ CREDIT_CARD_NUMBERS.forEach(function(CREDIT_CARD_NUMBER) { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/kotlin/rule.adoc b/rules/S5757/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/kotlin/rule.adoc +++ b/rules/S5757/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/php/rule.adoc b/rules/S5757/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/php/rule.adoc +++ b/rules/S5757/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/pli/rule.adoc b/rules/S5757/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/pli/rule.adoc +++ b/rules/S5757/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/plsql/rule.adoc b/rules/S5757/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/plsql/rule.adoc +++ b/rules/S5757/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/python/rule.adoc b/rules/S5757/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/python/rule.adoc +++ b/rules/S5757/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/rpg/rule.adoc b/rules/S5757/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/rpg/rule.adoc +++ b/rules/S5757/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/ruby/rule.adoc b/rules/S5757/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/ruby/rule.adoc +++ b/rules/S5757/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/rust/rule.adoc b/rules/S5757/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/rust/rule.adoc +++ b/rules/S5757/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/scala/rule.adoc b/rules/S5757/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/scala/rule.adoc +++ b/rules/S5757/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/solidity/rule.adoc b/rules/S5757/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/solidity/rule.adoc +++ b/rules/S5757/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/swift/rule.adoc b/rules/S5757/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/swift/rule.adoc +++ b/rules/S5757/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/tsql/rule.adoc b/rules/S5757/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/tsql/rule.adoc +++ b/rules/S5757/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/vb6/rule.adoc b/rules/S5757/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/vb6/rule.adoc +++ b/rules/S5757/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/vbnet/rule.adoc b/rules/S5757/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/vbnet/rule.adoc +++ b/rules/S5757/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5757/xml/rule.adoc b/rules/S5757/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5757/xml/rule.adoc +++ b/rules/S5757/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5759/cfamily/rule.adoc b/rules/S5759/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5759/cfamily/rule.adoc +++ b/rules/S5759/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5759/csharp/rule.adoc b/rules/S5759/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5759/csharp/rule.adoc +++ b/rules/S5759/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5759/java/rule.adoc b/rules/S5759/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5759/java/rule.adoc +++ b/rules/S5759/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5759/javascript/rule.adoc b/rules/S5759/javascript/rule.adoc index 0897a1f9b0..10e31759de 100644 --- a/rules/S5759/javascript/rule.adoc +++ b/rules/S5759/javascript/rule.adoc @@ -57,6 +57,7 @@ app.listen(3000); ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5759/php/rule.adoc b/rules/S5759/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5759/php/rule.adoc +++ b/rules/S5759/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5759/python/rule.adoc b/rules/S5759/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5759/python/rule.adoc +++ b/rules/S5759/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/abap/rule.adoc b/rules/S5766/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/abap/rule.adoc +++ b/rules/S5766/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/apex/rule.adoc b/rules/S5766/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/apex/rule.adoc +++ b/rules/S5766/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/cfamily/rule.adoc b/rules/S5766/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/cfamily/rule.adoc +++ b/rules/S5766/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/cobol/rule.adoc b/rules/S5766/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/cobol/rule.adoc +++ b/rules/S5766/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/csharp/rule.adoc b/rules/S5766/csharp/rule.adoc index ec16cb8592..ad54f84074 100644 --- a/rules/S5766/csharp/rule.adoc +++ b/rules/S5766/csharp/rule.adoc @@ -167,6 +167,7 @@ public class InternalUrl : IDeserializationCallback ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/css/rule.adoc b/rules/S5766/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/css/rule.adoc +++ b/rules/S5766/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/flex/rule.adoc b/rules/S5766/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/flex/rule.adoc +++ b/rules/S5766/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/go/rule.adoc b/rules/S5766/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/go/rule.adoc +++ b/rules/S5766/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/html/rule.adoc b/rules/S5766/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/html/rule.adoc +++ b/rules/S5766/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/java/rule.adoc b/rules/S5766/java/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/java/rule.adoc +++ b/rules/S5766/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/javascript/rule.adoc b/rules/S5766/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/javascript/rule.adoc +++ b/rules/S5766/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/kotlin/rule.adoc b/rules/S5766/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/kotlin/rule.adoc +++ b/rules/S5766/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/php/rule.adoc b/rules/S5766/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/php/rule.adoc +++ b/rules/S5766/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/pli/rule.adoc b/rules/S5766/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/pli/rule.adoc +++ b/rules/S5766/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/plsql/rule.adoc b/rules/S5766/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/plsql/rule.adoc +++ b/rules/S5766/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/python/rule.adoc b/rules/S5766/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/python/rule.adoc +++ b/rules/S5766/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/rpg/rule.adoc b/rules/S5766/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/rpg/rule.adoc +++ b/rules/S5766/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/ruby/rule.adoc b/rules/S5766/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/ruby/rule.adoc +++ b/rules/S5766/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/rust/rule.adoc b/rules/S5766/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/rust/rule.adoc +++ b/rules/S5766/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/scala/rule.adoc b/rules/S5766/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/scala/rule.adoc +++ b/rules/S5766/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/solidity/rule.adoc b/rules/S5766/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/solidity/rule.adoc +++ b/rules/S5766/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/swift/rule.adoc b/rules/S5766/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/swift/rule.adoc +++ b/rules/S5766/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/tsql/rule.adoc b/rules/S5766/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/tsql/rule.adoc +++ b/rules/S5766/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/vb6/rule.adoc b/rules/S5766/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/vb6/rule.adoc +++ b/rules/S5766/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/vbnet/rule.adoc b/rules/S5766/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/vbnet/rule.adoc +++ b/rules/S5766/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5766/xml/rule.adoc b/rules/S5766/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5766/xml/rule.adoc +++ b/rules/S5766/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5770/csharp/rule.adoc b/rules/S5770/csharp/rule.adoc index b51871e416..55d1d991a5 100644 --- a/rules/S5770/csharp/rule.adoc +++ b/rules/S5770/csharp/rule.adoc @@ -58,4 +58,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5770/vbnet/rule.adoc b/rules/S5770/vbnet/rule.adoc index cf275e28dd..c92032fcff 100644 --- a/rules/S5770/vbnet/rule.adoc +++ b/rules/S5770/vbnet/rule.adoc @@ -57,4 +57,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5773/csharp/rule.adoc b/rules/S5773/csharp/rule.adoc index 6f4c58170a..509eda2175 100644 --- a/rules/S5773/csharp/rule.adoc +++ b/rules/S5773/csharp/rule.adoc @@ -121,4 +121,5 @@ Secondary: (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5773/java/rule.adoc b/rules/S5773/java/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5773/java/rule.adoc +++ b/rules/S5773/java/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5773/php/rule.adoc b/rules/S5773/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5773/php/rule.adoc +++ b/rules/S5773/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5780/python/rule.adoc b/rules/S5780/python/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S5780/python/rule.adoc +++ b/rules/S5780/python/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5781/python/rule.adoc b/rules/S5781/python/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S5781/python/rule.adoc +++ b/rules/S5781/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5783/java/rule.adoc b/rules/S5783/java/rule.adoc index 8b049599d6..d3e1139bff 100644 --- a/rules/S5783/java/rule.adoc +++ b/rules/S5783/java/rule.adoc @@ -78,4 +78,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5783/php/rule.adoc b/rules/S5783/php/rule.adoc index 718a69b3fa..d520a30231 100644 --- a/rules/S5783/php/rule.adoc +++ b/rules/S5783/php/rule.adoc @@ -46,4 +46,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5797/python/rule.adoc b/rules/S5797/python/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S5797/python/rule.adoc +++ b/rules/S5797/python/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5802/cfamily/rule.adoc b/rules/S5802/cfamily/rule.adoc index 1705a1c743..273c146b5d 100644 --- a/rules/S5802/cfamily/rule.adoc +++ b/rules/S5802/cfamily/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5802/java/rule.adoc b/rules/S5802/java/rule.adoc index 87dc4ddf79..e7d7937240 100644 --- a/rules/S5802/java/rule.adoc +++ b/rules/S5802/java/rule.adoc @@ -20,4 +20,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5804/abap/rule.adoc b/rules/S5804/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/abap/rule.adoc +++ b/rules/S5804/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/apex/rule.adoc b/rules/S5804/apex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/apex/rule.adoc +++ b/rules/S5804/apex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/cfamily/rule.adoc b/rules/S5804/cfamily/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/cfamily/rule.adoc +++ b/rules/S5804/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/cobol/rule.adoc b/rules/S5804/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/cobol/rule.adoc +++ b/rules/S5804/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/csharp/rule.adoc b/rules/S5804/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/csharp/rule.adoc +++ b/rules/S5804/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/css/rule.adoc b/rules/S5804/css/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/css/rule.adoc +++ b/rules/S5804/css/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/flex/rule.adoc b/rules/S5804/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/flex/rule.adoc +++ b/rules/S5804/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/go/rule.adoc b/rules/S5804/go/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/go/rule.adoc +++ b/rules/S5804/go/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/html/rule.adoc b/rules/S5804/html/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/html/rule.adoc +++ b/rules/S5804/html/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/javascript/rule.adoc b/rules/S5804/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/javascript/rule.adoc +++ b/rules/S5804/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/kotlin/rule.adoc b/rules/S5804/kotlin/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/kotlin/rule.adoc +++ b/rules/S5804/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/php/rule.adoc b/rules/S5804/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/php/rule.adoc +++ b/rules/S5804/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/pli/rule.adoc b/rules/S5804/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/pli/rule.adoc +++ b/rules/S5804/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/plsql/rule.adoc b/rules/S5804/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/plsql/rule.adoc +++ b/rules/S5804/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/python/rule.adoc b/rules/S5804/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/python/rule.adoc +++ b/rules/S5804/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/rpg/rule.adoc b/rules/S5804/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/rpg/rule.adoc +++ b/rules/S5804/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/ruby/rule.adoc b/rules/S5804/ruby/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/ruby/rule.adoc +++ b/rules/S5804/ruby/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/rust/rule.adoc b/rules/S5804/rust/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/rust/rule.adoc +++ b/rules/S5804/rust/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/scala/rule.adoc b/rules/S5804/scala/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/scala/rule.adoc +++ b/rules/S5804/scala/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/solidity/rule.adoc b/rules/S5804/solidity/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/solidity/rule.adoc +++ b/rules/S5804/solidity/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/swift/rule.adoc b/rules/S5804/swift/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/swift/rule.adoc +++ b/rules/S5804/swift/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/tsql/rule.adoc b/rules/S5804/tsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/tsql/rule.adoc +++ b/rules/S5804/tsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/vb6/rule.adoc b/rules/S5804/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/vb6/rule.adoc +++ b/rules/S5804/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/vbnet/rule.adoc b/rules/S5804/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/vbnet/rule.adoc +++ b/rules/S5804/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5804/xml/rule.adoc b/rules/S5804/xml/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S5804/xml/rule.adoc +++ b/rules/S5804/xml/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5808/cfamily/rule.adoc b/rules/S5808/cfamily/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S5808/cfamily/rule.adoc +++ b/rules/S5808/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5808/csharp/rule.adoc b/rules/S5808/csharp/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S5808/csharp/rule.adoc +++ b/rules/S5808/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5808/java/rule.adoc b/rules/S5808/java/rule.adoc index fcbe354218..1d31d5903d 100644 --- a/rules/S5808/java/rule.adoc +++ b/rules/S5808/java/rule.adoc @@ -97,6 +97,7 @@ public class MyPermissionEvaluator implements PermissionEvaluator { No issue is reported when the method throws an exception as it might be used to indicate a strong decision. include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5808/javascript/rule.adoc b/rules/S5808/javascript/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S5808/javascript/rule.adoc +++ b/rules/S5808/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5808/kotlin/rule.adoc b/rules/S5808/kotlin/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S5808/kotlin/rule.adoc +++ b/rules/S5808/kotlin/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5808/php/rule.adoc b/rules/S5808/php/rule.adoc index 15e384595f..feb800334d 100644 --- a/rules/S5808/php/rule.adoc +++ b/rules/S5808/php/rule.adoc @@ -129,6 +129,7 @@ class NoncompliantGuard ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5808/python/rule.adoc b/rules/S5808/python/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S5808/python/rule.adoc +++ b/rules/S5808/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5808/vbnet/rule.adoc b/rules/S5808/vbnet/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S5808/vbnet/rule.adoc +++ b/rules/S5808/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5845/java/rule.adoc b/rules/S5845/java/rule.adoc index 8f70d5a508..907c83c6e7 100644 --- a/rules/S5845/java/rule.adoc +++ b/rules/S5845/java/rule.adoc @@ -79,4 +79,5 @@ Secondary: if possible, the assertion expected argument. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5845/javascript/rule.adoc b/rules/S5845/javascript/rule.adoc index e47c45c16a..496c458c29 100644 --- a/rules/S5845/javascript/rule.adoc +++ b/rules/S5845/javascript/rule.adoc @@ -77,4 +77,5 @@ Secondaries (if args are variables): the last assignment of the variable. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5845/python/rule.adoc b/rules/S5845/python/rule.adoc index 849da05d7b..0fd58032d8 100644 --- a/rules/S5845/python/rule.adoc +++ b/rules/S5845/python/rule.adoc @@ -71,4 +71,5 @@ Secondaries (if args are variables): the last assignment of the variable. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/abap/rule.adoc b/rules/S5847/abap/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/abap/rule.adoc +++ b/rules/S5847/abap/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/apex/rule.adoc b/rules/S5847/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/apex/rule.adoc +++ b/rules/S5847/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/cfamily/rule.adoc b/rules/S5847/cfamily/rule.adoc index e86f938aeb..a846438774 100644 --- a/rules/S5847/cfamily/rule.adoc +++ b/rules/S5847/cfamily/rule.adoc @@ -78,4 +78,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/cobol/rule.adoc b/rules/S5847/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/cobol/rule.adoc +++ b/rules/S5847/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/csharp/rule.adoc b/rules/S5847/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/csharp/rule.adoc +++ b/rules/S5847/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/css/rule.adoc b/rules/S5847/css/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/css/rule.adoc +++ b/rules/S5847/css/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/flex/rule.adoc b/rules/S5847/flex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/flex/rule.adoc +++ b/rules/S5847/flex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/go/rule.adoc b/rules/S5847/go/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/go/rule.adoc +++ b/rules/S5847/go/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/html/rule.adoc b/rules/S5847/html/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/html/rule.adoc +++ b/rules/S5847/html/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/java/rule.adoc b/rules/S5847/java/rule.adoc index d7d8a2c88b..87dd0de429 100644 --- a/rules/S5847/java/rule.adoc +++ b/rules/S5847/java/rule.adoc @@ -22,4 +22,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/javascript/rule.adoc b/rules/S5847/javascript/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/javascript/rule.adoc +++ b/rules/S5847/javascript/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/kotlin/rule.adoc b/rules/S5847/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/kotlin/rule.adoc +++ b/rules/S5847/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/php/rule.adoc b/rules/S5847/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/php/rule.adoc +++ b/rules/S5847/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/pli/rule.adoc b/rules/S5847/pli/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/pli/rule.adoc +++ b/rules/S5847/pli/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/plsql/rule.adoc b/rules/S5847/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/plsql/rule.adoc +++ b/rules/S5847/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/python/rule.adoc b/rules/S5847/python/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/python/rule.adoc +++ b/rules/S5847/python/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/rpg/rule.adoc b/rules/S5847/rpg/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/rpg/rule.adoc +++ b/rules/S5847/rpg/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/ruby/rule.adoc b/rules/S5847/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/ruby/rule.adoc +++ b/rules/S5847/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/rust/rule.adoc b/rules/S5847/rust/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/rust/rule.adoc +++ b/rules/S5847/rust/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/scala/rule.adoc b/rules/S5847/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/scala/rule.adoc +++ b/rules/S5847/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/solidity/rule.adoc b/rules/S5847/solidity/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/solidity/rule.adoc +++ b/rules/S5847/solidity/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/swift/rule.adoc b/rules/S5847/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/swift/rule.adoc +++ b/rules/S5847/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/tsql/rule.adoc b/rules/S5847/tsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/tsql/rule.adoc +++ b/rules/S5847/tsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/vb6/rule.adoc b/rules/S5847/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/vb6/rule.adoc +++ b/rules/S5847/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/vbnet/rule.adoc b/rules/S5847/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/vbnet/rule.adoc +++ b/rules/S5847/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5847/xml/rule.adoc b/rules/S5847/xml/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5847/xml/rule.adoc +++ b/rules/S5847/xml/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/apex/rule.adoc b/rules/S5852/apex/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/apex/rule.adoc +++ b/rules/S5852/apex/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/cfamily/rule.adoc b/rules/S5852/cfamily/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/cfamily/rule.adoc +++ b/rules/S5852/cfamily/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/cobol/rule.adoc b/rules/S5852/cobol/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/cobol/rule.adoc +++ b/rules/S5852/cobol/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/csharp/rule.adoc b/rules/S5852/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/csharp/rule.adoc +++ b/rules/S5852/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/go/rule.adoc b/rules/S5852/go/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/go/rule.adoc +++ b/rules/S5852/go/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/java/rule.adoc b/rules/S5852/java/rule.adoc index 76c115c915..a4ebaea8cf 100644 --- a/rules/S5852/java/rule.adoc +++ b/rules/S5852/java/rule.adoc @@ -60,4 +60,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/javascript/rule.adoc b/rules/S5852/javascript/rule.adoc index e2028d5157..df69f6122c 100644 --- a/rules/S5852/javascript/rule.adoc +++ b/rules/S5852/javascript/rule.adoc @@ -78,4 +78,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/kotlin/rule.adoc b/rules/S5852/kotlin/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/kotlin/rule.adoc +++ b/rules/S5852/kotlin/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/php/rule.adoc b/rules/S5852/php/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/php/rule.adoc +++ b/rules/S5852/php/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/pli/rule.adoc b/rules/S5852/pli/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/pli/rule.adoc +++ b/rules/S5852/pli/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/plsql/rule.adoc b/rules/S5852/plsql/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/plsql/rule.adoc +++ b/rules/S5852/plsql/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/python/rule.adoc b/rules/S5852/python/rule.adoc index 53dc33e844..b9cd0e2107 100644 --- a/rules/S5852/python/rule.adoc +++ b/rules/S5852/python/rule.adoc @@ -53,4 +53,5 @@ Make sure the regex used here, which is vulnerable to $RUNTIME runtime due to ba (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/ruby/rule.adoc b/rules/S5852/ruby/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/ruby/rule.adoc +++ b/rules/S5852/ruby/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/rust/rule.adoc b/rules/S5852/rust/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/rust/rule.adoc +++ b/rules/S5852/rust/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/scala/rule.adoc b/rules/S5852/scala/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/scala/rule.adoc +++ b/rules/S5852/scala/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/swift/rule.adoc b/rules/S5852/swift/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/swift/rule.adoc +++ b/rules/S5852/swift/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/vb6/rule.adoc b/rules/S5852/vb6/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/vb6/rule.adoc +++ b/rules/S5852/vb6/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5852/vbnet/rule.adoc b/rules/S5852/vbnet/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S5852/vbnet/rule.adoc +++ b/rules/S5852/vbnet/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5856/csharp/rule.adoc b/rules/S5856/csharp/rule.adoc index d9c7775066..6d86027b95 100644 --- a/rules/S5856/csharp/rule.adoc +++ b/rules/S5856/csharp/rule.adoc @@ -31,4 +31,5 @@ void Regexes(string input) ---- include::../resources-dotnet.adoc[] + include::../rspecator.adoc[] diff --git a/rules/S5856/vbnet/rule.adoc b/rules/S5856/vbnet/rule.adoc index 50441a4a9c..e482a5a355 100644 --- a/rules/S5856/vbnet/rule.adoc +++ b/rules/S5856/vbnet/rule.adoc @@ -29,4 +29,5 @@ End Sub ---- include::../resources-dotnet.adoc[] + include::../rspecator.adoc[] diff --git a/rules/S5863/java/rule.adoc b/rules/S5863/java/rule.adoc index 2d42a53c1c..d87180283c 100644 --- a/rules/S5863/java/rule.adoc +++ b/rules/S5863/java/rule.adoc @@ -59,4 +59,5 @@ Secondary: actual expression (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5863/javascript/rule.adoc b/rules/S5863/javascript/rule.adoc index dfb7b55101..5620ed3b7e 100644 --- a/rules/S5863/javascript/rule.adoc +++ b/rules/S5863/javascript/rule.adoc @@ -78,4 +78,5 @@ no message (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5863/php/rule.adoc b/rules/S5863/php/rule.adoc index 7883b7c871..de9435e9c8 100644 --- a/rules/S5863/php/rule.adoc +++ b/rules/S5863/php/rule.adoc @@ -49,4 +49,5 @@ Secondary: actual expression (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5876/java/rule.adoc b/rules/S5876/java/rule.adoc index 4318231fa8..6597ba08fc 100644 --- a/rules/S5876/java/rule.adoc +++ b/rules/S5876/java/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5876/javascript/rule.adoc b/rules/S5876/javascript/rule.adoc index 1f76644cf5..3ae3b6f2a0 100644 --- a/rules/S5876/javascript/rule.adoc +++ b/rules/S5876/javascript/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5876/php/rule.adoc b/rules/S5876/php/rule.adoc index 680a40139f..5e473b5031 100644 --- a/rules/S5876/php/rule.adoc +++ b/rules/S5876/php/rule.adoc @@ -47,4 +47,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5883/php/rule.adoc b/rules/S5883/php/rule.adoc index 992bf49455..b1bc3566e7 100644 --- a/rules/S5883/php/rule.adoc +++ b/rules/S5883/php/rule.adoc @@ -12,6 +12,7 @@ include::how-to-fix-it/core.adoc[] == Resources include::../common/resources/docs.adoc[] + * https://blog.sonarsource.com/roundcube-command-execution-via-email/[Roundcube 1.2.2: Command Execution via Email] include::../common/resources/standards.adoc[] diff --git a/rules/S5939/csharp/rule.adoc b/rules/S5939/csharp/rule.adoc index e71bde0fc8..ae243e593f 100644 --- a/rules/S5939/csharp/rule.adoc +++ b/rules/S5939/csharp/rule.adoc @@ -26,6 +26,7 @@ public void Method() ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5939/vbnet/rule.adoc b/rules/S5939/vbnet/rule.adoc index 5b9126c6c5..daa7f64571 100644 --- a/rules/S5939/vbnet/rule.adoc +++ b/rules/S5939/vbnet/rule.adoc @@ -27,6 +27,7 @@ End Sub ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S5996/java/rule.adoc b/rules/S5996/java/rule.adoc index 0e8990baa9..a1b5593ff1 100644 --- a/rules/S5996/java/rule.adoc +++ b/rules/S5996/java/rule.adoc @@ -33,4 +33,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5996/php/rule.adoc b/rules/S5996/php/rule.adoc index fd26c42d38..3c6e745f8c 100644 --- a/rules/S5996/php/rule.adoc +++ b/rules/S5996/php/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S5996/python/rule.adoc b/rules/S5996/python/rule.adoc index e594fb1016..f089bbff98 100644 --- a/rules/S5996/python/rule.adoc +++ b/rules/S5996/python/rule.adoc @@ -34,4 +34,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S6001/java/rule.adoc b/rules/S6001/java/rule.adoc index 3df541c519..eac35df286 100644 --- a/rules/S6001/java/rule.adoc +++ b/rules/S6001/java/rule.adoc @@ -41,4 +41,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S6001/python/rule.adoc b/rules/S6001/python/rule.adoc index 1be46032c2..89b87370f7 100644 --- a/rules/S6001/python/rule.adoc +++ b/rules/S6001/python/rule.adoc @@ -38,4 +38,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S6145/vbnet/rule.adoc b/rules/S6145/vbnet/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S6145/vbnet/rule.adoc +++ b/rules/S6145/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6146/vbnet/rule.adoc b/rules/S6146/vbnet/rule.adoc index 8450abb9a4..abd359d283 100644 --- a/rules/S6146/vbnet/rule.adoc +++ b/rules/S6146/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6173/java/rule.adoc b/rules/S6173/java/rule.adoc index efd0ee1c42..070bbc3736 100644 --- a/rules/S6173/java/rule.adoc +++ b/rules/S6173/java/rule.adoc @@ -41,4 +41,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S6173/javascript/rule.adoc b/rules/S6173/javascript/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S6173/javascript/rule.adoc +++ b/rules/S6173/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S6173/kotlin/rule.adoc b/rules/S6173/kotlin/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S6173/kotlin/rule.adoc +++ b/rules/S6173/kotlin/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S6173/php/rule.adoc b/rules/S6173/php/rule.adoc index bbb85f8215..a898d2baae 100644 --- a/rules/S6173/php/rule.adoc +++ b/rules/S6173/php/rule.adoc @@ -43,4 +43,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S6173/python/rule.adoc b/rules/S6173/python/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S6173/python/rule.adoc +++ b/rules/S6173/python/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S6194/cfamily/rule.adoc b/rules/S6194/cfamily/rule.adoc index 8d5746c6da..4aad2355e5 100644 --- a/rules/S6194/cfamily/rule.adoc +++ b/rules/S6194/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6245/cloudformation/rule.adoc b/rules/S6245/cloudformation/rule.adoc index f911e73fc9..361807473e 100644 --- a/rules/S6245/cloudformation/rule.adoc +++ b/rules/S6245/cloudformation/rule.adoc @@ -34,6 +34,7 @@ Resources: ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6245/terraform/rule.adoc b/rules/S6245/terraform/rule.adoc index 89e6280556..e4c1eeb869 100644 --- a/rules/S6245/terraform/rule.adoc +++ b/rules/S6245/terraform/rule.adoc @@ -54,6 +54,7 @@ resource "aws_s3_bucket_server_side_encryption_configuration" "example" { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6249/cloudformation/rule.adoc b/rules/S6249/cloudformation/rule.adoc index e740d90998..a0764241c3 100644 --- a/rules/S6249/cloudformation/rule.adoc +++ b/rules/S6249/cloudformation/rule.adoc @@ -76,6 +76,7 @@ Resources: ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6249/javascript/rule.adoc b/rules/S6249/javascript/rule.adoc index 2c27beb141..c197e1b069 100644 --- a/rules/S6249/javascript/rule.adoc +++ b/rules/S6249/javascript/rule.adoc @@ -33,6 +33,7 @@ const bucket = new s3.Bucket(this, 'example', { ---- include::../see.adoc[] + * https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.Bucket.html[AWS CDK version 2] - Bucket ifdef::env-github,rspecator-view[] diff --git a/rules/S6249/python/rule.adoc b/rules/S6249/python/rule.adoc index 29a6b66d19..ac505d6f26 100644 --- a/rules/S6249/python/rule.adoc +++ b/rules/S6249/python/rule.adoc @@ -62,6 +62,7 @@ result = bucket.add_to_resource_policy(iam.PolicyStatement( ---- include::../see.adoc[] + * https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards-fsbp-controls.html#fsbp-s3-5[AWS Foundational Security Best Practices controls] - S3 buckets should require requests to use Secure Socket Layer ifdef::env-github,rspecator-view[] diff --git a/rules/S6249/terraform/rule.adoc b/rules/S6249/terraform/rule.adoc index edcf0b171b..8b0914292d 100644 --- a/rules/S6249/terraform/rule.adoc +++ b/rules/S6249/terraform/rule.adoc @@ -89,6 +89,7 @@ resource "aws_s3_bucket_policy" "mycompliantpolicy" { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6252/cloudformation/rule.adoc b/rules/S6252/cloudformation/rule.adoc index 6399b37485..2940d915bd 100644 --- a/rules/S6252/cloudformation/rule.adoc +++ b/rules/S6252/cloudformation/rule.adoc @@ -35,6 +35,7 @@ Resources: ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6252/terraform/rule.adoc b/rules/S6252/terraform/rule.adoc index da9de33f81..c298113d26 100644 --- a/rules/S6252/terraform/rule.adoc +++ b/rules/S6252/terraform/rule.adoc @@ -47,6 +47,7 @@ resource "aws_s3_bucket" "example" { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6258/cloudformation/rule.adoc b/rules/S6258/cloudformation/rule.adoc index 61b594828e..2580bb602d 100644 --- a/rules/S6258/cloudformation/rule.adoc +++ b/rules/S6258/cloudformation/rule.adoc @@ -343,6 +343,7 @@ Resources: ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6258/terraform/rule.adoc b/rules/S6258/terraform/rule.adoc index 1cfc669451..5e377162f5 100644 --- a/rules/S6258/terraform/rule.adoc +++ b/rules/S6258/terraform/rule.adoc @@ -277,6 +277,7 @@ resource "google_container_cluster" "example" { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6265/cloudformation/rule.adoc b/rules/S6265/cloudformation/rule.adoc index f5425eb207..c9e7011665 100644 --- a/rules/S6265/cloudformation/rule.adoc +++ b/rules/S6265/cloudformation/rule.adoc @@ -35,6 +35,7 @@ Resources: ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6265/javascript/rule.adoc b/rules/S6265/javascript/rule.adoc index dfbca96ff0..68e7f71424 100644 --- a/rules/S6265/javascript/rule.adoc +++ b/rules/S6265/javascript/rule.adoc @@ -48,6 +48,7 @@ new s3deploy.BucketDeployment(this, 'DeployWebsite', { ---- include::../see.adoc[] + * https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.Bucket.html[AWS CDK version 2] - Class Bucket (construct) ifdef::env-github,rspecator-view[] diff --git a/rules/S6265/python/rule.adoc b/rules/S6265/python/rule.adoc index 55876395e1..8cc9c79368 100644 --- a/rules/S6265/python/rule.adoc +++ b/rules/S6265/python/rule.adoc @@ -45,6 +45,7 @@ s3deploy.BucketDeployment(self, "DeployWebsite", ---- include::../see.adoc[] + * https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.Bucket.html[AWS CDK version 2] - Class Bucket (construct) ifdef::env-github,rspecator-view[] diff --git a/rules/S6265/terraform/rule.adoc b/rules/S6265/terraform/rule.adoc index 922bb83233..343e1dc34a 100644 --- a/rules/S6265/terraform/rule.adoc +++ b/rules/S6265/terraform/rule.adoc @@ -28,6 +28,7 @@ resource "aws_s3_bucket" "mycompliantbucket" { # Compliant ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6270/cloudformation/rule.adoc b/rules/S6270/cloudformation/rule.adoc index 9e072f1d95..11f9db719f 100644 --- a/rules/S6270/cloudformation/rule.adoc +++ b/rules/S6270/cloudformation/rule.adoc @@ -50,6 +50,7 @@ Resources: ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6270/javascript/rule.adoc b/rules/S6270/javascript/rule.adoc index aa14e944ab..8efd393d0b 100644 --- a/rules/S6270/javascript/rule.adoc +++ b/rules/S6270/javascript/rule.adoc @@ -44,6 +44,7 @@ bucket.addToResourcePolicy(new iam.PolicyStatement({ ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6270/python/rule.adoc b/rules/S6270/python/rule.adoc index ba71de8d45..613bd863e3 100644 --- a/rules/S6270/python/rule.adoc +++ b/rules/S6270/python/rule.adoc @@ -43,6 +43,7 @@ bucket.add_to_resource_policy(PolicyStatement( ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6270/terraform/rule.adoc b/rules/S6270/terraform/rule.adoc index 3b605a76cf..2c9d1c0124 100644 --- a/rules/S6270/terraform/rule.adoc +++ b/rules/S6270/terraform/rule.adoc @@ -58,6 +58,7 @@ resource "aws_s3_bucket_policy" "mycompliantpolicy" { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6273/cloudformation/rule.adoc b/rules/S6273/cloudformation/rule.adoc index f7058e0ef2..830af215fe 100644 --- a/rules/S6273/cloudformation/rule.adoc +++ b/rules/S6273/cloudformation/rule.adoc @@ -43,6 +43,7 @@ Resources: ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6273/terraform/rule.adoc b/rules/S6273/terraform/rule.adoc index 06d4001a5d..a7666e3102 100644 --- a/rules/S6273/terraform/rule.adoc +++ b/rules/S6273/terraform/rule.adoc @@ -32,6 +32,7 @@ resource "aws_s3_bucket" "mycompliantbucket" { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6281/cloudformation/rule.adoc b/rules/S6281/cloudformation/rule.adoc index f3d2de0cf5..3a5fa6f40a 100644 --- a/rules/S6281/cloudformation/rule.adoc +++ b/rules/S6281/cloudformation/rule.adoc @@ -55,6 +55,7 @@ Resources: ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6281/javascript/rule.adoc b/rules/S6281/javascript/rule.adoc index 2215af6b25..bf2a2053a9 100644 --- a/rules/S6281/javascript/rule.adoc +++ b/rules/S6281/javascript/rule.adoc @@ -101,6 +101,7 @@ new s3.Bucket(this, 'id', { ---- include::../see.adoc[] + * https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.BlockPublicAccess.html[AWS CDK version 2] - BlockPublicAccess ifdef::env-github,rspecator-view[] diff --git a/rules/S6281/python/rule.adoc b/rules/S6281/python/rule.adoc index c4eb0084f6..ef27c0a6dd 100644 --- a/rules/S6281/python/rule.adoc +++ b/rules/S6281/python/rule.adoc @@ -91,6 +91,7 @@ bucket = s3.Bucket(self, "bucket", ---- include::../see.adoc[] + * https://docs.aws.amazon.com/cdk/api/v2/python/aws_cdk.aws_s3/Bucket.html[AWS CDK version 2] - Bucket ifdef::env-github,rspecator-view[] diff --git a/rules/S6281/terraform/rule.adoc b/rules/S6281/terraform/rule.adoc index cf259b5301..bea534d946 100644 --- a/rules/S6281/terraform/rule.adoc +++ b/rules/S6281/terraform/rule.adoc @@ -55,6 +55,7 @@ resource "aws_s3_bucket_public_access_block" "example-public-access-block" { ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6288/kotlin/rule.adoc b/rules/S6288/kotlin/rule.adoc index f6880df15a..5100ffcdcb 100644 --- a/rules/S6288/kotlin/rule.adoc +++ b/rules/S6288/kotlin/rule.adoc @@ -39,6 +39,7 @@ keyGenerator.init(builder) ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6302/javascript/rule.adoc b/rules/S6302/javascript/rule.adoc index 8d8fe192c1..0f1c0d47b4 100644 --- a/rules/S6302/javascript/rule.adoc +++ b/rules/S6302/javascript/rule.adoc @@ -35,6 +35,7 @@ new iam.PolicyStatement({ ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6302/python/rule.adoc b/rules/S6302/python/rule.adoc index 6f497822e5..9dc703ae47 100644 --- a/rules/S6302/python/rule.adoc +++ b/rules/S6302/python/rule.adoc @@ -35,6 +35,7 @@ PolicyStatement( ---- include::../see.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S6382/azureresourcemanager/rule.adoc b/rules/S6382/azureresourcemanager/rule.adoc index aec2e8f1c6..cbbf53fb13 100644 --- a/rules/S6382/azureresourcemanager/rule.adoc +++ b/rules/S6382/azureresourcemanager/rule.adoc @@ -339,8 +339,11 @@ Where a resouce can use both certificate-based and password-based authentication * https://learn.microsoft.com/en-us/azure/templates/[Azure Resource Manager templates] include::../common/resources/docs.adoc[] + include::../common/resources/articles.adoc[] + include::../common/resources/presentations.adoc[] + include::../common/resources/standards.adoc[] diff --git a/rules/S6382/terraform/rule.adoc b/rules/S6382/terraform/rule.adoc index 6571b8fdd3..995afbd150 100644 --- a/rules/S6382/terraform/rule.adoc +++ b/rules/S6382/terraform/rule.adoc @@ -109,8 +109,11 @@ resource "azurerm_linux_web_app" "exemple" { == See include::../common/resources/docs.adoc[] + include::../common/resources/articles.adoc[] + include::../common/resources/presentations.adoc[] + include::../common/resources/standards.adoc[] diff --git a/rules/S6388/azureresourcemanager/rule.adoc b/rules/S6388/azureresourcemanager/rule.adoc index 34c6ccac47..4dee6c3d37 100644 --- a/rules/S6388/azureresourcemanager/rule.adoc +++ b/rules/S6388/azureresourcemanager/rule.adoc @@ -7,40 +7,70 @@ include::../recommended.adoc[] == Sensitive Code Example include::examples/Microsoft.AzureArcData_sqlServerInstances_databases.noncompliant.adoc[] + include::examples/Microsoft.Compute_disks.noncompliant.adoc[] + include::examples/Microsoft.Compute_snapshots.noncompliant.adoc[] + include::examples/Microsoft.Compute_virtualMachines.noncompliant.adoc[] + include::examples/Microsoft.Compute_virtualMachineScaleSets.noncompliant.adoc[] + include::examples/Microsoft.ContainerService_managedClusters.noncompliant.adoc[] + include::examples/Microsoft.DataLakeStore_accounts.noncompliant.adoc[] + include::examples/Microsoft.DBforMySQL_servers.noncompliant.adoc[] + include::examples/Microsoft.DBforPostgreSQL_servers.noncompliant.adoc[] + include::examples/Microsoft.DocumentDB_cassandraClusters_dataCenters.noncompliant.adoc[] + include::examples/Microsoft.HDInsight_clusters.noncompliant.adoc[] + include::examples/Microsoft.Kusto_clusters.noncompliant.adoc[] + include::examples/Microsoft.RecoveryServices.vaults.noncompliant.adoc[] + include::examples/Microsoft.RedHatOpenShift_openShiftClusters.noncompliant.adoc[] + include::examples/Microsoft.SqlVirtualMachine_sqlVirtualMachines.noncompliant.adoc[] + include::examples/Microsoft.Storage_storageAccounts.noncompliant.adoc[] == Compliant Solution include::examples/Microsoft.AzureArcData_sqlServerInstances_databases.compliant.adoc[] + include::examples/Microsoft.Compute_disks.compliant.adoc[] + include::examples/Microsoft.Compute_snapshots.compliant.adoc[] + include::examples/Microsoft.Compute_virtualMachines.compliant.adoc[] + include::examples/Microsoft.Compute_virtualMachineScaleSets.compliant.adoc[] + include::examples/Microsoft.ContainerService_managedClusters.compliant.adoc[] + include::examples/Microsoft.DataLakeStore_accounts.compliant.adoc[] + include::examples/Microsoft.DBforMySQL_servers.compliant.adoc[] + include::examples/Microsoft.DBforPostgreSQL_servers.compliant.adoc[] + include::examples/Microsoft.DocumentDB_cassandraClusters_dataCenters.compliant.adoc[] + include::examples/Microsoft.HDInsight_clusters.compliant.adoc[] + include::examples/Microsoft.Kusto_clusters.compliant.adoc[] + include::examples/Microsoft.RecoveryServices.vaults.compliant.adoc[] + include::examples/Microsoft.RedHatOpenShift_openShiftClusters.compliant.adoc[] + include::examples/Microsoft.SqlVirtualMachine_sqlVirtualMachines.compliant.adoc[] + include::examples/Microsoft.Storage_storageAccounts.compliant.adoc[] include::../see.adoc[] diff --git a/rules/S6418/java/rule.adoc b/rules/S6418/java/rule.adoc index 2f8ddde4df..dd84cda13e 100644 --- a/rules/S6418/java/rule.adoc +++ b/rules/S6418/java/rule.adoc @@ -84,7 +84,10 @@ ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) + include::../message.adoc[] + include::../parameters.adoc[] + ''' endif::env-github,rspecator-view[] diff --git a/rules/S6549/java/how-to-fix-it/java-se.adoc b/rules/S6549/java/how-to-fix-it/java-se.adoc index 56d4ab97c6..5671621842 100644 --- a/rules/S6549/java/how-to-fix-it/java-se.adoc +++ b/rules/S6549/java/how-to-fix-it/java-se.adoc @@ -55,6 +55,7 @@ public class ExampleController === How does this work? :canonicalization_function: java.io.File.getCanonicalPath + include::../../common/fix/canonical-path-validation.adoc[] === Pitfalls @@ -94,4 +95,5 @@ https://github.com/aws/aws-sdk-java/security/advisories/GHSA-c28r-hw5m-5gv3[Here :joining_docs: https://docs.oracle.com/javase/8/docs/api/java/nio/file/Path.html :joining_func: java.nio.file.Path.resolve + include::../../common/pitfalls/oob-specific-path-joining.adoc[] diff --git a/rules/S787/cfamily/rule.adoc b/rules/S787/cfamily/rule.adoc index df1a9194d4..2342f729ad 100644 --- a/rules/S787/cfamily/rule.adoc +++ b/rules/S787/cfamily/rule.adoc @@ -10,4 +10,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S800/abap/rule.adoc b/rules/S800/abap/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/abap/rule.adoc +++ b/rules/S800/abap/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S800/cfamily/rule.adoc b/rules/S800/cfamily/rule.adoc index e6119d59c8..bf08bc7e9b 100644 --- a/rules/S800/cfamily/rule.adoc +++ b/rules/S800/cfamily/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + == Resources * MISRA {cpp}:2008, 2-10-1 diff --git a/rules/S800/cobol/rule.adoc b/rules/S800/cobol/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/cobol/rule.adoc +++ b/rules/S800/cobol/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S800/csharp/rule.adoc b/rules/S800/csharp/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/csharp/rule.adoc +++ b/rules/S800/csharp/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S800/flex/rule.adoc b/rules/S800/flex/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/flex/rule.adoc +++ b/rules/S800/flex/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S800/java/rule.adoc b/rules/S800/java/rule.adoc index 6893fa752f..2182622f4d 100644 --- a/rules/S800/java/rule.adoc +++ b/rules/S800/java/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + == Resources * https://wiki.sei.cmu.edu/confluence/x/7DZGBQ[CERT, DCL50-J.] - Use visually distinct identifiers diff --git a/rules/S800/javascript/rule.adoc b/rules/S800/javascript/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/javascript/rule.adoc +++ b/rules/S800/javascript/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S800/php/rule.adoc b/rules/S800/php/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/php/rule.adoc +++ b/rules/S800/php/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S800/pli/rule.adoc b/rules/S800/pli/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/pli/rule.adoc +++ b/rules/S800/pli/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S800/plsql/rule.adoc b/rules/S800/plsql/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/plsql/rule.adoc +++ b/rules/S800/plsql/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S800/python/rule.adoc b/rules/S800/python/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/python/rule.adoc +++ b/rules/S800/python/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S800/rpg/rule.adoc b/rules/S800/rpg/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/rpg/rule.adoc +++ b/rules/S800/rpg/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S800/vb6/rule.adoc b/rules/S800/vb6/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/vb6/rule.adoc +++ b/rules/S800/vb6/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S800/vbnet/rule.adoc b/rules/S800/vbnet/rule.adoc index 79d6542388..9f1e8988a8 100644 --- a/rules/S800/vbnet/rule.adoc +++ b/rules/S800/vbnet/rule.adoc @@ -1,4 +1,5 @@ include::../rule.adoc[] + ifdef::env-github,rspecator-view[] ''' diff --git a/rules/S801/cfamily/rule.adoc b/rules/S801/cfamily/rule.adoc index 92308ca712..07701c513d 100644 --- a/rules/S801/cfamily/rule.adoc +++ b/rules/S801/cfamily/rule.adoc @@ -14,4 +14,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S801/plsql/rule.adoc b/rules/S801/plsql/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S801/plsql/rule.adoc +++ b/rules/S801/plsql/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S818/cfamily/rule.adoc b/rules/S818/cfamily/rule.adoc index 4b6af57e77..155faaa4aa 100644 --- a/rules/S818/cfamily/rule.adoc +++ b/rules/S818/cfamily/rule.adoc @@ -48,4 +48,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S818/csharp/rule.adoc b/rules/S818/csharp/rule.adoc index 3289b8c7a3..28cae32de8 100644 --- a/rules/S818/csharp/rule.adoc +++ b/rules/S818/csharp/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S818/java/rule.adoc b/rules/S818/java/rule.adoc index 243c68d8f6..c270f12aa2 100644 --- a/rules/S818/java/rule.adoc +++ b/rules/S818/java/rule.adoc @@ -51,4 +51,5 @@ Set to "true" to ignore "float" and "double" declarations. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S820/cfamily/rule.adoc b/rules/S820/cfamily/rule.adoc index cefff77e17..9b062afe47 100644 --- a/rules/S820/cfamily/rule.adoc +++ b/rules/S820/cfamily/rule.adoc @@ -47,4 +47,5 @@ Explicitly specify a type for this declaration. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S836/cfamily/rule.adoc b/rules/S836/cfamily/rule.adoc index fbac7c08e8..6687d62f76 100644 --- a/rules/S836/cfamily/rule.adoc +++ b/rules/S836/cfamily/rule.adoc @@ -53,4 +53,5 @@ Review the data-flow - possible use of uninitialized value. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S836/php/rule.adoc b/rules/S836/php/rule.adoc index b039a623dd..80f2c4a355 100644 --- a/rules/S836/php/rule.adoc +++ b/rules/S836/php/rule.adoc @@ -58,4 +58,5 @@ Review the data-flow - use of uninitialized value. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S864/cfamily/rule.adoc b/rules/S864/cfamily/rule.adoc index 33cd28be8c..14922e4bf8 100644 --- a/rules/S864/cfamily/rule.adoc +++ b/rules/S864/cfamily/rule.adoc @@ -77,4 +77,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S864/cobol/rule.adoc b/rules/S864/cobol/rule.adoc index 9273c32de7..09ce80a525 100644 --- a/rules/S864/cobol/rule.adoc +++ b/rules/S864/cobol/rule.adoc @@ -51,4 +51,5 @@ The maximum number of operators allowed before an issue is raised (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S864/java/rule.adoc b/rules/S864/java/rule.adoc index 7dd926511e..ae2d8e250f 100644 --- a/rules/S864/java/rule.adoc +++ b/rules/S864/java/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S867/cfamily/rule.adoc b/rules/S867/cfamily/rule.adoc index 41c41d8c13..dee4a4c295 100644 --- a/rules/S867/cfamily/rule.adoc +++ b/rules/S867/cfamily/rule.adoc @@ -23,4 +23,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S878/cfamily/rule.adoc b/rules/S878/cfamily/rule.adoc index 4a8766bb41..cf7af6cf85 100644 --- a/rules/S878/cfamily/rule.adoc +++ b/rules/S878/cfamily/rule.adoc @@ -56,4 +56,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S878/javascript/rule.adoc b/rules/S878/javascript/rule.adoc index 1f62f42ba4..f5b4d55a97 100644 --- a/rules/S878/javascript/rule.adoc +++ b/rules/S878/javascript/rule.adoc @@ -32,4 +32,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S881/cfamily/rule.adoc b/rules/S881/cfamily/rule.adoc index 7526f77569..cdb114ca29 100644 --- a/rules/S881/cfamily/rule.adoc +++ b/rules/S881/cfamily/rule.adoc @@ -32,4 +32,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S881/csharp/rule.adoc b/rules/S881/csharp/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S881/csharp/rule.adoc +++ b/rules/S881/csharp/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S881/java/rule.adoc b/rules/S881/java/rule.adoc index 151331902d..8a536c35f9 100644 --- a/rules/S881/java/rule.adoc +++ b/rules/S881/java/rule.adoc @@ -27,4 +27,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S881/javascript/rule.adoc b/rules/S881/javascript/rule.adoc index f5db9e87ac..c45be3615f 100644 --- a/rules/S881/javascript/rule.adoc +++ b/rules/S881/javascript/rule.adoc @@ -15,4 +15,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S881/php/rule.adoc b/rules/S881/php/rule.adoc index c138ec3a9e..2d57535f5b 100644 --- a/rules/S881/php/rule.adoc +++ b/rules/S881/php/rule.adoc @@ -39,4 +39,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S881/swift/rule.adoc b/rules/S881/swift/rule.adoc index 3641ecedbc..7908d18724 100644 --- a/rules/S881/swift/rule.adoc +++ b/rules/S881/swift/rule.adoc @@ -39,4 +39,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S888/cfamily/rule.adoc b/rules/S888/cfamily/rule.adoc index 2a0c12cd61..a147efad5c 100644 --- a/rules/S888/cfamily/rule.adoc +++ b/rules/S888/cfamily/rule.adoc @@ -30,4 +30,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S888/java/rule.adoc b/rules/S888/java/rule.adoc index 728950d9fe..daf3504289 100644 --- a/rules/S888/java/rule.adoc +++ b/rules/S888/java/rule.adoc @@ -26,4 +26,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S888/javascript/rule.adoc b/rules/S888/javascript/rule.adoc index 1be466d8d1..9fb0534bf9 100644 --- a/rules/S888/javascript/rule.adoc +++ b/rules/S888/javascript/rule.adoc @@ -57,4 +57,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S899/cfamily/rule.adoc b/rules/S899/cfamily/rule.adoc index 03294d490f..bb37a57ec4 100644 --- a/rules/S899/cfamily/rule.adoc +++ b/rules/S899/cfamily/rule.adoc @@ -60,4 +60,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S899/kotlin/rule.adoc b/rules/S899/kotlin/rule.adoc index dfe5674abd..fd302b416f 100644 --- a/rules/S899/kotlin/rule.adoc +++ b/rules/S899/kotlin/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S901/cfamily/rule.adoc b/rules/S901/cfamily/rule.adoc index dc212eeac1..a5bd577884 100644 --- a/rules/S901/cfamily/rule.adoc +++ b/rules/S901/cfamily/rule.adoc @@ -13,4 +13,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S901/java/rule.adoc b/rules/S901/java/rule.adoc index b8648ff904..56b28a9869 100644 --- a/rules/S901/java/rule.adoc +++ b/rules/S901/java/rule.adoc @@ -11,4 +11,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S903/cfamily/rule.adoc b/rules/S903/cfamily/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S903/cfamily/rule.adoc +++ b/rules/S903/cfamily/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S903/csharp/rule.adoc b/rules/S903/csharp/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S903/csharp/rule.adoc +++ b/rules/S903/csharp/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S903/java/rule.adoc b/rules/S903/java/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S903/java/rule.adoc +++ b/rules/S903/java/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S903/javascript/rule.adoc b/rules/S903/javascript/rule.adoc index 0954fd1307..e2370dda76 100644 --- a/rules/S903/javascript/rule.adoc +++ b/rules/S903/javascript/rule.adoc @@ -6,4 +6,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S905/cfamily/rule.adoc b/rules/S905/cfamily/rule.adoc index 464bf653dd..c0aaf39abc 100644 --- a/rules/S905/cfamily/rule.adoc +++ b/rules/S905/cfamily/rule.adoc @@ -41,4 +41,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S905/php/rule.adoc b/rules/S905/php/rule.adoc index 4ca65dd10c..30a578c315 100644 --- a/rules/S905/php/rule.adoc +++ b/rules/S905/php/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S905/python/rule.adoc b/rules/S905/python/rule.adoc index 86193ac760..99579bf36b 100644 --- a/rules/S905/python/rule.adoc +++ b/rules/S905/python/rule.adoc @@ -78,4 +78,5 @@ Comma separated list of operators which have a side effect and should be ignored (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S907/cfamily/rule.adoc b/rules/S907/cfamily/rule.adoc index 4ccf9cf454..7b7963307c 100644 --- a/rules/S907/cfamily/rule.adoc +++ b/rules/S907/cfamily/rule.adoc @@ -43,4 +43,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S907/csharp/rule.adoc b/rules/S907/csharp/rule.adoc index d4f3cbe4fa..fe598e7f71 100644 --- a/rules/S907/csharp/rule.adoc +++ b/rules/S907/csharp/rule.adoc @@ -13,4 +13,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S907/php/rule.adoc b/rules/S907/php/rule.adoc index 5615879e29..1dad34346d 100644 --- a/rules/S907/php/rule.adoc +++ b/rules/S907/php/rule.adoc @@ -37,4 +37,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S907/pli/rule.adoc b/rules/S907/pli/rule.adoc index f3218c417d..c95553bc53 100644 --- a/rules/S907/pli/rule.adoc +++ b/rules/S907/pli/rule.adoc @@ -56,4 +56,5 @@ Regular expression used to check goto targets against (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S907/plsql/rule.adoc b/rules/S907/plsql/rule.adoc index 69bf4c77f6..c7c69289e0 100644 --- a/rules/S907/plsql/rule.adoc +++ b/rules/S907/plsql/rule.adoc @@ -58,4 +58,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S907/rpg/rule.adoc b/rules/S907/rpg/rule.adoc index 10fc2cbe47..f78b542c82 100644 --- a/rules/S907/rpg/rule.adoc +++ b/rules/S907/rpg/rule.adoc @@ -24,4 +24,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S907/tsql/rule.adoc b/rules/S907/tsql/rule.adoc index c22ac1be03..4cf42be336 100644 --- a/rules/S907/tsql/rule.adoc +++ b/rules/S907/tsql/rule.adoc @@ -15,4 +15,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S907/vb6/rule.adoc b/rules/S907/vb6/rule.adoc index bbbd5e196e..1395593eda 100644 --- a/rules/S907/vb6/rule.adoc +++ b/rules/S907/vb6/rule.adoc @@ -57,4 +57,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S907/vbnet/rule.adoc b/rules/S907/vbnet/rule.adoc index 2dad22068f..1ae8d742e1 100644 --- a/rules/S907/vbnet/rule.adoc +++ b/rules/S907/vbnet/rule.adoc @@ -53,4 +53,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S909/cfamily/rule.adoc b/rules/S909/cfamily/rule.adoc index 15657ed458..397c338fb4 100644 --- a/rules/S909/cfamily/rule.adoc +++ b/rules/S909/cfamily/rule.adoc @@ -46,4 +46,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S909/javascript/rule.adoc b/rules/S909/javascript/rule.adoc index 24fc41b300..c0e7996e81 100644 --- a/rules/S909/javascript/rule.adoc +++ b/rules/S909/javascript/rule.adoc @@ -38,4 +38,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S909/plsql/rule.adoc b/rules/S909/plsql/rule.adoc index 43bbca5ec7..903c56ff6a 100644 --- a/rules/S909/plsql/rule.adoc +++ b/rules/S909/plsql/rule.adoc @@ -64,4 +64,5 @@ Remove this use of "EXIT". (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S925/cfamily/rule.adoc b/rules/S925/cfamily/rule.adoc index a44ca39f65..b2783a45fc 100644 --- a/rules/S925/cfamily/rule.adoc +++ b/rules/S925/cfamily/rule.adoc @@ -25,4 +25,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S930/cfamily/rule.adoc b/rules/S930/cfamily/rule.adoc index 168e86ad69..5547dfb7a3 100644 --- a/rules/S930/cfamily/rule.adoc +++ b/rules/S930/cfamily/rule.adoc @@ -24,4 +24,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S930/php/rule.adoc b/rules/S930/php/rule.adoc index c82146f246..b23a128e87 100644 --- a/rules/S930/php/rule.adoc +++ b/rules/S930/php/rule.adoc @@ -49,4 +49,5 @@ include::../highlighting.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S930/python/rule.adoc b/rules/S930/python/rule.adoc index 91ea27b593..28f9c01a7b 100644 --- a/rules/S930/python/rule.adoc +++ b/rules/S930/python/rule.adoc @@ -90,4 +90,5 @@ Secondary: (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S935/cfamily/rule.adoc b/rules/S935/cfamily/rule.adoc index dd1eb15dd9..f9bd7b9c94 100644 --- a/rules/S935/cfamily/rule.adoc +++ b/rules/S935/cfamily/rule.adoc @@ -91,4 +91,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S935/javascript/rule.adoc b/rules/S935/javascript/rule.adoc index dd19da3c2f..ccc8bfbf1d 100644 --- a/rules/S935/javascript/rule.adoc +++ b/rules/S935/javascript/rule.adoc @@ -49,4 +49,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S935/python/rule.adoc b/rules/S935/python/rule.adoc index 51fab34bd1..3528e4df63 100644 --- a/rules/S935/python/rule.adoc +++ b/rules/S935/python/rule.adoc @@ -67,4 +67,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S979/cfamily/rule.adoc b/rules/S979/cfamily/rule.adoc index 6ad1ebf2c9..bb676a60c9 100644 --- a/rules/S979/cfamily/rule.adoc +++ b/rules/S979/cfamily/rule.adoc @@ -19,4 +19,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S979/java/rule.adoc b/rules/S979/java/rule.adoc index 4ce5ca1157..f0850af12a 100644 --- a/rules/S979/java/rule.adoc +++ b/rules/S979/java/rule.adoc @@ -17,4 +17,5 @@ include::../message.adoc[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S997/cfamily/rule.adoc b/rules/S997/cfamily/rule.adoc index 59dd2e5e81..8ec834f066 100644 --- a/rules/S997/cfamily/rule.adoc +++ b/rules/S997/cfamily/rule.adoc @@ -16,4 +16,5 @@ ifdef::env-github,rspecator-view[] (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[] diff --git a/rules/S999/cfamily/rule.adoc b/rules/S999/cfamily/rule.adoc index 63989ce474..29c9780735 100644 --- a/rules/S999/cfamily/rule.adoc +++ b/rules/S999/cfamily/rule.adoc @@ -62,4 +62,5 @@ This goto statement must be replaced by a standard iteration statement. (visible only on this page) include::../comments-and-links.adoc[] + endif::env-github,rspecator-view[]