Skip to content

Commit

Permalink
fix: typos and styling
Browse files Browse the repository at this point in the history
  • Loading branch information
MehulKChaudhari committed Dec 5, 2024
1 parent 768de77 commit 25bcc27
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

# Feature Flag Project

## Overview
Expand All @@ -23,15 +24,15 @@ To use this project locally, follow these steps:

2. **Install dependencies**:
```bash
pnpm install
pnpm install
```

### Running the Project

To run the project locally, use the following command:

```bash
pnpm dev
pnpm dev
```

This will start the development server, and you can access the application at `http://localhost:5173/`.
Expand All @@ -41,7 +42,7 @@ This will start the development server, and you can access the application at `h
To run the tests for this project, use the following command:

```bash
pnpm test
pnpm test
```

## Linting and Formatting
Expand All @@ -50,22 +51,22 @@ To maintain code quality and consistency, we use linting and formatting tools. H

- **Linting**: To check for code quality issues, run:
```bash
pnpm lint
pnpm lint
```

To fix the lint
To fix linting issues, run:
```bash
pnpm lint:fix
pnpm lint:fix
```

- **Formatting**: To format the code according to our style guidelines, run:
```bash
pnpm format
pnpm format
```

To fix the format
To fix formatting issues, run:
```bash
pnpm format:fix
pnpm format:fix
```

## Accessibility Considerations
Expand All @@ -76,5 +77,5 @@ We are committed to making our site ally-friendly. This means that as we build p

We emphasize the importance of testing in our development process. Here are some key points regarding our testing strategy:

- **Unit Tests**: We write unit tests for all new features to ensure that individual components as expected.
- **Integration Tests**: Integration tests are implemented to verify that different parts of the application work together correctly. (We write it for pages).
- **Unit Tests**: We write unit tests for all new features to ensure that individual components function as expected.
- **Integration Tests**: Integration tests are implemented to verify that different parts of the application work together correctly. (We write them for pages).

0 comments on commit 25bcc27

Please sign in to comment.