Skip to content

Commit

Permalink
Rewrite to modular design
Browse files Browse the repository at this point in the history
  • Loading branch information
berstend committed May 27, 2018
1 parent d595e51 commit cfde043
Show file tree
Hide file tree
Showing 32 changed files with 8,820 additions and 719 deletions.
8 changes: 4 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false
trim_trailing_whitespace = false
5 changes: 5 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": [
"standard"
]
}
57 changes: 20 additions & 37 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,42 +1,25 @@
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# See https://help.github.com/ignore-files/ for more about ignoring files.

# Dependency directories
# dependencies
node_modules
jspm_packages

# Optional npm cache directory
.npm
# builds
build
dist

# Optional REPL history
.node_repl_history

# Editors
.idea


# npm package lock
package-lock.json
yarn.lock

others
# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.cache

lerna-debug.log*
lerna-error.log*
npm-debug.log*
yarn-debug.log*
yarn-error.log*

TODO.md
24 changes: 0 additions & 24 deletions .npmignore

This file was deleted.

Loading

0 comments on commit cfde043

Please sign in to comment.