/ .gitignore
.gitignore
1 # SPDX-FileCopyrightText: 2022 Kattni Rembor, written for Adafruit Industries 2 # 3 # SPDX-License-Identifier: MIT 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 *.mpy 27 28 # Python-specific files 29 __pycache__ 30 *.pyc 31 32 # Sphinx build-specific files 33 _build 34 35 # This file results from running `pip -e install .` in a local repository 36 *.egg-info 37 38 # Virtual environment-specific files 39 .env 40 41 # MacOS-specific files 42 *.DS_Store 43 44 # IDE-specific files 45 .idea 46 .vscode 47 *~