Skip to content

Commit a9a0193

Browse files
committed
update
1 parent 801f75f commit a9a0193

File tree

11 files changed

+29
-401
lines changed

11 files changed

+29
-401
lines changed

.gitignore

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
1-
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2023 Jose D. Montoya
22
#
3-
# SPDX-License-Identifier: Unlicense
3+
# SPDX-License-Identifier: MIT
44

55
*.mpy
6-
.idea
76
__pycache__
8-
_build
97
*.pyc
8+
_build
9+
*.egg-info
1010
.env
11-
.python-version
12-
build*/
13-
bundles
11+
.venv
1412
*.DS_Store
15-
.eggs
16-
dist
17-
**/*.egg-info
13+
.idea
1814
.vscode
15+
*~

.pre-commit-config.yaml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,31 @@
1-
# SPDX-FileCopyrightText: 2020 Diego Elio Pettenò
1+
# SPDX-FileCopyrightText: 2023 Jose D. Montoya
22
#
33
# SPDX-License-Identifier: Unlicense
44

55
repos:
66
- repo: https://github.com/python/black
7-
rev: 22.3.0
7+
rev: 23.3.0
88
hooks:
99
- id: black
1010
- repo: https://github.com/pre-commit/pre-commit-hooks
11-
rev: v4.2.0
11+
rev: v4.4.0
1212
hooks:
1313
- id: check-yaml
1414
- id: end-of-file-fixer
1515
- id: trailing-whitespace
1616
- repo: https://github.com/pycqa/pylint
17-
rev: v2.15.5
17+
rev: v2.17.4
1818
hooks:
1919
- id: pylint
2020
name: pylint (library code)
2121
types: [python]
2222
args:
2323
- --disable=consider-using-f-string
24-
exclude: "^(docs/|examples/|tests/|setup.py$)"
24+
exclude: "^(docs/|examples/|tests/)"
2525
- id: pylint
2626
name: pylint (example code)
2727
description: Run pylint rules on "examples/*.py" files
2828
types: [python]
2929
files: "^examples/"
3030
args:
3131
- --disable=missing-docstring,invalid-name,consider-using-f-string,duplicate-code
32-
- id: pylint
33-
name: pylint (test code)
34-
description: Run pylint rules on "tests/*.py" files
35-
types: [python]
36-
files: "^tests/"
37-
args:
38-
- --disable=missing-docstring,consider-using-f-string,duplicate-code

0 commit comments

Comments
 (0)