Skip to content

Commit

Permalink
refact is almost done; todo: tests and update travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
dangreen committed Nov 1, 2017
1 parent 26cbc5d commit 4df26bc
Show file tree
Hide file tree
Showing 10 changed files with 682 additions and 501 deletions.
10 changes: 7 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
root = true

[*]
indent_style = tab
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

[package.json]
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false
8 changes: 1 addition & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
module.exports = {
'extends': '@shinnn/node-legacy',
'rules': {
'no-underscore-dangle': 0,
'no-warning-comments': 0,
'prefer-rest-params': 0,
'indent': [2, 2, { 'MemberExpression': 0 } ]
}
'extends': 'trigen/base'
};
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

42 changes: 41 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,42 @@
node_modules
# 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

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
node_modules

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

# OS X stuff
.DS_Store

# Some caches
.eslintcache

# Compiled dist
lib
159 changes: 0 additions & 159 deletions index.js

This file was deleted.

Loading

0 comments on commit 4df26bc

Please sign in to comment.