-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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 #4 from aptos-labs/collectibles-refactor
- Loading branch information
Showing
16 changed files
with
435 additions
and
266 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,43 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
jest: true, | ||
webextensions: true | ||
}, | ||
extends: [ | ||
'airbnb', | ||
'airbnb-typescript', | ||
'plugin:typescript-sort-keys/recommended' | ||
], | ||
ignorePatterns: [ | ||
'*.css', | ||
'*.js', | ||
'*.jsx' | ||
], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
ecmaFeatures: { | ||
jsx: true | ||
}, | ||
tsconfigRootDir: __dirname, | ||
project: ["tsconfig.json"], | ||
ecmaVersion: 'latest', | ||
sourceType: 'module' | ||
}, | ||
plugins: [ | ||
'sort-class-members', | ||
'typescript-sort-keys', | ||
'sort-keys-fix', | ||
'sort-destructure-keys', | ||
'react', | ||
'@typescript-eslint' | ||
], | ||
rules: { | ||
"react/require-default-props": 0, | ||
"react/jsx-props-no-spreading": "off", | ||
"sort-destructure-keys/sort-destructure-keys": 2, | ||
"sort-keys-fix/sort-keys-fix": "warn", | ||
"sort-keys": ["error", "asc", { caseSensitive: true, minKeys: 2, natural: false }] | ||
} | ||
} |
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,21 @@ | ||
<!-- | ||
Thank you for sending a PR. We appreciate you spending time to help improve the Aptos Core project. | ||
The project is undergoing daily changes. Pull Requests will be reviewed and responded to as time permits. | ||
--> | ||
|
||
## Motivation | ||
|
||
(Write your motivation for proposed changes here.) | ||
|
||
### Have you read the [Contributing Guidelines on pull requests](https://github.com/aptos-labs/aptos-core/blob/main/CONTRIBUTING.md#pull-requests)? | ||
|
||
(You must have submitted a [signed CLA](https://github.com/aptos-labs/aptos-core/blob/main/CONTRIBUTING.md#contributor-license-agreement) that includes your GitHub handle prior to us accepting and landing your work. Write your answer here.) | ||
|
||
## Test Plan | ||
|
||
(Share your test plan here. If you changed code, please provide us with clear instructions for verifying that your changes work.) | ||
|
||
## Related PRs | ||
|
||
(If this PR adds or changes functionality, please take some time to update the docs at https://github.com/aptos-labs/aptos-core/tree/main/developer-docs-site, and link to your PR here.) |
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
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.