-
Notifications
You must be signed in to change notification settings - Fork 14
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 #1727 from skalenetwork/beta
Prepare 2.2.0 release candidate
- Loading branch information
Showing
236 changed files
with
9,309 additions
and
12,584 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 |
---|---|---|
|
@@ -11,6 +11,8 @@ module.exports = { | |
|
||
}, | ||
ignorePatterns: [ | ||
|
||
"coverage/**", | ||
"typechain-types/**", | ||
"**/venv/**" | ||
] | ||
}; |
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,10 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
if [[ $(npx cspell -- --no-summary $1 2> /dev/null) ]] | ||
then | ||
echo "It looks like you have spell-checking errors in your commit message." | ||
npx cspell -- --no-summary $1 | ||
exit 1 | ||
fi |
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,17 @@ | ||
#!/bin/bash | ||
|
||
# cSpell:words gpgsign | ||
|
||
set -e | ||
|
||
GPG_SIGN_ENABLED=$(git config commit.gpgsign || true) | ||
if ! [[ "$GPG_SIGN_ENABLED" == "true" ]] | ||
then | ||
echo "Enable GPG signature for new commits"; | ||
exit 1; | ||
fi | ||
|
||
files=$(git diff --cached --name-only) | ||
npx cspell -- --no-summary $files | ||
|
||
yarn fullCheck |
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 @@ | ||
* @DimaStebaev @DmytroNazarenko | ||
*.md @skalenetwork/docowners |
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,9 +1,11 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/proxy" | ||
schedule: | ||
interval: "weekly" | ||
day: "saturday" | ||
allow: | ||
- dependency-type: "production" | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
|
||
- package-ecosystem: "pip" | ||
directory: "/scripts/" | ||
schedule: | ||
interval: "weekly" |
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.