File tree Expand file tree Collapse file tree 1 file changed +55
-0
lines changed
Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change 1+ # PLATFORM
2+ # ========
3+ # All exclusions that are specific to the NPM, GIT, IDE and Operating Systems.
4+
5+ # - Do not allow installed node modules to be committed. Doing `npm install -d` will bring them in root or other places.
6+ node_modules
7+
8+ # - Do not commit any log file from anywhere
9+ * .log
10+
11+ # - Prevent addition of OS specific file explorer files
12+ Thumbs.db
13+ .DS_Store
14+
15+
16+ # PROJECT
17+ # =======
18+ # Configuration pertaining to project specific repository structure.
19+
20+ # - Prevent Sublime text IDE files from being commited to repository
21+ * .sublime- *
22+
23+ # - Prevent NetBeans IDE files from being commited to repository
24+ nbproject /
25+
26+
27+ # - Prevent extra `jshint` configuration from being committed from anywhere. Only `package.json` will be used as
28+ # accepted source of config.
29+ .jshintrc
30+
31+ # - Prevent CI output files from being Added
32+ /out /
33+
34+ # - Prevent diff backups from SourceTree from showing as commit.
35+ * .BACKUP. *
36+ * .BASE. *
37+ * .LOCAL. *
38+ * .REMOTE. *
39+ * .orig
40+
41+ # ----------------------------------------------------------------------------------------------------------------------
42+ # NPMIGNORE ADDITIONS
43+ # ===================
44+
45+
46+ # - Do not distribute submodule sources
47+ /.gitmodules
48+
49+ __tests__ /
50+
51+ example /
52+
53+ webpack.config.js
54+
55+ webpack.config.example.js
You can’t perform that action at this time.
0 commit comments