File: .gitignore

package info (click to toggle)
j2cli 0.3.12b-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 368 kB
  • sloc: python: 516; makefile: 30; sh: 14; xml: 2
file content (44 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (4)
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
# ===[ APP ]=== #

# ===[ PYTHON PACKAGE ]=== #
/build/
/dist/
/MANIFEST
/*.egg/
/*.egg-info/

# ===[ OTHER ]=== #

# IDE Projects
.idea
.nbproject
.project
*.sublime-project

# Temps
*~
*.tmp
*.bak
*.swp
*.kate-swp
*.DS_Store
Thumbs.db

# Utils
/.tox/
.sass-cache/
.coverage

# Generated
__pycache__
*.py[cod]
*.pot
*.mo

# Runtime
/*.log
/*.pid

# ===[ EXCLUDES ]=== #
!.gitkeep
!.htaccess