[pycodestyle] # Standard Python line length for teaching. max-line-length = 79 # Ignore rules that cause noisy or confusing warnings for beginners. # These are the same ignores autopep8 uses by default. ignore = E121, # continuation line under-indented E123, # closing bracket indentation E126, # continuation line over-indented E226, # missing whitespace around arithmetic operator E24, # multiple spaces after ',' or similar E704 # multiple statements on one line [autopep8] # Must match pycodestyle. max_line_length = 79 # Safe, beginner-appropriate rewrite level. aggressive = 1 # Apply the same ignores so formatting remains consistent. ignore = E121, E123, E126, E226, E24, E704