Skip to content

Commit

Permalink
feat: Add GitLens Extension Details
Browse files Browse the repository at this point in the history
  • Loading branch information
stavan-vc committed Dec 27, 2023
1 parent 147c8fd commit 597def5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/common/extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The `extensions.json` file provides a list of recommended Visual Studio Code ext
- `esbenp.prettier-vscode`: Integrates Prettier for code formatting.
- `chakrounanas.turbo-console-log`: Adds a shortcut to console.log statements.
- `sonarsource.sonarlint-vscode`: Provides static code analysis to identify and fix code quality issues.
- `eamodio.gitlens`: Enhances Git integration with features like commit history exploration and blame annotations.

## Conclusion

Expand Down
4 changes: 2 additions & 2 deletions docs/react/lintstagedrc.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ The `.lintstagedrc.json` file optimizes the pre-commit process by focusing linti

### Configuration Details

- **Pattern: `**/\*.{js,jsx,ts,tsx}`\*\*
- **Pattern: `**/\*.{js,jsx,ts,tsx}`**

- **Description:** Targets JavaScript and TypeScript files for linting and formatting.
- **Tasks:**
- `eslint --fix`: Runs ESLint with the fix option to automatically correct linting issues.
- `prettier --config ./.prettierrc.json --write`: Runs Prettier with a specific configuration file to format code.

- **Pattern: `**/\*.{css,scss,md,html,json}`\*\*
- **Pattern: `**/\*.{css,scss,md,html,json}`**
- **Description:** Targets CSS, SCSS, Markdown, HTML, and JSON files for formatting.
- **Task:**
- `prettier --config ./.prettierrc.json --write`: Runs Prettier with a specific configuration file to format code.

0 comments on commit 597def5

Please sign in to comment.