-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
eaaadca
commit 87e57ab
Showing
6 changed files
with
709 additions
and
123 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,94 +1,6 @@ | ||
# React + TypeScript + Vite | ||
## Happy coding : ) | ||
### Serverni ishga tushurish ushun terminalda qoydagi kamandani yozing janob | ||
|
||
# Main | ||
|
||
- Try to keep pages server component; | ||
- Use BEM | ||
- Use FC generic for Component | ||
- Use the same node version (v20.9.0) | ||
|
||
# Imports order | ||
|
||
- Next components and utils | ||
- React | ||
- Third libraries | ||
- React components | ||
- Utils | ||
- Style | ||
|
||
# Pages | ||
|
||
- Pages are stored in the app folder | ||
|
||
- Naming -> CategoriesPage, CategoryPage | ||
|
||
# Files | ||
|
||
File naming is `kebab-case` | ||
|
||
- User.jsx => bad | ||
- user.jsx => good | ||
|
||
<br /> | ||
|
||
- loginCard.jsx => bad | ||
- LoginCard.jsx => bad | ||
- login-card.jsx => good | ||
|
||
# Components | ||
|
||
- Creating component | ||
``` | ||
modal | ||
index.tsx | ||
style.scss | ||
card | ||
index.tsx | ||
style.scss | ||
``` | ||
- Component naming is PascalCase | ||
|
||
``` | ||
<UserComponent /> | ||
``` | ||
- Component is made without margin | ||
|
||
# Hooks | ||
|
||
Hooks naming is camelCase | ||
|
||
``` | ||
useFetch | ||
``` | ||
|
||
# Variables | ||
|
||
Sass folder -> variables.scss | ||
|
||
|
||
|
||
|
||
|
||
## Expanding the ESLint configuration | ||
|
||
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules: | ||
|
||
- Configure the top-level `parserOptions` property like this: | ||
|
||
```js | ||
export default { | ||
// other rules... | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
sourceType: 'module', | ||
project: ['./tsconfig.json', './tsconfig.node.json'], | ||
tsconfigRootDir: __dirname, | ||
}, | ||
} | ||
``` | ||
npm run server | ||
- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked` | ||
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked` | ||
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list | ||
``` |
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.