-
Notifications
You must be signed in to change notification settings - Fork 8
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 #1300 from Chia-Network/develop
Release 2.0
- Loading branch information
Showing
439 changed files
with
24,214 additions
and
101,461 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
*.config.js |
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,23 @@ | ||
module.exports = { | ||
root: true, | ||
env: { browser: true, es2020: true }, | ||
extends: [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:react-hooks/recommended", | ||
], | ||
ignorePatterns: ["dist", ".eslintrc.cjs"], | ||
parser: "@typescript-eslint/parser", | ||
plugins: ["react-refresh"], | ||
rules: { | ||
"react-refresh/only-export-components": [ | ||
"warn", | ||
{ allowConstantExport: true }, | ||
], | ||
// Disabling the rules related to enforcing types | ||
"@typescript-eslint/explicit-module-boundary-types": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-implicit-any-catch": "off", | ||
"@typescript-eslint/ban-ts-comment": "off", | ||
}, | ||
}; |
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,8 +1,67 @@ | ||
# This file is managed by the repo-content-updater project. Manual changes here will result in a PR to bring back | ||
# inline with the upstream template, unless you remove the dependabot managed file property from the repo | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" | ||
directory: / | ||
schedule: | ||
interval: "weekly" | ||
day: "tuesday" | ||
open-pull-requests-limit: 10 | ||
labels: | ||
- dependencies | ||
- go | ||
- "Changed" | ||
reviewers: ["cmmarslender", "starttoaster"] | ||
groups: | ||
global: | ||
patterns: | ||
- "*" | ||
|
||
- package-ecosystem: "pip" | ||
directory: / | ||
schedule: | ||
interval: "weekly" | ||
day: "tuesday" | ||
open-pull-requests-limit: 10 | ||
labels: | ||
- dependencies | ||
- python | ||
- "Changed" | ||
reviewers: ["emlowe", "altendky"] | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: / | ||
schedule: | ||
interval: "weekly" | ||
day: "tuesday" | ||
open-pull-requests-limit: 10 | ||
labels: | ||
- dependencies | ||
- github_actions | ||
- "Changed" | ||
reviewers: ["cmmarslender", "Starttoaster", "pmaslana"] | ||
|
||
- package-ecosystem: "npm" | ||
directory: "/" | ||
directory: / | ||
schedule: | ||
interval: "weekly" | ||
day: "tuesday" | ||
open-pull-requests-limit: 10 | ||
labels: | ||
- dependencies | ||
- javascript | ||
- "Changed" | ||
reviewers: ["cmmarslender", "ChiaMineJP"] | ||
|
||
- package-ecosystem: cargo | ||
directory: / | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
target-branch: "develop" | ||
day: "tuesday" | ||
open-pull-requests-limit: 10 | ||
labels: | ||
- dependencies | ||
- rust | ||
- "Changed" |
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,25 +1,33 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
tsconfig.tsbuildinfo | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
node_modules | ||
build | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# testing | ||
/coverage | ||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
||
# production | ||
/build | ||
/dist | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
.idea/* | ||
# Contentlayer | ||
.contentlayer | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.package-lock.json | ||
.history |
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 +1 @@ | ||
18.16.0 | ||
20.16 |
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,8 +1,7 @@ | ||
module.exports = { | ||
bracketSpacing: true, | ||
jsxBracketSameLine: true, | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
arrowParens: 'avoid', | ||
endOfLine: 'auto', | ||
}; | ||
printWidth: 120 | ||
} |
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,4 @@ | ||
pr_target_branch: develop | ||
assign_users: | ||
- TheLastCicada | ||
commit_prefix: "chore: " |
Oops, something went wrong.