blob: e3d420f8ef98a9a097ec98afac71c14238a8b0a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
"""Tests for fixme and its disabling and enabling."""
# pylint: disable=missing-function-docstring, unused-variable
# +1: [fixme]
# FIXME: beep
def function():
variable = "FIXME: Ignore me!"
# +1: [fixme]
test = "text" # FIXME: Valid test
# +1: [fixme]
# TODO: Do something with the variables
# +1: [fixme]
xxx = "n/a" # XXX: Fix this later
# +1: [fixme]
#FIXME: no space after hash
# +1: [fixme]
#todo: no space after hash
# +1: [fixme]
# FIXME: this is broken
# +1: [fixme]
# ./TODO: find with notes
# +1: [fixme]
# TO make something DO: find with regex
# FIXME: this is broken (ISSUE-1234)
#FIXME: in fact nothing to fix #pylint: disable=fixme
#TODO: in fact nothing to do #pylint: disable=fixme
#TODO: in fact nothing to do #pylint: disable=line-too-long, fixme, useless-suppression
# Todoist API mentioned should not result in a message.
# pylint: disable-next=fixme
# FIXME: Don't raise when the message is disabled
# This line needs to be at the end of the file to make sure it doesn't end with a comment
# Pragma's compare against the 'lineno' attribute of the respective nodes which
# would stop too soon otherwise.
print()
|