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
|
2024-07-05 16:17:15 +00:00
|
|
|
rev: v4.6.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
|
2024-02-01 15:35:39 +00:00
|
|
|
# keep formatting in README flexible
|
2023-03-21 14:54:54 +00:00
|
|
|
exclude: README.md
|
2023-09-26 15:54:44 +00:00
|
|
|
- id: check-json
|
2021-06-01 05:43:50 +00:00
|
|
|
- id: check-yaml
|
2023-09-26 15:54:44 +00:00
|
|
|
- id: check-toml
|
2021-06-01 05:43:50 +00:00
|
|
|
- id: check-docstring-first
|
|
|
|
- id: check-executables-have-shebangs
|
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
|
|
|
|
2023-09-26 15:54:44 +00:00
|
|
|
- repo: https://github.com/codespell-project/codespell
|
2024-07-05 16:17:15 +00:00
|
|
|
rev: v2.3.0
|
2023-09-26 15:54:44 +00:00
|
|
|
hooks:
|
|
|
|
- id: codespell
|
|
|
|
additional_dependencies: [tomli]
|
|
|
|
#args: ["--write-changes"] # uncomment if you want to get automatic fixing
|
|
|
|
|
2023-01-04 23:48:35 +00:00
|
|
|
- repo: https://github.com/PyCQA/docformatter
|
2024-10-21 09:53:45 +00:00
|
|
|
rev: 06907d0267368b49b9180eed423fae5697c1e909 # todo: fix for docformatter after last 1.7.5
|
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
|
|
|
|
2024-02-26 15:20:33 +00:00
|
|
|
- repo: https://github.com/sphinx-contrib/sphinx-lint
|
|
|
|
rev: v0.9.1
|
|
|
|
hooks:
|
|
|
|
- id: sphinx-lint
|
|
|
|
|
2023-10-31 01:16:02 +00:00
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
2024-07-05 16:17:15 +00:00
|
|
|
rev: v0.5.0
|
2023-10-31 01:16:02 +00:00
|
|
|
hooks:
|
2024-03-15 19:48:17 +00:00
|
|
|
# try to fix what is possible
|
|
|
|
- id: ruff
|
|
|
|
args: ["--fix"]
|
|
|
|
# perform formatting updates
|
2024-02-15 18:39:17 +00:00
|
|
|
- id: ruff-format
|
2024-03-15 19:48:17 +00:00
|
|
|
# validate if all is fine with preview mode
|
2024-02-26 15:20:33 +00:00
|
|
|
- id: ruff
|
2023-10-31 01:16:02 +00:00
|
|
|
|
2021-08-03 18:19:09 +00:00
|
|
|
- repo: https://github.com/executablebooks/mdformat
|
2023-10-03 20:07:21 +00:00
|
|
|
rev: 0.7.17
|
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 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
|
2024-01-10 18:11:48 +00:00
|
|
|
rev: v3.1.0
|
2023-09-25 12:34:41 +00:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
|
|
|
# https://prettier.io/docs/en/options.html#print-width
|
2024-04-12 11:11:21 +00:00
|
|
|
files: \.(json|yml|yaml|toml)
|
2023-09-25 12:34:41 +00:00
|
|
|
args: ["--print-width=120"]
|