Skip to content

Files

Latest commit

 

History

History
27 lines (17 loc) · 509 Bytes

File metadata and controls

27 lines (17 loc) · 509 Bytes

Pattern: Indentation is not a multiple of four (comment)

Issue: -

Description

Comment indentation should be a multiple of four.

Example of incorrect code:

In the following example, the comment is indented with 5 spaces.

     # 'httpd/unix-directory'
mimetype = 'application/x-directory'

Example of correct code:

    # 'httpd/unix-directory'
mimetype = 'application/x-directory'

Further Reading