This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
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 #42 from BiteBit/2.0.0
2.x
- Loading branch information
Showing
147 changed files
with
3,884 additions
and
35,612 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 |
---|---|---|
@@ -1,3 +1,15 @@ | ||
{ | ||
"plugins": ["transform-async-to-generator", "transform-async-generator-functions", "transform-es2015-modules-commonjs", "transform-es2015-arrow-functions", "transform-es2015-classes", "transform-es2015-parameters", "transform-es2015-destructuring", "transform-es2015-block-scoping", "transform-es2015-block-scoped-functions"] | ||
} | ||
"plugins": [ | ||
"transform-async-to-generator", | ||
"transform-async-generator-functions", | ||
"transform-decorators-legacy", | ||
"transform-es2015-modules-commonjs", | ||
"transform-es2015-arrow-functions", | ||
"transform-object-rest-spread", | ||
"transform-es2015-classes", | ||
"transform-es2015-parameters", | ||
"transform-es2015-destructuring", | ||
"transform-es2015-block-scoping", | ||
"transform-es2015-block-scoped-functions" | ||
] | ||
} |
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,5 +1,3 @@ | ||
.nyc_output | ||
lib | ||
coverage | ||
dist | ||
node_modules | ||
lib/swagger-ui |
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,3 +1,35 @@ | ||
{ | ||
"extends": "crocodile" | ||
} | ||
"extends": "airbnb-base", | ||
"rules": { | ||
"arrow-body-style": [ | ||
"error", | ||
"always" | ||
], | ||
"class-methods-use-this": 0, | ||
"guard-for-in": 0, | ||
"import/no-dynamic-require": 1, | ||
"import/no-mutable-exports": 1, | ||
"import/prefer-default-export": 0, | ||
"import/no-extraneous-dependencies": [ | ||
"error", | ||
{ | ||
"devDependencies": [ | ||
"**/test/**" | ||
] | ||
} | ||
], | ||
"no-console": 0, | ||
"no-param-reassign": [ | ||
2, | ||
{ | ||
"props": false | ||
} | ||
], | ||
"no-restricted-syntax": 1, | ||
"no-unused-vars": 1, | ||
"no-empty": "warn", | ||
"object-curly-spacing": 0, | ||
"key-spacing": "warn", | ||
"max-len": "warn" | ||
} | ||
} |
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,11 +1,14 @@ | ||
.idea | ||
.DS_Store | ||
.nyc_output | ||
coverage | ||
dist | ||
dist-test | ||
node_modules | ||
.vscode | ||
|
||
*.log | ||
*.map | ||
*.lcov | ||
|
||
lib | ||
coverage | ||
dist | ||
dist-test | ||
node_modules |
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,5 @@ | ||
.idea | ||
test | ||
dist-test | ||
|
||
example | ||
src | ||
test |
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,8 +1,8 @@ | ||
language: node_js | ||
node_js: | ||
- "4" | ||
- "5" | ||
- "6" | ||
- "7" | ||
script: "npm run test-travis" | ||
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls" | ||
- "8" | ||
- "9" | ||
script: "npm run ci" | ||
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls" |
Oops, something went wrong.