Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 20c78ac

Browse files
committedJun 1, 2017
run update
1 parent dfd7a99 commit 20c78ac

File tree

5 files changed

+561
-22
lines changed

5 files changed

+561
-22
lines changed
 

‎.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
end_of_line = lf
6+
charset = utf-8
7+
indent_size = 2
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[{**/{actual,fixtures,expected,templates}/**,*.md}]
12+
trim_trailing_whitespace = false
13+
insert_final_newline = false

‎.gitignore

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
1+
# always ignore files
12
*.DS_Store
23
*.sublime-*
3-
_gh_pages
4-
bower_components
4+
5+
# test related, or directories generated by tests
6+
test/actual
7+
actual
8+
coverage
9+
.nyc*
10+
11+
# npm
512
node_modules
613
npm-debug.log
7-
actual
8-
test/actual
9-
test/_spec
14+
15+
# yarn
16+
yarn.lock
17+
yarn-error.log
18+
19+
# misc
20+
_gh_pages
21+
_draft
22+
_drafts
23+
bower_components
24+
vendor
1025
temp
1126
tmp
1227
TODO.md
13-
vendor
14-
.idea
15-
benchmark
16-
coverage
17-
staging

‎LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2016, Jon Schlinkert.
3+
Copyright (c) 2015-2017, Jon Schlinkert
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)
Failed to load comments.
run update · node-toolkit/toolkit@20c78ac · GitHub