lightning/.pre-commit-config.yaml

36 lines
1.0 KiB
YAML
Raw Normal View History

2020-08-20 02:03:22 +00:00
# Copyright The PyTorch Lightning team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
default_language_version:
python: python3.8
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: https://github.com/PyCQA/isort
rev: 5.8.0
hooks:
- id: isort
args: [--settings-path, ./pyproject.toml]
2021-02-02 14:03:36 +00:00
- repo: https://github.com/pre-commit/mirrors-yapf
rev: v0.31.0
2021-02-02 14:03:36 +00:00
hooks:
- id: yapf
args: [--parallel, --in-place]