This repository has been archived by the owner on May 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gitignore
70 lines (49 loc) · 1.66 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
# PLATFORM
# ========
# All exclusions that are specific to the NPM, GIT, IDE and Operating Systems.
# Ignore scripts for automatic docs deployment
am_*.sh
# - Do not allow installed node modules to be committed. Doing `npm install -d` will bring them in root or other places.
node_modules
# - Do not commit any log file from anywhere
*.log
# - Prevent addition of OS specific file explorer files
Thumbs.db
.DS_Store
# PROJECT
# =======
# Configuration pertaining to project specific repository structure.
# - Prevent Sublime text IDE files from being commited to repository
*.sublime-*
# - Prevent NetBeans IDE files from being commited to repository
nbproject/
# - Allow sublime text project file to be commited in the development directory.
!/develop/*.sublime-project
# - We use file names with `attr-*` for chart attribute tutorial files. These files remain in the `xt-attrs` submodule,
# but are copied to a temp folder for building docs along with the tutorials from `develop/docs`. They should not be
# tracked in the main project
develop/docs/attr-*
# - Prevent extra `jshint` configuration from being committed from anywhere. Only `package.json` will be used as
# accepted source of config.
.jshintrc
# - Prevent Modular build template files from being Added
develop/template/modular
# - Prevent diff backups from SourceTree from showing as commit.
*.BACKUP.*
*.BASE.*
*.LOCAL.*
*.REMOTE.*
*.orig
# Ignore .swp files in case vim is getting used
*.swp
# Ignore .tmp folder created for mocha-webpack test cases
/.tmp/
# Ignore docs folder created by jsdoc
/docs
# Ignore coverage folder created by karma
coverage
jquery
package-lock.json
develop
extras
.vscode