-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.gitignore
More file actions
41 lines (32 loc) · 839 Bytes
/
.gitignore
File metadata and controls
41 lines (32 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
**/*.pyc
# This directory is generated by the CI process.
.venv
# we commit the .envrc file for shared dev settings
# but .env is for your personal defaults
.env
.coverage
.tmp/
**/*.egg-info
*/build/
*/dist/
.DS_Store
# ignore personal workspace files
**/*.code-workspace
!rats.code-workspace
**/.idea/*
# The module files tell Pycharm about the various components in the repo.
!**/.idea/*.iml
!**/.idea/modules.xml
# Allows us to share configurations for running pytest and other tools through the IDE.
!**/.idea/runConfigurations
# Watcher tasks allow us to share things like auto formatters.
!**/.idea/watcherTasks.xml
# Draw.io tmp files
**/*.drawio.dtmp
**/*.drawio.bkp
# outputs
**/outputs
# rats-devtools generates these files for us
bin/rats-*
# Aider tracks conversation history in-repo, so ignoring these files
.aider*