-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris
committed
Jun 15, 2016
1 parent
d89fb6a
commit c773837
Showing
52 changed files
with
3,322 additions
and
3,073 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,14 @@ | ||
{ | ||
"presets": [ | ||
"es2015" | ||
], | ||
"plugins": [ | ||
"transform-async-to-generator", | ||
"transform-strict-mode", [ | ||
"transform-runtime", { | ||
"polyfill": false, | ||
"regenerator": true | ||
} | ||
] | ||
] | ||
} |
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,52 @@ | ||
{ | ||
"disallowEmptyBlocks": true, | ||
"disallowFunctionDeclarations": true, | ||
"disallowIdenticalDestructuringNames": true, | ||
"disallowMultiLineTernary": true, | ||
"disallowMultipleLineBreaks": true, | ||
"disallowNewlineBeforeBlockStatements": true, | ||
"disallowOperatorBeforeLineBreak": ["+"], | ||
"disallowParenthesesAroundArrowParam": true, | ||
"disallowSpaceAfterObjectKeys": true, | ||
"disallowSpaceBeforeComma": true, | ||
"disallowSpacesInCallExpression": true, | ||
"disallowSpacesInsideTemplateStringPlaceholders": true, | ||
"disallowTrailingComma": true, | ||
/*"disallowUnusedParams": true,*/ | ||
"disallowUnusedVariables": true, | ||
"disallowVar": true, | ||
"disallowYodaConditions": ["==", "===", "!=", "!=="], | ||
"jsDoc": { | ||
"checkAnnotations": true, | ||
"checkParamExistence": true, | ||
"checkParamNames": true, | ||
"checkRedundantParams": true, | ||
"checkRedundantReturns": true, | ||
"checkReturnTypes": true, | ||
"checkTypes": true, | ||
"disallowNewlineAfterDescription": true, | ||
"requireHyphenBeforeDescription": true, | ||
"requireParamDescription": true, | ||
"requireParamTypes": true, | ||
"requireReturnDescription": true | ||
}, | ||
"fileExtensions": [".js"], | ||
"requireCommaBeforeLineBreak": true, | ||
"requireObjectKeysOnNewLine": { | ||
"allExcept": ["sameLine"] | ||
}, | ||
"requirePaddingNewLinesInObjects": true, | ||
"requireSemicolons": true, | ||
"requireSpaceAfterComma": true, | ||
"requireSpaceAfterLineComment": true, | ||
"requireSpaceAfterLineComment": true, | ||
"requireSpaceBeforeBlockStatements": 1, | ||
"requireSpaceBeforeDestructuredValues": true, | ||
"requireSpaceBetweenArguments": true, | ||
"requireSpacesInConditionalExpression": true, | ||
"requireSpacesInsideImportedObjectBraces": true, | ||
"requireSpacesInsideObjectBrackets": "all", | ||
"requireSpread": true, | ||
"requireTemplateStrings": true, | ||
"validateQuoteMarks": "\"" | ||
} |
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,25 @@ | ||
{ | ||
"tags": { | ||
"allowUnknownTags": true | ||
}, | ||
"source": { | ||
"include": "./", | ||
"includePattern": ".js$", | ||
"excludePattern": "(node_modules/|build|docs|views|gulpfile*)" | ||
}, | ||
"plugins": [ | ||
"plugins/markdown", | ||
"node_modules/jsdoc-babel" | ||
], | ||
"opts": { | ||
"template": "node_modules/docdash", | ||
"encoding": "utf8", | ||
"destination": "docs/", | ||
"recurse": true, | ||
"verbose": true | ||
}, | ||
"templates": { | ||
"cleverLinks": true, | ||
"monospaceLinks": true | ||
} | ||
} |
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,38 @@ | ||
### Node template | ||
# 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 | ||
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git | ||
node_modules | ||
|
||
# Generated files by popcorn-api. | ||
tmp | ||
|
||
# Generated documentation. | ||
docs | ||
|
||
# untranspiled ES6 code | ||
src |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.