Skip to content

Commit b218cdf

Browse files
committed
Merge branch 'release/0.0.12-beta.1'
2 parents ba1cacc + dbbfb93 commit b218cdf

File tree

111 files changed

+9026
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+9026
-1
lines changed

.ci/deploy-key.enc

1.64 KB
Binary file not shown.

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*.js]
5+
indent_style = space
6+
indent_size = 4
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true

.gitignore

+135
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
### JetBrains template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
3+
4+
*.iml
5+
6+
## Directory-based project format:
7+
.idea/
8+
9+
## File-based project format:
10+
*.ipr
11+
*.iws
12+
13+
## Plugin-specific files:
14+
15+
# IntelliJ
16+
out/
17+
18+
# mpeltonen/sbt-idea plugin
19+
.idea_modules/
20+
21+
# JIRA plugin
22+
atlassian-ide-plugin.xml
23+
24+
# Crashlytics plugin (for Android Studio and IntelliJ)
25+
com_crashlytics_export_strings.xml
26+
crashlytics.properties
27+
crashlytics-build.properties
28+
29+
30+
### SublimeText template
31+
# cache files for sublime text
32+
*.tmlanguage.cache
33+
*.tmPreferences.cache
34+
*.stTheme.cache
35+
36+
# workspace files are user-specific
37+
*.sublime-workspace
38+
39+
# project files should be checked into the repository, unless a significant
40+
# proportion of contributors will probably not be using SublimeText
41+
# *.sublime-project
42+
43+
# sftp configuration file
44+
sftp-config.json
45+
46+
47+
### Windows template
48+
# Windows image file caches
49+
Thumbs.db
50+
ehthumbs.db
51+
52+
# Folder config file
53+
Desktop.ini
54+
55+
# Recycle Bin used on file shares
56+
$RECYCLE.BIN/
57+
58+
# Windows Installer files
59+
*.cab
60+
*.msi
61+
*.msm
62+
*.msp
63+
64+
# Windows shortcuts
65+
*.lnk
66+
67+
68+
### OSX template
69+
.DS_Store
70+
.AppleDouble
71+
.LSOverride
72+
73+
# Icon must end with two \r
74+
Icon
75+
76+
# Thumbnails
77+
._*
78+
79+
# Files that might appear in the root of a volume
80+
.DocumentRevisions-V100
81+
.fseventsd
82+
.Spotlight-V100
83+
.TemporaryItems
84+
.Trashes
85+
.VolumeIcon.icns
86+
87+
# Directories potentially created on remote AFP share
88+
.AppleDB
89+
.AppleDesktop
90+
Network Trash Folder
91+
Temporary Items
92+
.apdisk
93+
94+
95+
### Node template
96+
# Logs
97+
logs
98+
*.log
99+
100+
# Runtime data
101+
pids
102+
*.pid
103+
*.seed
104+
105+
# Directory for instrumented libs generated by jscoverage/JSCover
106+
lib-cov
107+
108+
# Coverage directory used by tools like istanbul
109+
coverage
110+
.coverage
111+
112+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
113+
.grunt
114+
115+
# node-waf configuration
116+
.lock-wscript
117+
118+
# Compiled binary addons (http://nodejs.org/api/addons.html)
119+
build/Release
120+
121+
# Dependency directory
122+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
123+
node_modules
124+
125+
### Linux template
126+
*~
127+
128+
# KDE directory preferences
129+
.directory
130+
131+
# Linux trash folder which might appear on any partition or disk
132+
.Trash-*
133+
134+
# Temporary directory
135+
.tmp

.jsbeautifyrc

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"js": {
3+
"allowed_file_extensions": [
4+
"js",
5+
"json",
6+
"jshintrc",
7+
"jsbeautifyrc"
8+
],
9+
"brace_style": "end-expand",
10+
"break_chained_methods": false,
11+
"e4x": false,
12+
"end_with_newline": true,
13+
"eval_code": false,
14+
"indent_char": " ",
15+
"indent_level": 0,
16+
"indent_size": 4,
17+
"indent_with_tabs": false,
18+
"jslint_happy": true,
19+
"keep_array_indentation": false,
20+
"keep_function_indentation": false,
21+
"max_preserve_newlines": 10,
22+
"preserve_newlines": true,
23+
"space_after_anon_function": false,
24+
"space_before_conditional": true,
25+
"space_in_empty_paren": false,
26+
"space_in_paren": false,
27+
"unescape_strings": false,
28+
"wrap_line_length": 0
29+
}
30+
}

