-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
59 lines (49 loc) · 919 Bytes
/
.gitattributes
File metadata and controls
59 lines (49 loc) · 919 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
*.py ident=lf
*.txt ident=lf
*.html ident=lf
*.js ident=lf
*.json ident=lf
*.yml ident=lf
*.yaml ident=lf
*.md ident=lf
*.lock text eol=lf
*.env text eol=lf
*.toml text eol=lf
*.ini text eol=lf
# Alembic migrations
alembic.ini text eol=lf
versions/*.py ident=lf
# Static files
static/* binary
static/**/*.js ident=lf
static/**/*.css ident=lf
static/**/*.html ident=lf
# Tests
tests/*.py ident=lf
# Documentation
docs/**/*.md ident=lf
docs/**/*.rst ident=lf
docs/**/*.html ident=lf
# IDE and editor configuration
.vscode/* text eol=lf
.idea/* text eol=lf
# Python bytecode
*.pyc binary
__pycache__/* binary
*.pyo binary
*.pyd binary
# Distribution files
dist/* binary
build/* binary
*.egg-info/* binary
*.whl binary
# Virtual environment files
venv/* binary
.venv/* binary
env/* binary
.env/* binary
# macOS specific files
.DS_Store binary
# Git specific files
.gitattributes text eol=lf
.gitignore text eol=lf