Skip to content

Commit c2e2024

Browse files
committed
feat: add lint staged
1 parent dd1a86c commit c2e2024

File tree

5 files changed

+711
-1
lines changed

5 files changed

+711
-1
lines changed

.eslintrc.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const config = {
99
"next/core-web-vitals",
1010
"plugin:@typescript-eslint/recommended-type-checked",
1111
"plugin:@typescript-eslint/stylistic-type-checked",
12+
"prettier",
1213
],
1314
rules: {
1415
// These opinionated rules are enabled in stylistic-type-checked above.

.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npx lint-staged

.lintstagedrc.cjs

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// See https://nextjs.org/docs/basic-features/eslint#lint-staged for details
2+
3+
const path = require("path");
4+
5+
const buildEslintCommand = (filenames) =>
6+
`next lint --fix --file ${filenames
7+
.map((f) => path.relative(process.cwd(), f))
8+
.join(" --file ")}`;
9+
10+
const buildPrettierCommand = (filenames) =>
11+
`prettier --write ${filenames.join(" ")}`;
12+
13+
/** @type {import('lint-staged').Config} */
14+
module.exports = {
15+
"*.{js,jsx,ts,tsx}": [buildEslintCommand, buildPrettierCommand],
16+
};

0 commit comments

Comments
 (0)