-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Former-commit-id: a38dd20
- Loading branch information
Showing
128 changed files
with
4,052 additions
and
17,784 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 |
---|---|---|
@@ -1,11 +1,24 @@ | ||
{ | ||
"root": true, | ||
"env": { | ||
"es6": true | ||
}, | ||
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"], | ||
"extends": ["airbnb-base", "airbnb-typescript/base", "plugin:jest/recommended", "plugin:jest/style", "prettier"], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": "tsconfig.json" | ||
"ecmaVersion": 6, | ||
"sourceType": "module", | ||
"project": ["./tsconfig.json", "./packages/**/tsconfig.json"] | ||
}, | ||
"plugins": ["@typescript-eslint"] | ||
"plugins": ["@typescript-eslint", "jest"], | ||
"rules": { | ||
"no-underscore-dangle": "off", | ||
"import/no-extraneous-dependencies": "off", | ||
"no-bitwise": "off", | ||
"no-await-in-loop": "off", | ||
"no-restricted-syntax": "off", | ||
"no-console": ["warn", { "allow": ["info", "warn", "error"] }], | ||
"@typescript-eslint/lines-between-class-members": "off", | ||
"no-param-reassign": "off" | ||
} | ||
} |
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,14 @@ | ||
--- | ||
name: "\U0001F4E6 Package" | ||
about: Propose a new Semaphore package | ||
title: '' | ||
labels: 'feature :rocket:' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the package you'd like** | ||
A clear and concise description of the type of package you have in mind. | ||
|
||
**Additional context** | ||
Add any other context about the package here. |
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,13 +1,12 @@ | ||
name: style | ||
name: docs | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
style: | ||
gh-pages: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
@@ -32,13 +31,15 @@ jobs: | |
${{ runner.os }}-yarn- | ||
- name: Install dependencies | ||
run: YARN_CHECKSUM_BEHAVIOR=ignore yarn | ||
run: yarn | ||
|
||
- name: Run Prettier | ||
run: yarn prettier | ||
- name: Generate doc website | ||
run: yarn docs | ||
|
||
- name: Run Eslint | ||
run: yarn lint | ||
|
||
- name: Compile contracts | ||
run: yarn compile | ||
- name: Publish on Github Pages | ||
uses: crazy-max/[email protected] | ||
with: | ||
build_dir: docs | ||
jekyll: false | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
Large diffs are not rendered by default.
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,4 +1,8 @@ | ||
nodeLinker: node-modules | ||
checksumBehavior: update | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs | ||
spec: "@yarnpkg/plugin-workspace-tools" | ||
|
||
yarnPath: .yarn/releases/yarn-3.2.1.cjs |
Oops, something went wrong.