forked from metaplex-foundation/metaplex-program-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove JavaScript Workspaces (metaplex-foundation#792)
* remove workspaces from root package.json * chore: fix yarn workspace issue by cleaning plugins * chore: yarn 3.x be gone * fix: missing bn.js types for core * chore: clean package manager and bin deps from root * chore: add prettier back since eslintrc uses it as lib * create individual lock and eslintrc files * chore: add prettier deps * chore: various fixes * chore: add prettier dep to core * ci: install root modules * ci: fix hydra integration test * ci: try to fix hydra integration test * chore: clean up * add back package json for amman base file; other fixes * fix: revert fixed-price-sale amman version Co-authored-by: Thorsten Lorenz <[email protected]>
- Loading branch information
1 parent
3ce139d
commit ac347fb
Showing
47 changed files
with
22,964 additions
and
15,222 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1,16 @@ | ||
module.exports = require('../../.eslintrc'); | ||
module.exports = { | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
ecmaFeatures: { | ||
ecmaVersion: 2020, | ||
sourceType: 'module', | ||
}, | ||
}, | ||
extends: ['plugin:@typescript-eslint/recommended', 'prettier', 'plugin:prettier/recommended'], | ||
rules: { | ||
'@typescript-eslint/explicit-module-boundary-types': 'off', | ||
'@typescript-eslint/no-empty-function': 'off', | ||
'@typescript-eslint/ban-types': ['error', { extendDefaults: true, types: { '{}': false } }], | ||
'@typescript-eslint/ban-ts-comment': 'off', | ||
}, | ||
}; |
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.