Skip to content
Snippets Groups Projects
lint-staged.config.js 124 B
Newer Older
  • Learn to ignore specific revisions
  • Igor Markin's avatar
    Igor Markin committed
    module.exports = {
      "*.+(js|ts)": ["eslint --fix", "git add"],
      "*.+(js|ts|json|md)": ["prettier --write", "git add"],
    };