We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae634fb commit b32a909Copy full SHA for b32a909
.lintstagedrc.js
@@ -7,15 +7,9 @@ const buildNextEslintCommand = (filenames) =>
7
8
const checkTypesNextCommand = () => "yarn next:check-types";
9
10
-const buildHardhatEslintCommand = (filenames) =>
11
- `yarn hardhat:lint-staged --fix ${filenames
12
- .map((f) => path.relative(path.join("packages", "hardhat"), f))
13
- .join(" ")}`;
14
-
15
module.exports = {
16
"packages/nextjs/**/*.{ts,tsx}": [
17
buildNextEslintCommand,
18
checkTypesNextCommand,
19
],
20
- "packages/hardhat/**/*.{ts,tsx}": [buildHardhatEslintCommand],
21
};
0 commit comments