https://github.com/pie6k/card-browser
https://github.com/pie6k/card-browser
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pie6k/card-browser
- Owner: pie6k
- Created: 2020-02-23T01:21:02.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T08:02:44.000Z (over 2 years ago)
- Last Synced: 2025-02-08T19:14:12.513Z (3 months ago)
- Language: TypeScript
- Homepage: https://pie6k.github.io/card-browser/
- Size: 3.77 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
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"
]
}
```