Searched refs:IGNORE_LIST (Results 1 – 3 of 3) sorted by relevance
15 IGNORE_LIST=''19 IGNORE_LIST="$IGNORE_LIST,W191" # indentation contains tabs21 IGNORE_LIST="$IGNORE_LIST,E101" # indentation contains mixed spaces and tabs22 IGNORE_LIST="$IGNORE_LIST,E711" # comparison to None should be 'if cond is not None:'23 IGNORE_LIST="$IGNORE_LIST,E712" # comparison to False should be 'if cond is False:' or 'if not cond…24 IGNORE_LIST="$IGNORE_LIST,E722" # do not use bare 'except'26 IGNORE_LIST="$IGNORE_LIST,F401" # module imported but unused27 IGNORE_LIST="$IGNORE_LIST,F841" # local variable '...' is assigned to but never used31 IGNORE_LIST="$IGNORE_LIST,W291" # trailing whitespace32 IGNORE_LIST="$IGNORE_LIST,W293" # blank line contains whitespace[all …]
34 IGNORE_LIST = [ variable46 for ign in IGNORE_LIST: