An open API service indexing awesome lists of open source software.

https://github.com/lufzle/upwork-starter-project


https://github.com/lufzle/upwork-starter-project

Last synced: 12 days ago
JSON representation

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"
]
}
```