UNPKG

create-eth

Version:
22 lines (17 loc) 641 B
const path = require("path"); const buildNextEslintCommand = (filenames) => `yarn next:lint --fix --file ${filenames .map((f) => path.relative(path.join("packages", "nextjs"), f)) .join(" --file ")}`; const checkTypesNextCommand = () => "yarn next:check-types"; const buildHardhatEslintCommand = (filenames) => `yarn hardhat:lint-staged --fix ${filenames .map((f) => path.relative(path.join("packages", "hardhat"), f)) .join(" ")}`; module.exports = { "packages/nextjs/**/*.{ts,tsx}": [ buildNextEslintCommand, checkTypesNextCommand, ], "packages/hardhat/**/*.{ts,tsx}": [buildHardhatEslintCommand], };