Skip to content

Commit f8f6072

Browse files
committed
fix
1 parent 61a59f6 commit f8f6072

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+11372
-0
lines changed

.eslintignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
dist
3+
*.js
4+
*.spec.ts

.eslintrc.cjs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
root: true,
3+
parser: '@typescript-eslint/parser',
4+
parserOptions: {
5+
tsconfigRootDir: __dirname,
6+
project: ['./tsconfig.json'],
7+
},
8+
plugins: ['@typescript-eslint', 'react-hooks', 'eslint-plugin-tsdoc'],
9+
extends: [
10+
'eslint:recommended',
11+
'plugin:@typescript-eslint/recommended',
12+
'plugin:@typescript-eslint/recommended-requiring-type-checking',
13+
],
14+
rules: {
15+
'react-hooks/rules-of-hooks': 'error',
16+
'react-hooks/exhaustive-deps': 'warn',
17+
'tsdoc/syntax': 'warn',
18+
},
19+
env: {
20+
browser: true,
21+
},
22+
}

.github/workflows/CI.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
push:
8+
branches:
9+
- main
10+
11+
jobs:
12+
test:
13+
runs-on: ${{ matrix.os }}
14+
15+
strategy:
16+
matrix:
17+
os:
18+
- ubuntu-latest
19+
- macOS-latest
20+
node_version:
21+
- 14
22+
- 16
23+
24+
steps:
25+
- uses: actions/checkout@v2
26+
- uses: actions/setup-node@v2
27+
with:
28+
node-version: ${{ matrix.node_version }}
29+
cache: 'yarn'
30+
31+
- run: yarn
32+
- run: yarn build
33+
- run: yarn test
34+
# - run: yarn lint
35+
- run: yarn prettier

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules/
2+
packages/*/dist/
3+
packages/example/.next/
4+
.env.local
5+
yarn-error.log
6+
TODO.md
7+
dist/

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v16

.prettierrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true,
4+
"printWidth": 120,
5+
"parser": "typescript"
6+
}

LICENSE

+339
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)