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

mkdocs to docusaurus #1338

Merged
merged 42 commits into from
Jun 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
566a09a
fix: removing comments
joshuafernandes May 30, 2023
cf7cdcc
fix: algolia -> local search
joshuafernandes Jun 13, 2023
31f1e4f
homepage, footer, logo, categories, and images
Jun 14, 2023
64eb7cf
fix footer, swizzle version banner+badge and tags
Jun 14, 2023
7ce4a86
docs: add documentation tags
bgravenorst Jun 15, 2023
6f60ef7
minor edit
Jun 15, 2023
c106a09
docs: update navigation bar
bgravenorst Jun 15, 2023
af842b2
Remove Husky.
bgravenorst Jun 19, 2023
654ad2d
docs: revert Husky removal
bgravenorst Jun 20, 2023
f85a489
remove husky, integrate latest changes, + edits
Jun 21, 2023
cc3f103
Merge branch 'main' into docusaurus
Jun 21, 2023
2203d67
update project-words.txt
Jun 21, 2023
98559c2
prettier format
Jun 21, 2023
18c6cbc
fixes
Jun 21, 2023
46af5d5
js -> jsx
Jun 21, 2023
0cd9fd3
clear jsx warnings
Jun 21, 2023
731f010
release docs version 23.4.1
Jun 21, 2023
8b32569
update footer and version redirects
Jun 21, 2023
ccd3e02
fix: removing comments
joshuafernandes May 30, 2023
359893b
fix: algolia -> local search
joshuafernandes Jun 13, 2023
5a17cb7
homepage, footer, logo, categories, and images
Jun 14, 2023
8dfd019
fix footer, swizzle version banner+badge and tags
Jun 14, 2023
e2af4d4
docs: add documentation tags
bgravenorst Jun 15, 2023
df1625e
minor edit
Jun 15, 2023
16b283d
docs: update navigation bar
bgravenorst Jun 15, 2023
e394d6b
Remove Husky.
bgravenorst Jun 19, 2023
c8c18c7
docs: revert Husky removal
bgravenorst Jun 20, 2023
62c85a7
remove husky, integrate latest changes, + edits
Jun 21, 2023
c1b8981
Update for OpenJ9 instructions. (#1334)
non-fungible-nelson May 31, 2023
fbc9169
First draft performance troubleshooting page (#1335)
non-fungible-nelson May 31, 2023
c5c8d18
Txpool options (#1339)
bgravenorst Jun 6, 2023
848537d
update project-words.txt
Jun 21, 2023
93cd2ef
prettier format
Jun 21, 2023
998eac3
fixes
Jun 21, 2023
cfd1fc2
js -> jsx
Jun 21, 2023
884b24d
clear jsx warnings
Jun 21, 2023
3f7f2a5
release docs version 23.4.1
Jun 21, 2023
11ec63e
update footer and version redirects
Jun 21, 2023
357c774
use yarn to build and not npm
joshuafernandes Jun 21, 2023
12b7fc3
updating versions and redirects
joshuafernandes Jun 22, 2023
8955925
Merge branch 'docusaurus' of github.com:ConsenSys/besu-docs into docu…
Jun 22, 2023
f6198bf
fix prettier?
Jun 22, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
57 changes: 57 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"version": "0.2",
"gitignoreRoot": ".",
"useGitignore": true,
"dictionaries": [
"css",
"html",
"fonts",
"typescript",
"softwareTerms",
"companies",
"lorem-ipsum",
"project-words"
],
"dictionaryDefinitions": [
{
"name": "project-words",
"path": "./project-words.txt",
"noSuggest": true
}
],
"ignorePaths": [
"CHANGELOG.md",
"LICENSE",
"package.json",
"yarn.lock",
"project-words.txt",
"__snapshots__",
"*.min.*",
"jest/vendor",
"docusaurus.config.js",
"src/css/",
"babel.config.js",
"api/",
"sidebars.js",
"tsconfig.*.json",
".github/**",
"__pycache__/**/*",
"docs/Reference/**",
"docs/public-networks/reference/cli/options.md",
"MAINTAINERS.md",
"CODE_OF_CONDUCT.md",
"CHANGELOG.md"
],
"ignoreRegExpList": [
"Email",
"Urls",
"#[\\w-]*",
"/^\\s*```[\\s\\S]*?^\\s*```/gm",
"/^\\s*`[\\s\\S]*?^\\s*`/gm",
"`[^`]*`",
"\\|[^\\n]+\\|",
"\\|[^\n]+",
"[^\n]+\\|",
"\\|[^\n]+\\|[^\n]+\\|"
]
}
25 changes: 17 additions & 8 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
# http://editorconfig.org

root = true

[*]
charset=utf-8
end_of_line=lf
trim_trailing_whitespace=true
insert_final_newline=true
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
max_line_length = 80
trim_trailing_whitespace = true

[*.md]
insert_final_newline = false
trim_trailing_whitespace = false

[{*.yml,*.yaml}]
indent_style=space
indent_size=2

[.editorconfig]
indent_style=space
indent_size=4

[{*.yml,*.yaml}]
indent_style=space
indent_size=2

7 changes: 7 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
build/
.eslintrc.js
docs/test-api
./node_modules/*
*.md
*.mdx
LICENSE
88 changes: 88 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
"plugin:react/recommended",
"airbnb-typescript",
"plugin:import/typescript",
// @NOTE: Make sure this is always the last element in the array.
"plugin:prettier/recommended",
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
ecmaFeatures: {
jsx: true,
},
project: ["./tsconfig.json"],
},
plugins: [
"react",
"react-hooks",
"jsx-a11y",
"import",
"prettier",
"@typescript-eslint",
],
settings: {
react: {
pragma: "React", // Pragma to use, default to "React"
fragment: "Fragment", // Fragment to use (may be a property of <pragma>), default to "Fragment"
version: "detect", // React version. "detect" automatically picks the version you have installed.
// You can also use `16.0`, `16.3`, etc, if you want to override the detected value.
// default to latest and warns if missing
// It will default to "detect" in the future
},
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"],
},
"import/resolver": {
typescript: {},
},
},
rules: {
"import/prefer-default-export": 0,
"react/prop-types": 0,
"import/no-unresolved": [
"error",
{ ignore: ["^@theme", "^@docusaurus", "^@site"] },
],
"no-nested-ternary": 0,
"no-console": 0,
"no-unused-vars": 0,
"no-use-before-define": 0,
"arrow-body-style": 0,
"jsx-a11y/anchor-is-valid": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/click-events-have-key-events": 0,
"@typescript-eslint/no-unused-expressions": 0,
"@typescript-eslint/no-unused-vars": ["warn", { args: "none" }],
"@typescript-eslint/no-use-before-define": "warn",
"react/require-default-props": 0,
"react/jsx-props-no-spreading": 0,
"react/button-has-type": 0,
"jsx-a11y/label-has-associated-control": [
"error",
{
labelComponents: [],
labelAttributes: [],
controlComponents: [],
assert: "either",
depth: 2,
},
],
"@typescript-eslint/naming-convention": [
"error",
{
selector: "variableLike",
leadingUnderscore: "forbid",
trailingUnderscore: "forbid",
format: ["camelCase", "PascalCase", "UPPER_CASE"],
},
],
"import/extensions": 0,
},
};
75 changes: 0 additions & 75 deletions .github/ISSUE_TEMPLATE/content_issue.yml

This file was deleted.

115 changes: 0 additions & 115 deletions .github/ISSUE_TEMPLATE/tool_issue.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/dependabot.yml

This file was deleted.

Loading