-
Notifications
You must be signed in to change notification settings - Fork 877
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
118 changed files
with
22,303 additions
and
12,959 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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -3,6 +3,3 @@ lib | |
dist | ||
out | ||
node_modules | ||
.yalc | ||
yalc.lock | ||
yarn-error.log |
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,4 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn lint-staged | ||
npx lint-staged |
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 |
---|---|---|
|
@@ -7,3 +7,4 @@ vscode-web/extensions | |
htm.module.js | ||
preact.module.js | ||
preact-hooks.module.js | ||
index.html |
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,4 @@ | ||
module.exports = { | ||
export default { | ||
tabWidth: 2, | ||
useTabs: true, | ||
semi: true, | ||
|
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 |
---|---|---|
|
@@ -60,8 +60,8 @@ You can start an online development environment with [Gitpod](https://www.gitpod | |
```bash | ||
git clone [email protected]:conwnet/github1s.git | ||
cd github1s | ||
yarn | ||
yarn watch | ||
npm install | ||
npm run watch | ||
# The cli will automatically open http://localhost:8080 once the build is completed. | ||
# You can visit http://localhost:8080/conwnet/github1s if it doesn't. | ||
``` | ||
|
@@ -75,15 +75,15 @@ To verify the build: | |
|
||
```bash | ||
cd github1s | ||
yarn build:vscode | ||
npm run build:vscode | ||
``` | ||
|
||
After the initial successful build, you could use the watch mode: | ||
|
||
```bash | ||
cd github1s | ||
yarn | ||
yarn watch-with-vscode | ||
npm install | ||
npm run watch-with-vscode | ||
# The cli will automatically open http://localhost:8080 once the build is completed. | ||
# You can visit http://localhost:8080/conwnet/github1s if it doesn't. | ||
``` | ||
|
@@ -99,28 +99,28 @@ You can use the VS Code plugin [Remote-Containers](https://marketplace.visualstu | |
|
||
- Now VS Code will create the docker container and connect to the new container so you can use this as a fully setup environment! | ||
|
||
5. Open a new VS Code Terminal, then you can run the `yarn` commands listed above. | ||
5. Open a new VS Code Terminal, then you can run the `npm install` commands listed above. | ||
|
||
```bash | ||
yarn | ||
yarn watch | ||
npm install | ||
npm run watch | ||
# The cli will automatically open http://localhost:8080 once the build is completed. | ||
# You can visit http://localhost:8080/conwnet/github1s if it doesn't. | ||
``` | ||
|
||
### Format all codes | ||
|
||
```bash | ||
yarn format | ||
npm run format | ||
``` | ||
|
||
It uses `prettier` to format all possible codes. | ||
|
||
## Build | ||
|
||
```bash | ||
yarn | ||
yarn build | ||
npm install | ||
npm run build | ||
``` | ||
|
||
## Feedback | ||
|
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import jsdoc from 'eslint-plugin-jsdoc'; | ||
import tseslint from 'typescript-eslint'; | ||
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'; | ||
|
||
export default [ | ||
{ ignores: ['**/dist', '**/assets', 'vscode-web/lib', '**/vs', '**/vscode.proposed.d.ts'] }, | ||
...tseslint.configs.recommended, | ||
jsdoc.configs['flat/recommended-typescript'], | ||
eslintPluginPrettierRecommended, | ||
{ | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-unused-expressions': 'off', | ||
'@typescript-eslint/no-unused-vars': '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
Oops, something went wrong.