diff options
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/ref-manual/qa-checks.rst | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/documentation/ref-manual/qa-checks.rst b/documentation/ref-manual/qa-checks.rst index 91a0f6149b..69ecad74b1 100644 --- a/documentation/ref-manual/qa-checks.rst +++ b/documentation/ref-manual/qa-checks.rst | |||
@@ -649,6 +649,22 @@ Errors and Warnings | |||
649 | on the operating system. If you are seeing this message then the specified script | 649 | on the operating system. If you are seeing this message then the specified script |
650 | may need to be patched to have a shorter in order to avoid runtime problems. | 650 | may need to be patched to have a shorter in order to avoid runtime problems. |
651 | 651 | ||
652 | .. _qa-check-space-around-equal: | ||
653 | |||
654 | - ``<filename>:<line number> has a lack of whitespace around the assignment: '<assignment>'`` | ||
655 | |||
656 | This warning indicated that there is missing spaces around an assignment. | ||
657 | |||
658 | For example, the following assignments would print a warning:: | ||
659 | |||
660 | FOO="bar" | ||
661 | FOO= "bar" | ||
662 | FOO ="bar" | ||
663 | |||
664 | These should be replaced by:: | ||
665 | |||
666 | FOO = "bar" | ||
667 | |||
652 | .. _qa-check-src-uri-bad: | 668 | .. _qa-check-src-uri-bad: |
653 | 669 | ||
654 | - ``<recipename>: SRC_URI uses unstable GitHub archives [src-uri-bad]`` | 670 | - ``<recipename>: SRC_URI uses unstable GitHub archives [src-uri-bad]`` |