Skip to content

Commit

Permalink
chore(gitignore): Structure the gitignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Koenders committed Sep 11, 2018
1 parent 242d0c8 commit d8b065e
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions .gitignore
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

0 comments on commit d8b065e

Please sign in to comment.