Skip to content

Commit a8c77a5

Browse files
committed
Add development tooling and code quality setup
- Add Husky pre-commit hooks with lint-staged - Configure Prettier and ESLint for automated formatting - Add .nvmrc for Node.js version management - Move @types/chrome to devDependencies
1 parent f61b937 commit a8c77a5

5 files changed

Lines changed: 500 additions & 5 deletions

File tree

.husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npx lint-staged

.lintstagedrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"*": "npx prettier -w --ignore-unknown",
3+
"*.ts": ["npx eslint --fix"]
4+
}

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v24.2.0

0 commit comments

Comments
 (0)