Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 448 Bytes

File metadata and controls

25 lines (16 loc) · 448 Bytes

Pattern: Unexpected indentation (comment)

Issue: -

Description

Comments should be indented relative to the code in the block they are in.

Example of incorrect code:

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

Example of correct code:

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

Further Reading