|
1 |
| -# SPDX-FileCopyrightText: 2022 Kattni Rembor, written for Adafruit Industries |
| 1 | +# SPDX-FileCopyrightText: 2023 Jose D. Montoya |
2 | 2 | #
|
3 | 3 | # SPDX-License-Identifier: MIT
|
4 | 4 |
|
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 |
26 | 5 | *.mpy
|
27 |
| - |
28 |
| -# Python-specific files |
29 | 6 | __pycache__
|
30 | 7 | *.pyc
|
31 |
| - |
32 |
| -# Sphinx build-specific files |
33 | 8 | _build
|
34 |
| - |
35 |
| -# This file results from running `pip -e install .` in a local repository |
36 | 9 | *.egg-info
|
37 |
| - |
38 |
| -# Virtual environment-specific files |
39 | 10 | .env
|
40 | 11 | .venv
|
41 |
| - |
42 |
| -# MacOS-specific files |
43 | 12 | *.DS_Store
|
44 |
| - |
45 |
| -# IDE-specific files |
46 | 13 | .idea
|
47 | 14 | .vscode
|
48 | 15 | *~
|
0 commit comments