-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.gitattributes
More file actions
115 lines (103 loc) 路 1.99 KB
/
Copy path.gitattributes
File metadata and controls
115 lines (103 loc) 路 1.99 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
* text=auto
# Source code
*.py text eol=lf diff=python
*.pyx text eol=lf diff=python
*.pyi text eol=lf diff=python
# Configuration files
*.cfg text eol=lf
*.conf text eol=lf
*.config text eol=lf
*.ini text eol=lf
*.toml text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
.editorconfig text eol=lf
.gitattributes text eol=lf
.gitignore text eol=lf
# Documentation
*.md text eol=lf
*.rst text eol=lf
*.txt text eol=lf
AUTHORS text eol=lf
CHANGELOG text eol=lf
CHANGES text eol=lf
CONTRIBUTING text eol=lf
COPYING text eol=lf
copyright text eol=lf
*COPYRIGHT* text eol=lf
INSTALL text eol=lf
license text eol=lf
LICENSE text eol=lf
NEWS text eol=lf
readme text eol=lf
*README* text eol=lf
TODO text eol=lf
# Templates
*.j2 text eol=lf
*.jinja text eol=lf
*.jinja2 text eol=lf
# Linters
.flake8 text eol=lf
.pylintrc text eol=lf
# Scripts
*.bash text eol=lf
*.fish text eol=lf
*.sh text eol=lf
*.zsh text eol=lf
# Serialization
*.json text eol=lf
*.xml text eol=lf
*.xsd text eol=lf
# Data
*.csv text eol=lf
*.sql text eol=lf
# Binary files
*.db binary
*.p binary
*.pkl binary
*.pickle binary
*.pyc binary export-ignore
*.pyo binary export-ignore
*.pyd binary
# Archives
*.7z binary
*.gz binary
*.jar binary
*.rar binary
*.tar binary
*.zip binary
# Graphics
*.ai binary
*.bmp binary
*.eps binary
*.gif binary
*.gifv binary
*.ico binary
*.jng binary
*.jp2 binary
*.jpg binary
*.jpeg binary
*.jpx binary
*.jxr binary
*.pdf binary
*.png binary
*.psb binary
*.psd binary
*.svg text
*.svgz binary
*.tif binary
*.tiff binary
*.wbmp binary
*.webp binary
# Exclude files from exporting
.gitattributes export-ignore
.gitignore export-ignore
# .github intentionally NOT export-ignored: OpenSSF Scorecard reads the
# repo tarball, and excluding .github made Token-Permissions and
# Dangerous-Workflow report 'no workflows found' (score -1).
.vscode export-ignore
tests export-ignore
htmlcov export-ignore
*.pyc export-ignore