-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
105 lines (91 loc) · 2.62 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
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
################################################################################
# #
# db db .8888. dP 888888b 8888ba .8888. d8b db 888888b d8888P #
# 88 88 d8' `8b 88 88 88 `8b d8' `8b 88V8 88 88 88 #
# Y8 8P 88 88 88 a88aaa 88aa8P' 88 88 88 V8 88 88aaa 88 #
# `8b d8' 88 88 88 88 88 `8b 88 88 88 V888 88 88 #
# `8bd8' Y8. .8P 88 88 88 .88 Y8. .8P dP 88 V88 88 88 #
# YP `888P' 88888P 888888P 888888' `888P' 88 VP 8P 888888P dP #
# #
################################################################################
#
# Password generator for Atom
#
# Copyright (C) 2016-2020 Volebo <[email protected]>
# Copyright (C) 2016-2020 Maksim Koryukov <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################
# =========================================
# See http://help.github.com/ignore-files/ for more about ignoring files.
# =========================================
# place per-project settings here
# =========================================
# common part
# =========================================
# hmm, GLOBAL stuff
.DS_Store
thumbs.db
Thumbs.db
!.gitkeep
# tests/coverage results
tests/e2e/reports/
selenium-debug.log
coverage/
lib-cov/
.nyc_output/
# PRIVATE files
.npmrc
.node_repl_history
# local env files
.env
.env.local
.env.*.local
# parcel cache
.cache/
# dependencies
.npm
node_modules/
npm-cache/
# frameworks
.serverless/
.ionic/
.sass-cache/
bower_components/
# compiled output
dist/
build/
# temporary shit
tmp/
$RECYCLE.BIN/
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
logs/
log/
*.log
testem.log
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.sublime-project
*.sublime-workspace
# =========================================