-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from SecretBase/v2
Road to v2
- Loading branch information
Showing
24 changed files
with
9,226 additions
and
2,916 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"presets": [ | ||
["env", { | ||
"targets": { | ||
"node": "6.11" | ||
} | ||
}] | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"extends": "aftership", | ||
"rules": { | ||
"max-lines": 0 | ||
} | ||
} |
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 |
---|---|---|
|
@@ -16,4 +16,9 @@ node_modules/ | |
npm-debug.log | ||
|
||
.publishrc | ||
.npmignore | ||
|
||
# ==== build output | ||
dist | ||
web | ||
|
||
coverage |
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 |
---|---|---|
@@ -0,0 +1,183 @@ | ||
# v1.0.4 2015-05-06 | ||
|
||
|
||
# ------------------------------------------------------------------------------ | ||
# Add your custom excludes below | ||
# ------------------------------------------------------------------------------ | ||
.nyc_output/ | ||
.npmrc | ||
.vscode/ | ||
.tern-project | ||
lib/ | ||
src/ | ||
example/ | ||
.babelrc | ||
.eslintignore | ||
.flowconfig | ||
.gitignore | ||
.publishrc | ||
.stylelintrc | ||
example.config.json | ||
gulfile.babel.js | ||
jest.config.json | ||
litmus-support-clients.js | ||
flow-typed | ||
__tests__/ | ||
webpack.config.js | ||
.eslintrc | ||
|
||
|
||
# =============== log ignore builtAssets | ||
|
||
/tmp/* | ||
/builtAssets/* | ||
*.log | ||
.nyc_output/ | ||
coverage/ | ||
|
||
# =========================== DO NOT touch below v1.0.3 =============================== | ||
|
||
|
||
node_modules | ||
|
||
# =============== RubyMine.gitignore | ||
# =============== PhPStorm.gitignore | ||
.idea | ||
|
||
|
||
# =============== OSX.gitignore | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# =============== # Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Except the .htpassed | ||
!.htpasswd | ||
!.nodemonignore | ||
|
||
npm-debug.log | ||
|
||
dump.rdb | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
# FROM https://github.com/niftylettuce/node-email-templates/blob/master/.gitignore | ||
|
||
# ------------------------------------------------------------------------------ | ||
# Common Node files and folders | ||
# https://github.com/github/gitignore/blob/master/Node.gitignore | ||
# ------------------------------------------------------------------------------ | ||
|
||
lib-cov | ||
*.seed | ||
*.log | ||
*.csv | ||
*.dat | ||
*.out | ||
*.pid | ||
*.gz | ||
|
||
pids | ||
log | ||
results | ||
|
||
node_modules | ||
npm-debug.log | ||
|
||
|
||
# ------------------------------------------------------------------------------ | ||
# Nodemon | ||
# ------------------------------------------------------------------------------ | ||
|
||
.monitor | ||
|
||
|
||
# ------------------------------------------------------------------------------ | ||
# JSHint | ||
# ------------------------------------------------------------------------------ | ||
|
||
jshint | ||
|
||
|
||
# ------------------------------------------------------------------------------ | ||
# Numerous always-ignore extensions | ||
# ------------------------------------------------------------------------------ | ||
|
||
*.diff | ||
*.err | ||
*.orig | ||
*.rej | ||
*.swo | ||
*.swp | ||
*.vi | ||
*~ | ||
*.sass-cache | ||
|
||
|
||
# ------------------------------------------------------------------------------ | ||
# Files from other repository control systems | ||
# ------------------------------------------------------------------------------ | ||
|
||
.hg | ||
.svn | ||
.CVS | ||
|
||
|
||
# ------------------------------------------------------------------------------ | ||
# PHPStorm, RubyMine | ||
# ------------------------------------------------------------------------------ | ||
|
||
.idea | ||
|
||
|
||
# ------------------------------------------------------------------------------ | ||
# OS X and other IDE's folder attributes | ||
# ------------------------------------------------------------------------------ | ||
|
||
.DS_Store | ||
Thumbs.db | ||
.cache | ||
.project | ||
.settings | ||
.tmproj | ||
*.esproj | ||
nbproject | ||
*.sublime-project | ||
*.sublime-workspace | ||
|
||
|
||
# ------------------------------------------------------------------------------ | ||
# Dreamweaver added files | ||
# ------------------------------------------------------------------------------ | ||
|
||
_notes | ||
dwsync.xml | ||
|
||
|
||
# ------------------------------------------------------------------------------ | ||
# Komodo | ||
# ------------------------------------------------------------------------------ | ||
|
||
*.komodoproject | ||
.komodotools | ||
bower_components | ||
|
||
config/examples.json | ||
config.json |
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"extends": "aftership", | ||
env: { | ||
"jest": true | ||
} | ||
} |
Oops, something went wrong.