-
Notifications
You must be signed in to change notification settings - Fork 71
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 #1175 from hirosystems/dev
release-2023-03-30
- Loading branch information
Showing
266 changed files
with
3,619 additions
and
3,717 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
parser: '@typescript-eslint/parser' | ||
extends: | ||
- eslint:recommended | ||
- plugin:@typescript-eslint/recommended | ||
- plugin:react/recommended | ||
- plugin:react-hooks/recommended | ||
- plugin:jsx-a11y/recommended | ||
- prettier | ||
plugins: | ||
- '@typescript-eslint' | ||
- react | ||
- react-hooks | ||
- jsx-a11y | ||
|
||
env: | ||
browser: true | ||
node: true | ||
es2021: true | ||
settings: | ||
react: | ||
version: detect | ||
rules: | ||
react/react-in-jsx-scope: off | ||
react/prop-types: off | ||
react/jsx-uses-react: off | ||
react/jsx-uses-vars: error | ||
'@typescript-eslint/explicit-module-boundary-types': off | ||
'@typescript-eslint/no-unused-vars': | ||
- error | ||
- argsIgnorePattern: '^_' | ||
varsIgnorePattern: '^_' | ||
overrides: | ||
- files: ['**/*.tsx'] | ||
rules: | ||
react/jsx-filename-extension: | ||
- error | ||
- extensions: ['.tsx'] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ jobs: | |
|
||
steps: | ||
- uses: lucasmotta/[email protected] | ||
if: github.repository == 'hirosystems/stacks-wallet' | ||
if: github.repository == 'hirosystems/desktop-wallet' | ||
with: | ||
header: '> _Building new release, please wait for the latest_ <img src="https://user-images.githubusercontent.com/1618764/97873036-51dfb200-1d17-11eb-89f5-0a922dc3ac92.gif" width="12" />' | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -61,9 +61,9 @@ jobs: | |
|
||
- name: Import GPG key | ||
id: import_gpg_key | ||
uses: crazy-max/ghaction-import-gpg@v3 | ||
uses: crazy-max/ghaction-import-gpg@v5 | ||
with: | ||
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
passphrase: ${{ secrets.GPG_PASSPHRASE }} | ||
|
||
- uses: actions/cache@v2 | ||
|
@@ -151,9 +151,9 @@ jobs: | |
|
||
- name: Import GPG key | ||
id: import_gpg_key | ||
uses: crazy-max/ghaction-import-gpg@v3 | ||
uses: crazy-max/ghaction-import-gpg@v5 | ||
with: | ||
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
passphrase: ${{ secrets.GPG_PASSPHRASE }} | ||
|
||
- name: Generate binary shasums | ||
|
@@ -178,13 +178,13 @@ jobs: | |
|
||
steps: | ||
- uses: lucasmotta/[email protected] | ||
if: (!contains(needs.*.result, 'failure')) && github.repository == 'hirosystems/stacks-wallet' | ||
if: (!contains(needs.*.result, 'failure')) && github.repository == 'hirosystems/desktop-wallet' | ||
with: | ||
header: '> [Download the latest build](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})' | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: lucasmotta/[email protected] | ||
if: (contains(needs.*.result, 'failure')) && github.repository == 'hirosystems/stacks-wallet' | ||
if: (contains(needs.*.result, 'failure')) && github.repository == 'hirosystems/desktop-wallet' | ||
with: | ||
header: '> _Build failed, [see here for details](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})_' | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 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,2 @@ | ||
pnpm-lock.yaml | ||
dll |
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,13 @@ | ||
const defaultConfig = require('@stacks/prettier-config'); | ||
|
||
module.exports = { | ||
...defaultConfig, | ||
importOrder: [ | ||
'^react', | ||
'<THIRD_PARTY_MODULES>', | ||
'^@(api|assets|components|constants|crypto|hooks|modals|models|models|store|utils)/(.*)$', | ||
'^[./]', | ||
], | ||
importOrderSeparation: true, | ||
importOrderSortSpecifiers: true, | ||
}; |
Oops, something went wrong.