Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
Signed-off-by: Sally MacFarlane <[email protected]>
  • Loading branch information
macfarla committed Nov 22, 2024
2 parents 50c5e50 + e541ae1 commit 4352f9f
Show file tree
Hide file tree
Showing 106 changed files with 28,816 additions and 2,813 deletions.
146 changes: 0 additions & 146 deletions .circleci/config.yml

This file was deleted.

41 changes: 41 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"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/",
"docs/test-api/",
"sidebars.js",
"tsconfig.*.json",
".github/**"
],
"ignoreRegExpList": ["Email", "Urls", "#[\\w-]*"]
}
26 changes: 13 additions & 13 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[*]
charset=utf-8
end_of_line=lf
trim_trailing_whitespace=true
insert_final_newline=true
indent_style=space
indent_size=2
# http://editorconfig.org

[.editorconfig]
indent_style=space
indent_size=4
root = true

[{*.yml,*.yaml}]
indent_style=space
indent_size=2
[*]
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
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
17 changes: 17 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
extends: [
"plugin:@docusaurus/recommended",
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
project: ["./tsconfig.json"]
},
rules: {
'@docusaurus/no-untranslated-text': 0
},
};
33 changes: 0 additions & 33 deletions .github/ISSUE_TEMPLATE/content_issue.md

This file was deleted.

31 changes: 0 additions & 31 deletions .github/ISSUE_TEMPLATE/tool_issue.md

This file was deleted.

59 changes: 0 additions & 59 deletions .github/pull_request_template.md

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: Build

on:
pull_request:
branches:
- main
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on

jobs:
build:
name: Build
runs-on: ubuntu-latest
# the enviroment to deploy to / use secrets from
environment: no-secret
# modify the default permissions of the GITHUB_TOKEN, so as to only allow least priveleges
permissions:
contents: read
steps:
- uses: actions/checkout@v3

- name: Build
uses: ConsenSys/docs-gha/build@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 4352f9f

Please sign in to comment.