gpt4 book ai didi

lint - 如何为 lint-staged 设置多个模式?

转载 作者:行者123 更新时间:2023-12-05 02:43:32 27 4
gpt4 key购买 nike

例如,我让它在 .rb 和 .js 文件上匹配。

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

并且还想在 GemfileRakefile 上进行匹配。

最佳答案

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

  "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"
]
}

关于lint - 如何为 lint-staged 设置多个模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66878837/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com