React/TypeScript Project Style Guide
1. File Structure and Naming
Use PascalCase
for component file names: UserProfile.tsx
Use camelCase
for non-component file names: utils.ts
, hooks.ts
Group related files in directories: components/
, hooks/
, utils/
Use index files to export from directories: components/index.ts
Variables:
Use camelCase
for variables.
Choose variable names that clearly describe the variable's purpose or content.
Choose names that can be pronounced, making discussions about the code easier.
Avoid single-letter names or numeric constants without context. Opt for names that can be easily searched in the codebase.
For functions or methods, start with verbs that clearly indicate the action.
If the variable's purpose isn't clear from its immediate context, add more information to the name.
Use positive names for boolean variables, and consider prefix like 'is', 'has', or 'should'.
// Good
const userAge = 25 ;
const isActiveSubscription = true ;
const userLastLoginDate = new Date ( ) ;
// Avoid
const a = 25 ;
const active = true ;
const date = new Date ( ) ;
Use functional components with hooks instead of class components
Define prop types using interfaces
Use destructuring for props
interface UserProps {
name : string ;
age : number ;
}
const User : React . FC < UserProps > = ( { name, age } ) => {
return (
< div >
< p > Name : { name } < / p >
< p > Age : { age} < / p >
< / div >
) ;
} ;
Use TypeScript's built-in types where possible: string
, number
, boolean
Create interfaces for complex shapes
Use type
for union types or simple aliases
Use enum
for a fixed set of constants
interface User {
id : number | string ;
name : string ;
role : 'admin' | 'user' ;
}
type ID = string | number ;
enum Status {
Active ,
Inactive ,
Pending ,
}
Prefix custom hook names with use
: useDataFetcher
Use appropriate built-in hooks: useState
, useEffect
, useCallback
, useMemo
Type the state and setter function in useState
const [ count , setCount ] = useState < number > ( 0 ) ;
Name handlers with the prefix handle
: handleClick
, handleSubmit
Type event handlers properly
const handleChange = ( event : React . ChangeEvent < HTMLInputElement > ) => {
// Handler logic
} ;
6. Styling with Tailwind CSS
Use Tailwind CSS classes for styling
Group related classes for readability
Use custom Tailwind classes for frequently used combinations
Avoid inline styles unless absolutely necessary
// Good
< div className = "p-4 bg-white shadow rounded" >
< h1 className = "text-2xl font-bold text-gray-800 mb-2" > Title < / h 1 >
< p className = "text-gray-600" > Content < / p >
< / div>
// Avoid
< div style = { { padding : '1rem' , backgroundColor : 'white' , boxShadow : '0 1px 3px 0 rgba(0, 0, 0, 0.1)' } } >
{ /* ... */ }
< / d i v >
Use named exports for multiple exports from a file
Use default export for the main component of a file
Group imports: React, third-party, local
import React , { useState , useEffect } from 'react' ;
import axios from 'axios' ;
import { Button } from './components' ;
import { useDataFetcher } from './hooks' ;
use .env.development
and .env.production
environment files
use VITE_BASE_URL = 'Your URL'
format for setting base URL in the env
file.
use const baseUrl = import.meta.env.VITE_BASE_URL;
to import the variable in the application
9. Comments and Documentation
Use JSDoc comments for components and functions
Keep comments concise and meaningful
Use TODO comments for temporary code or future improvements
/**
* A component that displays user information.
* @param {UserProps } props - The component props
*/
const UserInfo : React . FC < UserProps > = ( { name, age } ) => {
// Component logic
} ;
Name test files with .test.ts
or .test.tsx
extension
Use Jest and React Testing Library for tests
Write descriptive test names
describe ( 'UserInfo' , ( ) => {
it ( 'should render the user name and age' , ( ) => {
// Test logic
} ) ;
} ) ;
11. Linting and Formatting
Use ESLint with TypeScript support
{
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
'plugin:storybook/recommended',
'airbnb',
'plugin:prettier/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
};
Use Prettier for code formatting
{
trailingComma: 'es5',
tabWidth: 4,
singleQuote: true,
};