【eslint】or条件のpathを追加
5670 ワード
コード
package.json
{
"name": "next-various",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc --noEmit",
"lint": "eslint --ext .jsx,.js,.tsx,.ts pages/**/*",
"lint:fix": "eslint \"pages/**/*.{ts,tsx}\" --fix",
"fmt": "prettier --write pages/**/*",
"test-all": "npx yarn-run-all lint check-types format lint:fix",
"lints": "yarn fmt && yarn lint:fix"
},
// 〜略〜
package.json
{
"name": "next-various",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc --noEmit",
"lint": "eslint --ext .jsx,.js,.tsx,.ts {pages,components}/**/*",
"lint:fix": "eslint \"{pages,components}/**/*.{ts,tsx}\" --fix",
"fmt": "prettier --write {pages,components}/**/*",
"test-all": "npx yarn-run-all lint check-types format lint:fix",
"lints": "yarn fmt && yarn lint:fix"
},
// 〜略〜
説明
{}
で囲んで、 ,
で区切ればor条件にできる。
{pages,components}/**/*.{ts,tsx}
だったら、
pages/**/*.ts
pages/**/*.tsx
components/**/*.ts
components/**/*.tsx
を選択しているのと同義。
Author And Source
この問題について(【eslint】or条件のpathを追加), 我々は、より多くの情報をここで見つけました https://zenn.dev/dev63/articles/7534dbe5fa9ee9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol