https://github.com/webexp0528/challenge-project
https://github.com/webexp0528/challenge-project
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/webexp0528/challenge-project
- Owner: WebExp0528
- License: mit
- Created: 2020-01-29T19:18:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-29T19:19:25.000Z (over 6 years ago)
- Last Synced: 2026-01-01T21:50:34.183Z (7 months ago)
- Language: TypeScript
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 📦 React / TypeScript starter project
$ yarn
$ yarn dev
## Conventions
* All components go in `components/`
* All files should be named using `dash-case`
* Utility functions go in `lib/`
## VSCode
Install
* https://github.com/styled-components/vscode-styled-components
Add the following to your workspace settings `.vscode/settings.json`
```json
{
"typescript.tsdk": "node_modules/typescript/lib",
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
]
}
```