1

例如,我在 .rb 和 .js 文件上进行了匹配。

例如**/*.{js,rb}

并且还想匹配GemfileRakefile例如。

4

1 回答 1

2

解决方案是递归使用{},例如

  "lint-staged": {
    "{Gemfile,Rakefile,**/*.{js,rb,rake,ru}}": [
      "./node_modules/prettier/bin-prettier.js --write"
    ],
    "**/*.js": [
      "node_modules/eslint/bin/eslint.js"
    ],
    "{Gemfile,Rakefile,**/*.{rb,rake,ru}}": [
      "bundle exec rubocop -a"
    ]
  }
于 2021-03-30T21:42:01.960 回答