forked from zamronypj/fano-cli
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
56 lines (48 loc) · 1.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
#------------------------------------------------------------
# Fano CLI Application (https://fanoframework.github.io)
#
# @link https://github.com/fanoframework/fano-cli
# @copyright Copyright (c) 2018 - 2022 Zamrony P. Juhara
# @license https://github.com/fanoframework/fano-cli/blob/master/LICENSE (MIT)
#-------------------------------------------------------------
#----------------------------------------------
# Ignore any compiler switches config files
#----------------------------------------------
build.cfg
build.prod.cfg
build.dev.cfg
#----------------------------------------------
# Ignore any generated compiled units
#----------------------------------------------
bin/unit/*
#----------------------------------------------
# Ignore generated binary executable
#----------------------------------------------
bin/out/*
#----------------------------------------------
# Do not ignore README.md
# This file is provided to make git create
# /bin/unit when repository is cloned
#----------------------------------------------
!bin/unit/README.md
#----------------------------------------------
# Do not ignore README.md
# This file is provided to make git create
# /bin/out when repository is cloned
#----------------------------------------------
!bin/out/README.md
#----------------------------------------------
# Ignore Free Pascal built-in console IDE generated files
#----------------------------------------------
fp.dir
fp.cfg
fp.dsk
fp.ini
#----------------------------------------------
# Ignore Lazarus local files (user-specific info)
#----------------------------------------------
*.lps
#---------------------------------------------------------
# ignore any visual code studio generated files
#---------------------------------------------------------
.vscode/