-
Notifications
You must be signed in to change notification settings - Fork 10
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 #23 from vechainfoundation/carpini/prettier-config…
…-from-github-repo fix: add prettier eslint and tsconfig config from github
- Loading branch information
Showing
27 changed files
with
2,161 additions
and
2,223 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 @@ | ||
module.exports = { | ||
extends: ["custom/library"], | ||
}; | ||
const Config = require('@vechain/repo-config'); | ||
|
||
module.exports = Config.EslintLibrary; |
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,4 +1,6 @@ | ||
const Config = require('@vechain/repo-config'); | ||
|
||
module.exports = { | ||
extends: ["custom/react"], | ||
ignorePatterns: ["src/hardhat/**/*"], | ||
...Config.EslintReact, | ||
ignorePatterns: [...Config.EslintReact.ignorePatterns, 'src/hardhat/**/*'], | ||
}; |
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,4 @@ | ||
{ | ||
"extends": "tsconfig/react-app.json", | ||
"include": ["src"] | ||
"extends": "@vechain/repo-config/src/tsconfig/react.json", | ||
"include": ["src"] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module.exports = { | ||
extends: ["custom/react"], | ||
}; | ||
const Config = require('@vechain/repo-config'); | ||
|
||
module.exports = Config.EslintReact; |
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,32 +1,32 @@ | ||
{ | ||
"name": "@vechain/react-wallet-kit", | ||
"version": "0.0.0", | ||
"private": true, | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"scripts": { | ||
"build": "tsup src/index.tsx --format cjs --dts --external react", | ||
"clean": "rm -rf dist node_modules .turbo", | ||
"dev": "tsup src/index.tsx --format cjs --watch --dts --external react", | ||
"lint": "eslint src --ext .js,.jsx,.ts,.tsx" | ||
}, | ||
"dependencies": { | ||
"@vechain/connex": "2.1.0", | ||
"@vechain/connex-framework": "2.1.0", | ||
"@vechain/wallet-connect": "*", | ||
"@vechain/wallet-kit": "*", | ||
"thor-devkit": "^2.0.9" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^18.2.28", | ||
"@types/react-dom": "^18.2.13", | ||
"eslint": "^8.4.1", | ||
"eslint-config-custom": "*", | ||
"react": "^18.2.0", | ||
"tsconfig": "*", | ||
"tsup": "^5.10.1", | ||
"typescript": "4.9.5" | ||
} | ||
"name": "@vechain/react-wallet-kit", | ||
"version": "0.0.0", | ||
"private": true, | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"scripts": { | ||
"build": "tsup src/index.tsx --format cjs --dts --external react", | ||
"clean": "rm -rf dist node_modules .turbo", | ||
"dev": "tsup src/index.tsx --format cjs --watch --dts --external react", | ||
"lint": "eslint src --ext .js,.jsx,.ts,.tsx" | ||
}, | ||
"dependencies": { | ||
"@vechain/connex": "2.1.0", | ||
"@vechain/connex-framework": "2.1.0", | ||
"@vechain/wallet-connect": "*", | ||
"@vechain/wallet-kit": "*", | ||
"thor-devkit": "^2.0.9" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^18.2.28", | ||
"@types/react-dom": "^18.2.13", | ||
"@vechain/repo-config": "https://github.com/vechainfoundation/repo-config#v0.0.1", | ||
"eslint": "^8.4.1", | ||
"react": "^18.2.0", | ||
"tsconfig": "*", | ||
"tsup": "^5.10.1", | ||
"typescript": "4.9.5" | ||
} | ||
} |
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,5 @@ | ||
{ | ||
"extends": "tsconfig/react-library.json", | ||
"include": ["."], | ||
"exclude": ["dist", "node_modules"] | ||
"extends": "@vechain/repo-config/src/tsconfig/library.json", | ||
"include": ["."], | ||
"exclude": ["dist", "node_modules"] | ||
} |
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 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,3 +1,3 @@ | ||
module.exports = { | ||
extends: ["custom/library"], | ||
}; | ||
const Config = require('@vechain/repo-config'); | ||
|
||
module.exports = Config.EslintLibrary; |
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,28 +1,28 @@ | ||
{ | ||
"name": "@vechain/wallet-connect", | ||
"version": "0.0.0", | ||
"private": true, | ||
"license": "MIT", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"scripts": { | ||
"build": "tsup src/index.ts --format cjs --dts", | ||
"clean": "rm -rf dist node_modules .turbo", | ||
"dev": "tsup src/index.ts --format cjs --watch --dts", | ||
"lint": "eslint src --ext .js,.jsx,.ts,.tsx" | ||
}, | ||
"dependencies": { | ||
"@walletconnect/modal": "2.6.2", | ||
"@walletconnect/sign-client": "2.10.2", | ||
"@walletconnect/utils": "2.10.2" | ||
}, | ||
"devDependencies": { | ||
"@vechain/connex-types": "2.1.0", | ||
"@walletconnect/types": "2.10.2", | ||
"eslint": "^8.4.1", | ||
"eslint-config-custom": "*", | ||
"tsconfig": "*", | ||
"tsup": "^5.10.1", | ||
"typescript": "4.9.5" | ||
} | ||
"name": "@vechain/wallet-connect", | ||
"version": "0.0.0", | ||
"private": true, | ||
"license": "MIT", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"scripts": { | ||
"build": "tsup src/index.ts --format cjs --dts", | ||
"clean": "rm -rf dist node_modules .turbo", | ||
"dev": "tsup src/index.ts --format cjs --watch --dts", | ||
"lint": "eslint src --ext .js,.jsx,.ts,.tsx" | ||
}, | ||
"dependencies": { | ||
"@walletconnect/modal": "2.6.2", | ||
"@walletconnect/sign-client": "2.10.2", | ||
"@walletconnect/utils": "2.10.2" | ||
}, | ||
"devDependencies": { | ||
"@vechain/connex-types": "2.1.0", | ||
"@vechain/repo-config": "https://github.com/vechainfoundation/repo-config#v0.0.1", | ||
"@walletconnect/types": "2.10.2", | ||
"eslint": "^8.4.1", | ||
"tsconfig": "*", | ||
"tsup": "^5.10.1", | ||
"typescript": "4.9.5" | ||
} | ||
} |
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,5 @@ | ||
{ | ||
"extends": "tsconfig/base.json", | ||
"include": ["."], | ||
"exclude": ["dist", "node_modules"] | ||
"extends": "@vechain/repo-config/src/tsconfig/base.json", | ||
"include": ["."], | ||
"exclude": ["dist", "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,3 +1,3 @@ | ||
module.exports = { | ||
extends: ["custom/library"], | ||
}; | ||
const Config = require('@vechain/repo-config'); | ||
|
||
module.exports = Config.EslintLibrary; |
Oops, something went wrong.