Skip to content
Snippets Groups Projects
setup.cfg 424 B
Newer Older
  • Learn to ignore specific revisions
  • [flake8]
    
    Andreas Klöckner's avatar
    Andreas Klöckner committed
    ignore = E126,E127,E128,E123,E226,E241,E242,E265,W503,E402
    
    max-line-length=85
    
    Andreas Klöckner's avatar
    Andreas Klöckner committed
    exclude=
      grudge/models/gas_dynamics,
      grudge/models/burgers.py,
      grudge/models/pml.py,
      grudge/models/diffusion.py,
      grudge/models/nd_calculus.py,
      grudge/dt_finding.py
    
    
    
    inline-quotes = "
    docstring-quotes = """
    multiline-quotes = """
    
    
    [mypy]
    ignore_missing_imports = True
    
    [mypy-grudge.models.gas_dynamics]
    ignore_errors = True