-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
executable file
·43 lines (36 loc) · 1.55 KB
/
.gitignore
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
# .zodignore
# v0.0.1 (2023-10-29)
# ======================================================================== #
# . '|| ||
# ...... ... .. || ... ... . .. ... ... ... .. ....
# ' .|' .| '|. .' '|| || || || || || .| '|. ||' '' .|...||
# .|' || || |. || || |'' || || || || || ||
# ||....| '|..|' '|..'||. .||. '||||. .||. ||. '|..|' .||. '|...'
# .|....'
# ======================================================================== #
# .zodignore is a .gitignore file template for my (@zudsniper) general use. I have yet to decide if I will
# keep a single .zodignore mega-ignore file, or if I will create .zodignore files for different types of
# projects. For now, I will keep a single .zodignore file, at the moment focused on node projects.
# -- LIBRARIES -- #
# no node modules
/node_modules**
# -- ENVIRONMENT -- #
# no .env
**/.env
# except the template or example
!**/.env.example
!**/.env.template
# -- STYLES -- #
# no .css.map or .js.map files (generated by sass & typescript respectively)
**/*.css.map
**/*.js.map
# no .DS_Store files
**/.DS_Store
# ==== DISABLED ==== #
# the following are potentially useful, but disabled for one reason or another at the moment.
# no IDE configuration files (disabled because best practices says to commit these)
# **/.idea/**
# **/.vscode/**
# no build files (disabled because at the moment we are not using typescript, so there is no dist or build directory to exclude)
# **/build/**
# **/dist/**