Skip to content

Commit 98b41f8

Browse files
committed
upd
1 parent 1906f53 commit 98b41f8

File tree

12 files changed

+21
-908
lines changed

12 files changed

+21
-908
lines changed

.gitignore

Lines changed: 1 addition & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,15 @@
1-
# SPDX-FileCopyrightText: 2022 Kattni Rembor, written for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2023 Jose D. Montoya
22
#
33
# SPDX-License-Identifier: MIT
44

5-
# Do not include files and directories created by your personal work environment, such as the IDE
6-
# you use, except for those already listed here. Pull requests including changes to this file will
7-
# not be accepted.
8-
9-
# This .gitignore file contains rules for files generated by working with CircuitPython libraries,
10-
# including building Sphinx, testing with pip, and creating a virual environment, as well as the
11-
# MacOS and IDE-specific files generated by using MacOS in general, or the PyCharm or VSCode IDEs.
12-
13-
# If you find that there are files being generated on your machine that should not be included in
14-
# your git commit, you should create a .gitignore_global file on your computer to include the
15-
# files created by your personal setup. To do so, follow the two steps below.
16-
17-
# First, create a file called .gitignore_global somewhere convenient for you, and add rules for
18-
# the files you want to exclude from git commits.
19-
20-
# Second, configure Git to use the exclude file for all Git repositories by running the
21-
# following via commandline, replacing "path/to/your/" with the actual path to your newly created
22-
# .gitignore_global file:
23-
# git config --global core.excludesfile path/to/your/.gitignore_global
24-
25-
# CircuitPython-specific files
265
*.mpy
27-
28-
# Python-specific files
296
__pycache__
307
*.pyc
31-
32-
# Sphinx build-specific files
338
_build
34-
35-
# This file results from running `pip -e install .` in a local repository
369
*.egg-info
37-
38-
# Virtual environment-specific files
3910
.env
4011
.venv
41-
42-
# MacOS-specific files
4312
*.DS_Store
44-
45-
# IDE-specific files
4613
.idea
4714
.vscode
4815
*~

.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)