-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/dev' into feat/stats
- Loading branch information
Showing
6,122 changed files
with
418,404 additions
and
421,418 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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,22 +1,33 @@ | ||
# rename this file to .env and supply the values listed below | ||
# also make sure they are available to the build tool (e.g. Netlify) | ||
# warning: variables prefixed with GATSBY_ will be made available to client-side code | ||
# warning: variables prefixed with NEXT_PUBLIC_ will be made available to client-side code | ||
# be careful not to expose sensitive data (e.g. your Algolia admin key) | ||
ALGOLIA_ADMIN_KEY=insertValue | ||
ETHERSCAN_API_KEY=insertValue | ||
GATSBY_ALGOLIA_APP_ID=insertValue | ||
GATSBY_ALGOLIA_SEARCH_KEY=insertValue | ||
GATSBY_ALGOLIA_BASE_SEARCH_INDEX_NAME=insertValue | ||
GATSBY_GITHUB_TOKEN_READ_ONLY=insertValue | ||
GATSBY_FUNCTIONS_PATH=insertValue | ||
|
||
# Build pages only for the specified langs. Leave it empty to build all the langs | ||
# e.g. `en,fr` will only build english and french pages | ||
# Note: always include `en` as it is the default lang of the site | ||
GATSBY_BUILD_LANGS= | ||
# Algolia environment (app ID, search key and base search index name required for search) | ||
# NEXT_PUBLIC_ALGOLIA_APP_ID=insertValue | ||
# NEXT_PUBLIC_ALGOLIA_SEARCH_KEY=insertValue | ||
# NEXT_PUBLIC_ALGOLIA_BASE_SEARCH_INDEX_NAME=insertValue | ||
# NEXT_PUBLIC_GITHUB_TOKEN_READ_ONLY=insertValue | ||
|
||
# Etherscan API key (required for Etherscan API fetches) | ||
# ETHERSCAN_API_KEY=insertValue | ||
|
||
# Google API key and Calendar ID (required to fetch Calendar events) | ||
# GOOGLE_API_KEY= | ||
# GOOGLE_CALENDAR_ID= | ||
|
||
# Folders or files to ignore from the `src/content` folder | ||
IGNORE_CONTENT=**/docs,**/tutorials | ||
# Matomo environment (URL and site ID required for analytics) | ||
NEXT_PUBLIC_MATOMO_URL= | ||
NEXT_PUBLIC_MATOMO_SITE_ID= | ||
|
||
# Used to avoid loading Matomo in our preview deploys | ||
IS_PREVIEW_DEPLOY=false | ||
IS_PREVIEW_DEPLOY=false | ||
|
||
# Build pages only for the specified langs. Leave it empty to build all the langs | ||
# e.g. `en,fr` will only build English and French pages | ||
# Note: always include `en` as it is the default lang of the site | ||
BUILD_LOCALES= | ||
|
||
# If resource constraints are being hit during builds, change LIMIT_CPUS to a | ||
# fixed number of CPUs (e.g. 2) to limit the demand during build time | ||
LIMIT_CPUS= |
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,2 +1,3 @@ | ||
# The content is used as a code example in /src/pages/index.js | ||
src/data/CreateWallet.js | ||
.next | ||
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"extends": [ | ||
"next/core-web-vitals", | ||
"prettier", | ||
"plugin:storybook/recommended" | ||
], | ||
"env": { "es6": true }, | ||
"plugins": ["simple-import-sort"], | ||
"rules": { | ||
"simple-import-sort/imports": [ | ||
"error", | ||
{ | ||
"groups": [ | ||
// Node.js builtins. | ||
[ | ||
"^(assert|buffer|child_process|cluster|console|constants|crypto|dgram|dns|domain|events|fs|http|https|module|net|os|path|punycode|querystring|readline|repl|stream|string_decoder|sys|timers|tls|tty|url|util|vm|zlib|freelist|v8|process|async_hooks|http2|perf_hooks)(/.*|$)" | ||
], | ||
// Packages. `react` related packages come first. | ||
// Also, put `react-icons` in sorting order not with `react` | ||
["^react(?!-.)$", "^\\w", "^@\\w"], | ||
// The Chakra theme directory if imported to story file or other places | ||
["^@/@chakra-ui"], | ||
// From the `types` directory. | ||
["^@/lib/types", "^@/lib/interfaces"], | ||
// From the `components` directory. | ||
["^@/components"], | ||
// From the `utils` directory. | ||
["^@/lib/utils"], | ||
// From the `data` directory. | ||
["^@/data"], | ||
// From the `constants` directory. | ||
["^@/lib/constants"], | ||
// Parent imports. Put `..` last. | ||
["^\\.\\.(?!/?$)", "^\\.\\./?$"], | ||
// Other relative imports. Put same-folder imports and `.` last. | ||
["^\\./(?=.*/)(?!/?$)", "^\\.(?!/?$)", "^\\./?$"], | ||
// Style imports. | ||
["^.+\\.s?css$"], | ||
// Side effect imports. | ||
["^\\u0000"] | ||
] | ||
} | ||
], | ||
"simple-import-sort/exports": "error" | ||
} | ||
} |
Validating CODEOWNERS rules …
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.