-
Notifications
You must be signed in to change notification settings - Fork 109
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 #265 from mercadopago/master-v2
Master v2
- Loading branch information
Showing
402 changed files
with
11,121 additions
and
35,677 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,3 @@ | ||
node_modules/* | ||
coverage/* | ||
.idea/* | ||
/*.js | ||
node_modules | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
module.exports = { | ||
'env': { | ||
'es2021': true, | ||
'node': true | ||
}, | ||
'extends': [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended' | ||
], | ||
'parser': '@typescript-eslint/parser', | ||
'parserOptions': { | ||
'ecmaVersion': 12, | ||
'sourceType': 'module' | ||
}, | ||
'plugins': [ | ||
'@typescript-eslint' | ||
], | ||
'rules': { | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'indent': [ | ||
'error', | ||
'tab' | ||
], | ||
'linebreak-style': [ | ||
'error', | ||
'unix' | ||
], | ||
'quotes': [ | ||
'error', | ||
'single' | ||
], | ||
'semi': [ | ||
'error', | ||
'always' | ||
], | ||
"object-curly-spacing": [ | ||
"error", | ||
"always" | ||
] | ||
} | ||
}; |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Node.js Publish Package | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- run: npm ci | ||
- run: npm test | ||
|
||
publish-npm: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
registry-url: https://registry.npmjs.org/ | ||
- run: npm ci | ||
- run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npm run lint |
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,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npm run 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
v18 |
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,9 @@ | ||
repos: | ||
# Websec hook is MANDATORY, DO NOT comment it. | ||
- repo: https://github.com/mercadolibre/fury_websec-git-hooks | ||
rev: v1.0.5 | ||
hooks: | ||
- id: pre_commit_hook | ||
stages: [commit] | ||
- id: post_commit_hook | ||
stages: [post-commit] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# Releases | ||
|
||
## VERSION 1.0.23 | ||
## VERSION 2.0.0 | ||
|
||
_16-03-2019_ | ||
|
||
* Fixing reserved word for strict mode | ||
* Search Method implementation |
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,105 @@ | ||
# Coding Guidelines | ||
|
||
The Mercado Pago NodeJS SDK is a collaborative effort from the start. The SDK team thinks that contributions from | ||
different developer will enrich its feature set and make it more relevant to the community. | ||
|
||
However, absorbing all contributions as-is, while expedient, might lead to difficulties in maintenance of the codebase | ||
is left unchecked. A collaborative codebase often establish guidelines for contributors to ensure code remains | ||
maintainable over time. The effort to maintain the SDK is no different in this regard, so a bit of guidance is in order. | ||
|
||
The purpose of this guide is to set a baseline for contributions. These guidelines are not intended to limit the tools | ||
at your disposal nor to rewire the way you think but rather to encourage good neighbor behavior. | ||
|
||
## Language Guidelines | ||
|
||
We use **english** language. This is to be consistent everywhere, and to be considerate with developers that do not | ||
speak our native language. | ||
|
||
Therefore: source code, comments, documentation, commit messages, review comments, and any other kind of contribution * | ||
MUST* use english language. | ||
|
||
Typos are unavoidable, but try to reduce them by using a spellchecker. Most IDEs can be configured to run one | ||
automatically. | ||
|
||
## Code Guidelines | ||
|
||
To contribute to the project you need to have installed in your machine [pre-commit tool](https://pre-commit.com/) to | ||
check the code style and formatting. | ||
|
||
1. To check if pre-commit is installed, you must run the command below successfully: | ||
|
||
``` | ||
$ pre-commit --version | ||
pre-commit 2.17.0 | ||
``` | ||
|
||
2. After pre-commit is installed at your machine, inside the SDK project folder, you must run the command below to set | ||
up the git hook scripts of the project: | ||
|
||
``` | ||
$ pre-commit install | ||
``` | ||
|
||
After that, git hooks will run automatically before every commit command. | ||
|
||
Generally speaking, be conscious when contributing and try following the same style that the code in the SDK already | ||
has. If you have any doubts, just ask us! | ||
|
||
This rules will be enforced automatically when making a pull requests, and checks will fail if you do not follow them, | ||
resulting in your contribution being automatically rejected until fixed. | ||
|
||
## Comment Guidelines | ||
|
||
Comments in code are a hard thing to write, not because the words are difficult to produce but because it is hard to | ||
make relevant comments. Too much of it and people do not read comments (and it obfuscates code reading) and too little | ||
of it gives you no recourse but to read large portions of codebase to get insight as to what a feature/codeblock is | ||
doing. Both situations are undesirable and efforts should be made at all time to have a please comment reading | ||
experience | ||
|
||
As a general rule you would have to comment on decisions you made while coding that are not part of any specification. | ||
|
||
In particular, you should always comment any decision that: | ||
|
||
* Departs from common wisdom or convention (The **why's** are necessary). | ||
* Takes a significant amount of time to produce. A good rule of thumb here is that if you spent more than 1 hour | ||
thinking on how to produce a fragment of code that took 2 minutes of wrist time to write you should document your | ||
thinking to aid reader and allow for validation. | ||
* Need to preserve properties of the implementation. This is the case of performance sensitive portions of the codebase, | ||
goroutines synchronization, implementations of security primitives, congestion control algorithms, etc. | ||
|
||
As a general rule of what not to comment you should avoid: | ||
|
||
* Commenting on structure of programs that is already part of a convention, specified or otherwise. | ||
* Having pedantic explanations of behavior that can be found by immediate examination of the surrounding code artifacts. | ||
* Commenting on behavior you cannot attest. | ||
|
||
### Branching Guidelines | ||
|
||
Currently `master` is our only long term branch, below a few suggestions of short term branches naming: | ||
|
||
* `hotfix/something-needs-fix`: Small routine patches in code to feature already there. | ||
* `feature/something-new`: A new feature or a change in an existent feature. Beware of breaking changes that would | ||
require a major version bump. | ||
* `doc/improves-documentation-for-this-feature`: If you add or change documentation with no impact to the source code. | ||
|
||
### Git Guidelines | ||
|
||
All commits **SHOULD** follow the [seven rules of a great Git commit message](https://chris.beams.io/posts/git-commit): | ||
|
||
1. Separate subject from body with a blank line. | ||
2. Limit the subject line to 72 characters. | ||
3. Capitalize the subject line. | ||
4. Do not end the subject line with a period. | ||
5. Use the imperative mood in the subject line. | ||
6. Wrap the body at 72 characters. | ||
7. Use the body to explain what and why vs. how. | ||
|
||
Commits such as "fix tests", "now it's working", and many other common messages we find usually in code **WON'T** be | ||
accepted. | ||
|
||
Ideally we would like to enforce these rules, but we are realistic and understand that it might be a big change for some | ||
people. So unless deviating heavily from what was stated we might accept your commits even if not following these rules | ||
perfectly. | ||
|
||
Please avoid taking too much time to deliver code, and always [rebase](https://git-scm.com/docs/git-rebase) your code to | ||
avoid reverse merge commits. |
Oops, something went wrong.