2020-08-20 02:03:22 +00:00
|
|
|
# Copyright The Lightning AI 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
|
|
|
|
#
|
2020-06-03 16:23:14 +00:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
2020-08-20 02:03:22 +00:00
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
2020-06-03 16:23:14 +00:00
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
2020-08-20 02:03:22 +00:00
|
|
|
# limitations under the License.
|
|
|
|
|
2020-06-03 16:23:14 +00:00
|
|
|
default_language_version:
|
2022-04-06 15:01:24 +00:00
|
|
|
python: python3
|
2020-06-03 16:23:14 +00:00
|
|
|
|
2021-07-13 07:16:02 +00:00
|
|
|
ci:
|
|
|
|
autofix_prs: true
|
2023-09-25 12:34:41 +00:00
|
|
|
autoupdate_commit_msg: "[pre-commit.ci] pre-commit suggestions"
|
2021-07-13 07:16:02 +00:00
|
|
|
autoupdate_schedule: quarterly
|
|
|
|
# submodules: true
|
|
|
|
|
2020-06-03 16:23:14 +00:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-01-04 23:48:35 +00:00
|
|
|
rev: v4.4.0
|
2020-06-03 16:23:14 +00:00
|
|
|
hooks:
|
|
|
|
- id: end-of-file-fixer
|
2021-06-01 05:43:50 +00:00
|
|
|
- id: trailing-whitespace
|
2023-03-21 14:54:54 +00:00
|
|
|
# ignoring Wills's wild changes
|
|
|
|
exclude: README.md
|
2021-06-01 05:43:50 +00:00
|
|
|
- id: check-yaml
|
|
|
|
- id: check-docstring-first
|
|
|
|
- id: check-executables-have-shebangs
|
|
|
|
- id: check-toml
|
2021-06-10 14:45:54 +00:00
|
|
|
- id: check-case-conflict
|
|
|
|
- id: check-added-large-files
|
2023-09-25 12:34:41 +00:00
|
|
|
args: ["--maxkb=350", "--enforce-all"]
|
2021-06-10 14:45:54 +00:00
|
|
|
exclude: |
|
2023-09-25 12:34:41 +00:00
|
|
|
(?x)^(
|
|
|
|
docs/source-pytorch/_static/images/general/fast_2.gif|
|
|
|
|
docs/source-pytorch/_static/images/mnist_imgs/pt_to_pl.jpg|
|
|
|
|
docs/source-pytorch/_static/images/lightning_module/pt_to_pl.png|
|
|
|
|
docs/source-pytorch/_static/images/general/pl_quick_start_full_compressed.gif|
|
|
|
|
docs/source-pytorch/_static/images/general/pl_overview_flat.jpg|
|
|
|
|
docs/source-pytorch/_static/images/general/pl_overview.gif|
|
|
|
|
src/lightning/fabric/CHANGELOG.md|
|
|
|
|
src/lightning/pytorch/CHANGELOG.md
|
|
|
|
)$
|
2021-06-10 14:45:54 +00:00
|
|
|
- id: detect-private-key
|
2020-11-13 21:57:46 +00:00
|
|
|
|
2021-07-26 12:38:12 +00:00
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2023-08-08 14:26:06 +00:00
|
|
|
rev: v3.8.0
|
2021-07-26 12:38:12 +00:00
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
2023-02-01 01:36:42 +00:00
|
|
|
args: [--py38-plus]
|
2021-07-26 12:38:12 +00:00
|
|
|
name: Upgrade code
|
|
|
|
|
2023-01-04 23:48:35 +00:00
|
|
|
- repo: https://github.com/PyCQA/docformatter
|
2023-08-08 14:26:06 +00:00
|
|
|
rev: v1.7.3
|
2021-09-06 12:49:09 +00:00
|
|
|
hooks:
|
|
|
|
- id: docformatter
|
2023-08-09 14:44:20 +00:00
|
|
|
additional_dependencies: [tomli]
|
|
|
|
args: ["--in-place"]
|
2021-09-06 12:49:09 +00:00
|
|
|
|
2021-08-02 16:05:56 +00:00
|
|
|
- repo: https://github.com/asottile/yesqa
|
2023-08-08 14:26:06 +00:00
|
|
|
rev: v1.5.0
|
2021-08-02 16:05:56 +00:00
|
|
|
hooks:
|
|
|
|
- id: yesqa
|
|
|
|
name: Unused noqa
|
2023-04-24 21:57:08 +00:00
|
|
|
additional_dependencies:
|
2023-04-27 09:43:12 +00:00
|
|
|
#- pep8-naming
|
2023-05-04 15:50:39 +00:00
|
|
|
- flake8-pytest-style
|
2023-04-27 09:43:12 +00:00
|
|
|
- flake8-bandit
|
2023-04-24 21:57:08 +00:00
|
|
|
- flake8-simplify
|
2023-05-05 09:34:40 +00:00
|
|
|
- flake8-return
|
2021-08-02 16:05:56 +00:00
|
|
|
|
2021-01-08 15:55:58 +00:00
|
|
|
- repo: https://github.com/PyCQA/isort
|
2023-01-30 10:07:52 +00:00
|
|
|
rev: 5.12.0
|
2020-11-13 21:57:46 +00:00
|
|
|
hooks:
|
|
|
|
- id: isort
|
2021-06-01 05:43:50 +00:00
|
|
|
name: Format imports
|
2023-02-28 09:04:43 +00:00
|
|
|
exclude: docs/source-app
|
2020-12-09 02:57:11 +00:00
|
|
|
|
2021-07-26 11:37:35 +00:00
|
|
|
- repo: https://github.com/psf/black
|
2023-04-26 19:37:41 +00:00
|
|
|
rev: 23.3.0
|
2021-02-02 14:03:36 +00:00
|
|
|
hooks:
|
2021-07-26 11:37:35 +00:00
|
|
|
- id: black
|
2021-06-01 05:43:50 +00:00
|
|
|
name: Format code
|
2023-02-28 09:04:43 +00:00
|
|
|
exclude: docs/source-app
|
2021-06-01 05:43:50 +00:00
|
|
|
|
2021-07-28 16:08:31 +00:00
|
|
|
- repo: https://github.com/asottile/blacken-docs
|
2023-08-08 14:26:06 +00:00
|
|
|
rev: 1.14.0
|
2021-07-28 16:08:31 +00:00
|
|
|
hooks:
|
|
|
|
- id: blacken-docs
|
2021-12-21 17:06:15 +00:00
|
|
|
args: [--line-length=120]
|
2023-02-28 09:04:43 +00:00
|
|
|
exclude: docs/source-app
|
2021-07-28 16:08:31 +00:00
|
|
|
|
2021-08-03 18:19:09 +00:00
|
|
|
- repo: https://github.com/executablebooks/mdformat
|
2023-01-04 23:48:35 +00:00
|
|
|
rev: 0.7.16
|
2021-08-03 18:19:09 +00:00
|
|
|
hooks:
|
|
|
|
- id: mdformat
|
|
|
|
additional_dependencies:
|
|
|
|
- mdformat-gfm
|
|
|
|
#- mdformat-black
|
|
|
|
- mdformat_frontmatter
|
2022-07-18 23:23:26 +00:00
|
|
|
exclude: |
|
2022-11-04 12:31:27 +00:00
|
|
|
(?x)^(
|
2023-02-01 05:29:16 +00:00
|
|
|
src/lightning/app/CHANGELOG.md|
|
2023-02-01 17:18:32 +00:00
|
|
|
src/lightning/fabric/CHANGELOG.md|
|
2023-03-21 14:54:54 +00:00
|
|
|
src/lightning/pytorch/CHANGELOG.md|
|
|
|
|
README.md
|
2022-11-04 12:31:27 +00:00
|
|
|
)$
|
2021-08-03 18:19:09 +00:00
|
|
|
|
2023-09-25 12:34:41 +00:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
|
|
rev: v3.0.3
|
|
|
|
hooks:
|
|
|
|
- id: prettier
|
|
|
|
# https://prettier.io/docs/en/options.html#print-width
|
|
|
|
args: ["--print-width=120"]
|
|
|
|
|
2023-08-08 14:26:06 +00:00
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
2023-09-25 12:34:41 +00:00
|
|
|
rev: "v0.0.276"
|
2021-06-01 05:43:50 +00:00
|
|
|
hooks:
|
2023-01-19 16:48:28 +00:00
|
|
|
- id: ruff
|
2023-01-30 10:07:52 +00:00
|
|
|
args: ["--fix"]
|