mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
remove C++ stuff from CheckSpacing
This commit is contained in:
parent
ef23bbe6ee
commit
95659707a8
14
clint.py
14
clint.py
@ -2644,11 +2644,6 @@ def CheckSpacing(filename, clean_lines, linenum, nesting_state, error):
|
||||
'Redundant blank line at the end of a code block '
|
||||
'should be deleted.')
|
||||
|
||||
matched = Match(r'\s*(public|protected|private):', prev_line)
|
||||
if matched:
|
||||
error(filename, linenum, 'whitespace/blank_line', 3,
|
||||
'Do not leave a blank line after "%s:"' % matched.group(1))
|
||||
|
||||
# Next, we complain if there's a comment too near the text
|
||||
commentpos = line.find('//')
|
||||
if commentpos != -1:
|
||||
@ -2870,7 +2865,7 @@ def CheckSpacing(filename, clean_lines, linenum, nesting_state, error):
|
||||
|
||||
# You shouldn't have spaces before your brackets, except maybe after
|
||||
# 'delete []' or 'new char * []'.
|
||||
if Search(r'\w\s+\[', line) and not Search(r'delete\s+\[', line):
|
||||
if Search(r'\w\s+\[', line):
|
||||
error(filename, linenum, 'whitespace/braces', 5,
|
||||
'Extra space before [')
|
||||
|
||||
@ -2890,13 +2885,6 @@ def CheckSpacing(filename, clean_lines, linenum, nesting_state, error):
|
||||
'Extra space before last semicolon. If this should be an empty '
|
||||
'statement, use {} instead.')
|
||||
|
||||
# In range-based for, we wanted spaces before and after the colon, but
|
||||
# not around "::" tokens that might appear.
|
||||
if (Search('for *\(.*[^:]:[^: ]', line) or
|
||||
Search('for *\(.*[^: ]:[^:]', line)):
|
||||
error(filename, linenum, 'whitespace/forcolon', 2,
|
||||
'Missing space around colon in range-based for loop')
|
||||
|
||||
|
||||
def GetPreviousNonBlankLine(clean_lines, linenum):
|
||||
"""Return the most recent non-blank line and its line number.
|
||||
|
Loading…
Reference in New Issue
Block a user