Skip to content

Commit

Permalink
CPPLintBear.py: Correct docstring indentation
Browse files Browse the repository at this point in the history
Closes coala#2243
  • Loading branch information
karshd3v authored and gitmate-bot committed Jan 27, 2018
1 parent c5d00f3 commit b0b5560
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions bears/c_languages/CPPLintBear.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,12 @@ def create_arguments(filename, file, config_file,
cpplint_ignore: typed_list(str)=(),
cpplint_include: typed_list(str)=()):
"""
:param max_line_length: Maximum number of characters for a line.
:param cpplint_ignore: List of checkers to ignore.
:param cpplint_include: List of checkers to explicitly enable.
:param max_line_length:
Maximum number of characters for a line.
:param cpplint_ignore:
List of checkers to ignore.
:param cpplint_include:
List of checkers to explicitly enable.
"""
ignore = ','.join('-'+part.strip() for part in cpplint_ignore)
include = ','.join('+'+part.strip() for part in cpplint_include)
Expand Down

0 comments on commit b0b5560

Please sign in to comment.