git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.flake8
Commit message (Expand)AuthorAgeFilesLines
* + flake8's cognitive complexityH. P. 2024-05-261-0/+2
* don't disable tab warnings anymoreH. P. 2024-05-251-2/+3
|\
| * Superseding flake8-colors - considering that deprecatedH. P. 2023-05-061-1/+3
* | local fixesH. P. 2024-05-251-0/+4
|/
* syntax error fixed for formatH. P. 2022-03-211-1/+1
* bugfix: count (plus proper "doc-string")H. P. 2022-03-211-1/+2
* Initial commitH. P. 2022-03-191-0/+11
ame.Variable */ .highlight .ow { color: #0000aa } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #009999 } /* Literal.Number.Bin */ .highlight .mf { color: #009999 } /* Literal.Number.Float */ .highlight .mh { color: #009999 } /* Literal.Number.Hex */ .highlight .mi { color: #009999 } /* Literal.Number.Integer */ .highlight .mo { color: #009999 } /* Literal.Number.Oct */ .highlight .sa { color: #aa5500 } /* Literal.String.Affix */ .highlight .sb { color: #aa5500 } /* Literal.String.Backtick */ .highlight .sc { color: #aa5500 } /* Literal.String.Char */ .highlight .dl { color: #aa5500 } /* Literal.String.Delimiter */ .highlight .sd { color: #aa5500 } /* Literal.String.Doc */ .highlight .s2 { color: #aa5500 } /* Literal.String.Double */ .highlight .se { color: #aa5500 } /* Literal.String.Escape */ .highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */ .highlight .si { color: #aa5500 } /* Literal.String.Interpol */ .highlight .sx { color: #aa5500 } /* Literal.String.Other */ .highlight .sr { color: #009999 } /* Literal.String.Regex */ .highlight .s1 { color: #aa5500 } /* Literal.String.Single */ .highlight .ss { color: #0000aa } /* Literal.String.Symbol */ .highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */ .highlight .fm { color: #00aa00 } /* Name.Function.Magic */ .highlight .vc { color: #aa0000 } /* Name.Variable.Class */ .highlight .vg { color: #aa0000 } /* Name.Variable.Global */ .highlight .vi { color: #aa0000 } /* Name.Variable.Instance */ .highlight .vm { color: #aa0000 } /* Name.Variable.Magic */ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
# vim:syntax=dosini
[flake8]
# Print sum of all errors
count = True
# show-source = True
# W191: tabs instead of spaces (screw you!), E401: multiple imports on a single line
# ignore = W191,E401
ignore = E401
max-line-length = 100
# Do test for docstrings. Laziness sucks.
doctests = True
# use only if flake8-colors is installed:
# format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}:\\t${red_bold}%(code)s${reset} %(text)s
# Superseding flake8-colors:
format = %(cyan)s%(path)s%(reset)s:%(yellow)s%(bold)s%(row)d%(reset)s:%(green)s%(bold)s%(col)d%(reset)s: %(red)s%(bold)s%(code)s%(reset)s %(text)s
# python8-flake8-cognitive-complexity
max-cognitive-complexity = 16
#per-file-ignores =
#    # imported but unused
#    __init__.py: F401