.jscsrc

+145
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
{
2+
// "disallowAnonymousFunctions": false,
3+
// "disallowCapitalizedComments": false,
4+
// "disallowCommaBeforeLineBreak": false,
5+
// "disallowDanglingUnderscores": true,
6+
"disallowEmptyBlocks": true,
7+
"disallowFunctionDeclarations": true,
8+
// "disallowImplicitTypeConversion": [],
9+
// "disallowKeywordsOnNewLine": [],
10+
"disallowKeywords": ["with"],
11+
"disallowMixedSpacesAndTabs": true,
12+
"disallowMultipleLineBreaks": true,
13+
"disallowMultipleLineStrings": true,
14+
// "disallowMultipleVarDecl": false,
15+
"disallowNewlineBeforeBlockStatements": true,
16+
// "disallowOperatorBeforeLineBreak": false,
17+
// "disallowPaddingNewlinesBeforeKeywords": false,
18+
"disallowPaddingNewlinesInBlocks": true,
19+
// "disallowPaddingNewLinesInObjects": false,
20+
// "disallowQuotedKeysInObjects": false,
21+
// "disallowSemicolons": false,
22+
// "disallowSpaceAfterBinaryOperators": false,
23+
// "disallowSpaceAfterKeywords": false,
24+
// "disallowSpaceAfterLineComment": false,
25+
// "disallowSpaceAfterObjectKeys": false,
26+
"disallowSpaceAfterPrefixUnaryOperators": true,
27+
// "disallowSpaceBeforeBinaryOperators": false,
28+
// "disallowSpaceBeforeBlockStatements": false,
29+
// "disallowSpaceBeforeKeywords": false,
30+
// "disallowSpaceBeforeObjectValues": false,
31+
"disallowSpaceBeforePostfixUnaryOperators": true,
32+
// "disallowSpaceBetweenArguments": false,
33+
// "disallowSpacesInAnonymousFunctionExpression": {
34+
// "beforeOpeningRoundBrace": false,
35+
// "beforeOpeningCurlyBrace": false
36+
// },
37+
"disallowSpacesInCallExpression": true,
38+
// "disallowSpacesInConditionalExpression": {
39+
// "afterTest": false,
40+
// "beforeConsequent": false,
41+
// "afterConsequent": false,
42+
// "beforeAlternate": false
43+
// },
44+
// "disallowSpacesInForStatement": false,
45+
// "disallowSpacesInFunctionDeclaration": {
46+
// "beforeOpeningRoundBrace": false,
47+
// "beforeOpeningCurlyBrace": false
48+
// },
49+
// "disallowSpacesInFunctionExpression": {
50+
// "beforeOpeningRoundBrace": false,
51+
// "beforeOpeningCurlyBrace": false
52+
// },
53+
// "disallowSpacesInFunctionExpression": {
54+
// "beforeOpeningRoundBrace": true,
55+
// "beforeOpeningCurlyBrace": true
56+
// },
57+
// "disallowSpacesInNamedFunctionExpression": {
58+
// "beforeOpeningRoundBrace": false,
59+
// "beforeOpeningCurlyBrace": false
60+
// },
61+
"disallowSpacesInsideArrayBrackets": "all",
62+
"disallowSpacesInsideObjectBrackets": false,
63+
"disallowSpacesInsideParentheses": { "only": [ "{", "}" ] },
64+
"disallowTrailingComma": true,
65+
"disallowTrailingWhitespace": true,
66+
// "disallowYodaConditions": false,
67+
"maximumLineLength": {
68+
"value": 120,
69+
"allowComments": false,
70+
"allowRegex": true
71+
},
72+
73+
// "requireAlignedObjectValues": false,
74+
// "requireAnonymousFunctions": false,
75+
"requireBlocksOnNewline": 2,
76+
"requireCamelCaseOrUpperCaseIdentifiers": {
77+
"ignoreProperties": true
78+
},
79+
// "requireCapitalizedComments": true,
80+
"requireCapitalizedConstructors": true,
81+
// "requireCommaBeforeLineBreak": false,
82+
"requireCurlyBraces": true,
83+
"requireDotNotation": "except_snake_case",
84+
// "requireFunctionDeclarations": false,
85+
"requireKeywordsOnNewLine": ["else", "catch", "case", "default", "finally"],
86+
"requireLineBreakAfterVariableAssignment": true,
87+
"requireLineFeedAtFileEnd": true,
88+
"requireMultipleVarDecl": "onevar",
89+
// "requireNewlineBeforeBlockStatements": false,
90+
"requireOperatorBeforeLineBreak": true,
91+
// "requirePaddingNewlinesBeforeKeywords": [],
92+
// "requirePaddingNewlinesInBlocks": false,
93+
// "requirePaddingNewlinesInBlocks": false,
94+
"requireParenthesesAroundIIFE": true,
95+
// "requireQuotedKeysInObjects": false,
96+
"requireSpaceAfterBinaryOperators": true,
97+
"requireSpaceAfterKeywords": true,
98+
"requireSpaceAfterLineComment": {
99+
"allExcept": ["!", "#", "%", "^", "*", "=", "?"]
100+
},
101+
// "requireSpaceAfterObjectKeys": false,
102+
// "requireSpaceAfterPrefixUnaryOperators": false,
103+
"requireSpaceBeforeBinaryOperators": true,
104+
"requireSpaceBeforeBlockStatements": true,
105+
// "requireSpaceBeforeKeywords": false,
106+
"requireSpaceBeforeObjectValues": true,
107+
// "requireSpaceBeforePostfixUnaryOperators": false,
108+
"requireSpaceBetweenArguments": true,
109+
"requireSpacesInAnonymousFunctionExpression": {
110+
"beforeOpeningRoundBrace": true,
111+
"beforeOpeningCurlyBrace": true
112+
},
113+
//"requireSpacesInCallExpression": false,
114+
"requireSpacesInConditionalExpression": {
115+
"afterTest": true,
116+
"beforeConsequent": true,
117+
"afterConsequent": true,
118+
"beforeAlternate": true
119+
},
120+
"requireSpacesInForStatement": true,
121+
"requireSpacesInFunctionDeclaration": {
122+
"beforeOpeningRoundBrace": true,
123+
"beforeOpeningCurlyBrace": true
124+
},
125+
"requireSpacesInFunctionExpression": {
126+
"beforeOpeningRoundBrace": true,
127+
"beforeOpeningCurlyBrace": true
128+
},
129+
// "requireSpacesInNamedFunctionExpression": {
130+
// "beforeOpeningRoundBrace": true,
131+
// "beforeOpeningCurlyBrace": true
132+
// },
133+
// "requireSpacesInsideArrayBrackets": false,
134+
"requireSpacesInsideObjectBrackets": {
135+
"allExcept": [ "}" ]
136+
},
137+
// "requireSpacesInsideParentheses": false,
138+
// "requireTrailingComma": false,
139+
// "requireYodaConditions": false,
140+
// "safeContextKeyword": [ ],
141+
"validateIndentation": 4,
142+
"validateLineBreaks": "LF",
143+
"validateParameterSeparator": ", ",
144+
"validateQuoteMarks": "'"
145+
}

