diff options
| author | Simeon Simeonov | 2025-12-23 09:59:50 +0100 |
|---|---|---|
| committer | Simeon Simeonov | 2025-12-23 09:59:50 +0100 |
| commit | a29c4509a316c0c77450b6fa74b96f036b0f0821 (patch) | |
| tree | 13babfe7a0fba24c7df609c909b81ab70f4092ec /.gitignore | |
| parent | 8ad11db860898dcfc9269f2b84df7e301a6e8e5c (diff) | |
Add structure
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..691f282 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,65 @@ | |||
| 1 | # Byte-compiled / optimized / DLL files | ||
| 2 | __pycache__/ | ||
| 3 | *.py[cod] | ||
| 4 | *$py.class | ||
| 5 | |||
| 6 | # OSX useful to ignore | ||
| 7 | *.DS_Store | ||
| 8 | .AppleDouble | ||
| 9 | .LSOverride | ||
| 10 | |||
| 11 | # Thumbnails | ||
| 12 | ._* | ||
| 13 | |||
| 14 | # Files that might appear in the root of a volume | ||
| 15 | .DocumentRevisions-V100 | ||
| 16 | .fseventsd | ||
| 17 | .Spotlight-V100 | ||
| 18 | .TemporaryItems | ||
| 19 | .Trashes | ||
| 20 | .VolumeIcon.icns | ||
| 21 | .com.apple.timemachine.donotpresent | ||
| 22 | |||
| 23 | # Directories potentially created on remote AFP share | ||
| 24 | .AppleDB | ||
| 25 | .AppleDesktop | ||
| 26 | Network Trash Folder | ||
| 27 | Temporary Items | ||
| 28 | .apdisk | ||
| 29 | |||
| 30 | # C extensions | ||
| 31 | *.so | ||
| 32 | |||
| 33 | # Distribution / packaging | ||
| 34 | .Python | ||
| 35 | env/ | ||
| 36 | build/ | ||
| 37 | develop-eggs/ | ||
| 38 | dist/ | ||
| 39 | downloads/ | ||
| 40 | eggs/ | ||
| 41 | .eggs/ | ||
| 42 | lib/ | ||
| 43 | lib64/ | ||
| 44 | parts/ | ||
| 45 | sdist/ | ||
| 46 | var/ | ||
| 47 | *.dist-info/ | ||
| 48 | *.egg-info/ | ||
| 49 | .installed.cfg | ||
| 50 | *.egg | ||
| 51 | |||
| 52 | # IntelliJ Idea family of suites | ||
| 53 | .idea | ||
| 54 | *.iml | ||
| 55 | ## File-based project format: | ||
| 56 | *.ipr | ||
| 57 | *.iws | ||
| 58 | ## mpeltonen/sbt-idea plugin | ||
| 59 | .idea_modules/ | ||
| 60 | |||
| 61 | # Briefcase log files | ||
| 62 | logs/ | ||
| 63 | |||
| 64 | # Briefcase local configuratoin | ||
| 65 | .briefcase/ | ||
