-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(gitignore): Structure the gitignore file
- Loading branch information
Sander Koenders
committed
Sep 11, 2018
1 parent
242d0c8
commit d8b065e
Showing
1 changed file
with
20 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,27 @@ | ||
# Operating system related files | ||
*~ | ||
.fuse_hidden* | ||
.directory | ||
.Trash-* | ||
/.idea | ||
/node_modules/ | ||
|
||
# Intellij ide files | ||
.idea | ||
|
||
# Ignore environment file, use env.json.example instead | ||
config/env.json | ||
|
||
/**/*.js | ||
# Ignore package manager files | ||
node_modules/ | ||
package-lock.json | ||
|
||
# Ignore everything related to test output | ||
reports | ||
.nyc_output | ||
|
||
# Ignore javascript files, sourcemaps and type declarations | ||
src/**/*.js | ||
test/**/*.js | ||
src/**/*.d.ts | ||
test/**/*.d.ts | ||
src/**/*.js.map | ||
test/**/*.js.map |