https://github.com/lmfit/lmfit-py
Revision e59a46077d4be2322b8999a62449461e303aa72c authored by Matt Newville on 02 April 2019, 00:13:20 UTC, committed by GitHub on 02 April 2019, 00:13:20 UTC
2 parent s d1ed894 + 785fe08
Raw File
Tip revision: e59a46077d4be2322b8999a62449461e303aa72c authored by Matt Newville on 02 April 2019, 00:13:20 UTC
Merge pull request #548 from lmfit/html_repr
Tip revision: e59a460
.pre-commit-config.yaml
exclude: 'versioneer.py|lmfit/_version|doc/conf.py'

repos:
-   repo: https://github.com/asottile/pyupgrade
    rev: v1.12.0
    hooks:
    -   id: pyupgrade
        # for now don't force to change from %-operator to {}
        args: [--keep-percent-format]

-   repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v2.1.0
    hooks:
    -   id: check-ast
    -   id: check-builtin-literals
    -   id: check-merge-conflict
    -   id: debug-statements
    -   id: end-of-file-fixer
    -   id: mixed-line-ending
    -   id: trailing-whitespace
    -   id: requirements-txt-fixer

-   repo: https://gitlab.com/pycqa/flake8
    rev: 3.7.7
    hooks:
    -   id: flake8
        exclude: 'lmfit/__init__.py|lmfit/ui/__init__.py'
        args: ['--ignore=E121,E123,E126,E226,W503,W504,E501,E731']

-   repo: local
    hooks:
    -   id: rstcheck
        name: rstcheck
        entry: rstcheck
        files: '.rst'
        language: python
        additional_dependencies: [rstcheck, sphinx]

-   repo: https://github.com/pre-commit/pygrep-hooks
    rev: v1.2.0
    hooks:
    -   id: rst-backticks
back to top