-
-
Notifications
You must be signed in to change notification settings - Fork 728
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
Showing
16 changed files
with
280 additions
and
146 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,45 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
max_line_length = 160 | ||
quote_type = single | ||
|
||
[test/*] | ||
max_line_length = off | ||
|
||
[*.md] | ||
indent_size = off | ||
max_line_length = off | ||
|
||
[*.json] | ||
max_line_length = off | ||
|
||
[Makefile] | ||
max_line_length = off | ||
|
||
[CHANGELOG.md] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[LICENSE] | ||
indent_size = 2 | ||
max_line_length = off | ||
|
||
[coverage/**/*] | ||
indent_size = off | ||
indent_style = off | ||
indent = off | ||
max_line_length = off | ||
|
||
[dist/*] | ||
max_line_length = off | ||
insert_final_newline = off | ||
|
||
[.nycrc] | ||
indent_style = off |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,4 +1,14 @@ | ||
bower.json | ||
component.json | ||
.npmignore | ||
.travis.yml | ||
# gitignore | ||
npm-debug.log | ||
node_modules | ||
.DS_Store | ||
|
||
# Only apps should have lockfiles | ||
yarn.lock | ||
package-lock.json | ||
npm-shrinkwrap.json | ||
|
||
.nyc_output/ | ||
coverage/ | ||
|
||
.github/workflows |
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,13 @@ | ||
{ | ||
"all": true, | ||
"check-coverage": false, | ||
"reporter": ["text-summary", "text", "html", "json"], | ||
"lines": 86, | ||
"statements": 85.93, | ||
"functions": 82.43, | ||
"branches": 76.06, | ||
"exclude": [ | ||
"coverage", | ||
"dist" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
{ | ||
"name": "qs", | ||
"main": "dist/qs.js", | ||
"homepage": "https://github.com/hapijs/qs", | ||
"authors": [ | ||
"Nathan LaFreniere <[email protected]>" | ||
], | ||
"description": "A querystring parser that supports nesting and arrays, with a depth limit", | ||
"keywords": [ | ||
"querystring", | ||
"qs" | ||
], | ||
"license": "BSD-3-Clause", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
] | ||
"name": "qs", | ||
"main": "dist/qs.js", | ||
"homepage": "https://github.com/hapijs/qs", | ||
"authors": [ | ||
"Nathan LaFreniere <[email protected]>" | ||
], | ||
"description": "A querystring parser that supports nesting and arrays, with a depth limit", | ||
"keywords": [ | ||
"querystring", | ||
"qs" | ||
], | ||
"license": "BSD-3-Clause", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"name": "qs", | ||
"repository": "hapijs/qs", | ||
"description": "query-string parser / stringifier with nesting support", | ||
"version": "6.2.3", | ||
"keywords": ["querystring", "query", "parser"], | ||
"main": "lib/index.js", | ||
"scripts": [ | ||
"lib/index.js", | ||
"lib/parse.js", | ||
"lib/stringify.js", | ||
"lib/utils.js" | ||
], | ||
"license": "BSD-3-Clause" | ||
"name": "qs", | ||
"repository": "hapijs/qs", | ||
"description": "query-string parser / stringifier with nesting support", | ||
"version": "6.2.3", | ||
"keywords": ["querystring", "query", "parser"], | ||
"main": "lib/index.js", | ||
"scripts": [ | ||
"lib/index.js", | ||
"lib/parse.js", | ||
"lib/stringify.js", | ||
"lib/utils.js" | ||
], | ||
"license": "BSD-3-Clause" | ||
} |
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
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
Oops, something went wrong.