https://github.com/lufzle/upwork-starter-project
https://github.com/lufzle/upwork-starter-project
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lufzle/upwork-starter-project
- Owner: lufzle
- Created: 2020-01-19T11:22:07.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-15T06:46:28.000Z (over 5 years ago)
- Last Synced: 2025-02-16T01:44:44.664Z (2 months ago)
- Size: 114 KB
- Stars: 0
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
]
}
```