.jsdoc-config.json

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"tags": {
3+
"allowUnknownTags": true,
4+
"dictionaries": ["jsdoc", "closure"]
5+
},
6+
"source": {
7+
"include": [ ],
8+
"includePattern": ".+\\.js(doc)?$",
9+
"excludePattern": "(^|\\/|\\\\)_"
10+
},
11+
12+
"plugins": [
13+
"plugins/markdown"
14+
],
15+
16+
"templates": {
17+
"cleverLinks": false,
18+
"monospaceLinks": false,
19+
"dateFormat": "ddd MMM Do YYYY",
20+
"meta": {
21+
"title": "Postman Collection SDK Documentation"
22+
},
23+
"linenums" : true,
24+
"collapseSymbols" : true,
25+
"inverseNav" : true,
26+
"outputSourceFiles" : true,
27+
"outputSourcePath" : true,
28+
"highlightTutorialCode" : true
29+
},
30+
31+
"opts": {
32+
"template": "./node_modules/jaguarjs-jsdoc",
33+
"encoding": "utf8",
34+
"destination": "./out/docs",
35+
"recurse": true,
36+
"readme": "README.md"
37+
},
38+
39+
"markdown": {
40+
"parser": "gfm",
41+
"hardwrap": false
42+
}
43+
}

0 commit comments

Comments
 (0)