UNPKG

bsg

Version:

Lint all in one tool for BSG-FE

15 lines (13 loc) 259 B
module.exports = async function () { const lintStaged = require("lint-staged"); try { await lintStaged({ config: { "*": "bsg lint --fix", }, }); } catch (e) { // Failed to load configuration console.error(e); } };