Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump npm modules #2541

Merged
merged 9 commits into from
Dec 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,15 @@
// These issues should be decided and reported in typescript config
"@typescript-eslint/no-explicit-any": "off",
// Adding _ will bypass no-used issues
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": true,
"argsIgnorePattern": "^_"
"argsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": ".*"
}
],
// required for TS where string does not satisfy the expected return type of JSX.Element
Expand All @@ -156,6 +158,8 @@
"enforceForJSX": false
}
],
"@typescript-eslint/lines-between-class-members": "off",
"@typescript-eslint/no-throw-literal": "off",
// We do not see the value of this turned on
"class-methods-use-this": "off",
// allow for-of loops
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
passphrase: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_PASSPHRASE }}

- name: crowdin action
uses: crowdin/github-action@v2.2.0
uses: crowdin/github-action@v2.4.0
with:
upload_sources: false
upload_translations: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
secret/data/crowdin project-id-blockchain-gui | CROWDIN_PROJECT_ID;

- name: crowdin action
uses: crowdin/github-action@v2.2.0
uses: crowdin/github-action@v2.4.0
with:
upload_sources: true
upload_translations: false
Expand Down
Loading
Loading