-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
.gitignore
75 lines (67 loc) · 1.14 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
# IDE & System
$RECYCLE.BIN/
.AppleDouble
.DS_Store
.LSOverride
.Trash-*
.buildpath
.c9
.c9revisions
.directory
.fuse_hidden*
.idea
.nfs*
.project
.settings
.vs
.vscode
*.iml
[Dd]esktop.ini
[Tt]humbs.db
# Logs
logs/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*.log
# Distribution & Packaging
build/
debug/
dist/
pkg/
target/
# Cache & Temporary Files
__pycache__/
cache/
tmp/
.cache
.eslintcache
.grunt
.lock-wscript
.node_repl_history
.npm
.nyc_output
.parcel-cache
.yarn-integrity
*.py[cod]
*.rs.bk
*.tmp
# Dependencies
bower_components/
jspm_packages/
node_modules/
web_modules/
# Generated userchrome.wxs WiX file
# Needs to be manually generated before running cargo wix
/native/packages/wix/userchrome.wxs
# Generated PortableApps.com EXE files and data
# Need to be generated using PA.com tools
/native/packages/paf/**/*.exe
/native/packages/paf/PWAsForFirefoxPortable/Data/*
/native/packages/paf/PWAsForFirefoxPortable/App/*
!/native/packages/paf/PWAsForFirefoxPortable/App/AppInfo
# Generated Bootstrap Icons styles and font
# Automatically generated when building the extension
/extension/src/icons/
# Do not ignore .gitkeep files
!.gitkeep