Skip to content

Commit

Permalink
Merge branch 'release/0.0.12-beta.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
shamasis committed Apr 2, 2016
2 parents ba1cacc + dbbfb93 commit b218cdf
Show file tree
Hide file tree
Showing 111 changed files with 9,026 additions and 1 deletion.
Binary file added .ci/deploy-key.enc
Binary file not shown.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# editorconfig.org
root = true

[*.js]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
135 changes: 135 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm

*.iml

## Directory-based project format:
.idea/

## File-based project format:
*.ipr
*.iws

## Plugin-specific files:

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties


### SublimeText template
# cache files for sublime text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache

# workspace files are user-specific
*.sublime-workspace

# project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText
# *.sublime-project

# sftp configuration file
sftp-config.json


### Windows template
# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk


### OSX template
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk


### Node template
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

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

# Coverage directory used by tools like istanbul
coverage
.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://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

### Linux template
*~

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# Temporary directory
.tmp
30 changes: 30 additions & 0 deletions .jsbeautifyrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"js": {
"allowed_file_extensions": [
"js",
"json",
"jshintrc",
"jsbeautifyrc"
],
"brace_style": "end-expand",
"break_chained_methods": false,
"e4x": false,
"end_with_newline": true,
"eval_code": false,
"indent_char": " ",
"indent_level": 0,
"indent_size": 4,
"indent_with_tabs": false,
"jslint_happy": true,
"keep_array_indentation": false,
"keep_function_indentation": false,
"max_preserve_newlines": 10,
"preserve_newlines": true,
"space_after_anon_function": false,
"space_before_conditional": true,
"space_in_empty_paren": false,
"space_in_paren": false,
"unescape_strings": false,
"wrap_line_length": 0
}
}
145 changes: 145 additions & 0 deletions .jscsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
{
// "disallowAnonymousFunctions": false,
// "disallowCapitalizedComments": false,
// "disallowCommaBeforeLineBreak": false,
// "disallowDanglingUnderscores": true,
"disallowEmptyBlocks": true,
"disallowFunctionDeclarations": true,
// "disallowImplicitTypeConversion": [],
// "disallowKeywordsOnNewLine": [],
"disallowKeywords": ["with"],
"disallowMixedSpacesAndTabs": true,
"disallowMultipleLineBreaks": true,
"disallowMultipleLineStrings": true,
// "disallowMultipleVarDecl": false,
"disallowNewlineBeforeBlockStatements": true,
// "disallowOperatorBeforeLineBreak": false,
// "disallowPaddingNewlinesBeforeKeywords": false,
"disallowPaddingNewlinesInBlocks": true,
// "disallowPaddingNewLinesInObjects": false,
// "disallowQuotedKeysInObjects": false,
// "disallowSemicolons": false,
// "disallowSpaceAfterBinaryOperators": false,
// "disallowSpaceAfterKeywords": false,
// "disallowSpaceAfterLineComment": false,
// "disallowSpaceAfterObjectKeys": false,
"disallowSpaceAfterPrefixUnaryOperators": true,
// "disallowSpaceBeforeBinaryOperators": false,
// "disallowSpaceBeforeBlockStatements": false,
// "disallowSpaceBeforeKeywords": false,
// "disallowSpaceBeforeObjectValues": false,
"disallowSpaceBeforePostfixUnaryOperators": true,
// "disallowSpaceBetweenArguments": false,
// "disallowSpacesInAnonymousFunctionExpression": {
// "beforeOpeningRoundBrace": false,
// "beforeOpeningCurlyBrace": false
// },
"disallowSpacesInCallExpression": true,
// "disallowSpacesInConditionalExpression": {
// "afterTest": false,
// "beforeConsequent": false,
// "afterConsequent": false,
// "beforeAlternate": false
// },
// "disallowSpacesInForStatement": false,
// "disallowSpacesInFunctionDeclaration": {
// "beforeOpeningRoundBrace": false,
// "beforeOpeningCurlyBrace": false
// },
// "disallowSpacesInFunctionExpression": {
// "beforeOpeningRoundBrace": false,
// "beforeOpeningCurlyBrace": false
// },
// "disallowSpacesInFunctionExpression": {
// "beforeOpeningRoundBrace": true,
// "beforeOpeningCurlyBrace": true
// },
// "disallowSpacesInNamedFunctionExpression": {
// "beforeOpeningRoundBrace": false,
// "beforeOpeningCurlyBrace": false
// },
"disallowSpacesInsideArrayBrackets": "all",
"disallowSpacesInsideObjectBrackets": false,
"disallowSpacesInsideParentheses": { "only": [ "{", "}" ] },
"disallowTrailingComma": true,
"disallowTrailingWhitespace": true,
// "disallowYodaConditions": false,
"maximumLineLength": {
"value": 120,
"allowComments": false,
"allowRegex": true
},

// "requireAlignedObjectValues": false,
// "requireAnonymousFunctions": false,
"requireBlocksOnNewline": 2,
"requireCamelCaseOrUpperCaseIdentifiers": {
"ignoreProperties": true
},
// "requireCapitalizedComments": true,
"requireCapitalizedConstructors": true,
// "requireCommaBeforeLineBreak": false,
"requireCurlyBraces": true,
"requireDotNotation": "except_snake_case",
// "requireFunctionDeclarations": false,
"requireKeywordsOnNewLine": ["else", "catch", "case", "default", "finally"],
"requireLineBreakAfterVariableAssignment": true,
"requireLineFeedAtFileEnd": true,
"requireMultipleVarDecl": "onevar",
// "requireNewlineBeforeBlockStatements": false,
"requireOperatorBeforeLineBreak": true,
// "requirePaddingNewlinesBeforeKeywords": [],
// "requirePaddingNewlinesInBlocks": false,
// "requirePaddingNewlinesInBlocks": false,
"requireParenthesesAroundIIFE": true,
// "requireQuotedKeysInObjects": false,
"requireSpaceAfterBinaryOperators": true,
"requireSpaceAfterKeywords": true,
"requireSpaceAfterLineComment": {
"allExcept": ["!", "#", "%", "^", "*", "=", "?"]
},
// "requireSpaceAfterObjectKeys": false,
// "requireSpaceAfterPrefixUnaryOperators": false,
"requireSpaceBeforeBinaryOperators": true,
"requireSpaceBeforeBlockStatements": true,
// "requireSpaceBeforeKeywords": false,
"requireSpaceBeforeObjectValues": true,
// "requireSpaceBeforePostfixUnaryOperators": false,
"requireSpaceBetweenArguments": true,
"requireSpacesInAnonymousFunctionExpression": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
},
//"requireSpacesInCallExpression": false,
"requireSpacesInConditionalExpression": {
"afterTest": true,
"beforeConsequent": true,
"afterConsequent": true,
"beforeAlternate": true
},
"requireSpacesInForStatement": true,
"requireSpacesInFunctionDeclaration": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
},
"requireSpacesInFunctionExpression": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
},
// "requireSpacesInNamedFunctionExpression": {
// "beforeOpeningRoundBrace": true,
// "beforeOpeningCurlyBrace": true
// },
// "requireSpacesInsideArrayBrackets": false,
"requireSpacesInsideObjectBrackets": {
"allExcept": [ "}" ]
},
// "requireSpacesInsideParentheses": false,
// "requireTrailingComma": false,
// "requireYodaConditions": false,
// "safeContextKeyword": [ ],
"validateIndentation": 4,
"validateLineBreaks": "LF",
"validateParameterSeparator": ", ",
"validateQuoteMarks": "'"
}
43 changes: 43 additions & 0 deletions .jsdoc-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc", "closure"]
},
"source": {
"include": [ ],
"includePattern": ".+\\.js(doc)?$",
"excludePattern": "(^|\\/|\\\\)_"
},

"plugins": [
"plugins/markdown"
],

"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"dateFormat": "ddd MMM Do YYYY",
"meta": {
"title": "Postman Collection SDK Documentation"
},
"linenums" : true,
"collapseSymbols" : true,
"inverseNav" : true,
"outputSourceFiles" : true,
"outputSourcePath" : true,
"highlightTutorialCode" : true
},

"opts": {
"template": "./node_modules/jaguarjs-jsdoc",
"encoding": "utf8",
"destination": "./out/docs",
"recurse": true,
"readme": "README.md"
},

"markdown": {
"parser": "gfm",
"hardwrap": false
}
}
Loading

0 comments on commit b218cdf

Please sign in to comment.