-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
カスタムルールのコンパイル後にprettierでフォーマットする #81
Conversation
Walkthroughこのプルリクエストでは、ESLintの設定ファイル Changes
Possibly related issues
Possibly related PRs
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (1)
package.json (1)
15-16
: スクリプトのエラーハンドリングを改善することを推奨しますコンパイルとフォーマットを分離したのは良い改善ですが、エラーハンドリングを追加することを推奨します。
以下のような変更を提案します:
- "custom-rule:tsc": "tsc --project settings/rules/tsconfig.json", - "custom-rule:format": "prettier --write settings/rules/dist/**", + "custom-rule:tsc": "tsc --project settings/rules/tsconfig.json || exit 1", + "custom-rule:format": "prettier --write settings/rules/dist/** || echo 'Formatting failed' && exit 1",この変更により:
- コンパイルエラー時に明確にビルドが失敗します
- フォーマットエラー時にも適切なエラーメッセージが表示されます
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
⛔ Files ignored due to path filters (1)
settings/rules/dist/helpers/astHelpers.js
is excluded by!**/dist/**
📒 Files selected for processing (4)
eslint.config.mjs
(1 hunks)package.json
(1 hunks)settings/rules/src/helpers/astHelpers.ts
(1 hunks)settings/rules/src/store-state-suffix.ts
(1 hunks)
✅ Files skipped from review due to trivial changes (2)
- settings/rules/src/store-state-suffix.ts
- settings/rules/src/helpers/astHelpers.ts
🔇 Additional comments (2)
eslint.config.mjs (1)
11-11
: ESLint の無視設定の変更を確認してください
settings/rules/**/*
を ignores から削除することで、コンパイル後のカスタムルールに対して ESLint が実行されるようになりました。この変更は意図的なものと思われますが、以下の点を確認してください。
✅ Verification successful
Let me gather more information about the ESLint configuration and the compiled rules.
ESLint の無視設定の変更は適切です
コードベースの分析から、以下の点が確認できました:
- カスタムルールのソースは
settings/rules/src/
にあり、コンパイル後のファイルはsettings/rules/dist/
に出力されます settings/rules/index.js
を通じてカスタムルールが ESLint に正しく登録されていますcoding-rules/store-state-suffix
ルールが設定で有効化されています
ignores からの settings/rules/**/*
の削除は意図的で適切な変更です。これにより、コンパイルされたカスタムルールに対して ESLint が実行され、コード品質が向上します。
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Description: Verify if the custom rules are properly linted after compilation
# Check if ESLint is running on the compiled rules
eslint settings/rules/dist/** --print-config .eslintrc.json | jq '.ignores'
# Verify the existence of compiled rules
ls -la settings/rules/dist/
Length of output: 658
Script:
#!/bin/bash
# Check the content of eslint.config.mjs to understand the current configuration
cat eslint.config.mjs
# Check if there are any ESLint related files in the settings/rules directory
fd -t f -e js -e ts -e mjs -e cjs . settings/rules/
# Check if there are any ESLint configurations in package.json
cat package.json | jq '.eslintConfig, .devDependencies | select(.!=null)'
Length of output: 3019
package.json (1)
7-7
: スクリプト名の変更は適切です
build:custom-lint
から build:custom-rule
への名前変更は、機能をより正確に表現しており、良い変更です。
close #80
Summary by CodeRabbit
build:custom-lint
からbuild:custom-rule
に変更しました。