-
Notifications
You must be signed in to change notification settings - Fork 7k
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
chore: update VSCode settings to configure Stylelint for .vue files #4821
The head ref may contain hidden characters: "stylelint\u9519\u8BEF\u63D0\u793A"
Conversation
|
WalkthroughThe changes involve the addition of a new configuration setting for the Stylelint extension in the Changes
Suggested labels
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🔇 Additional comments (1).vscode/settings.json (1)
The addition of Let's verify that the required dependency is installed: ✅ Verification successfulThe postcss-html dependency is properly installed The dependency 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Check if postcss-html is listed in package.json
jq -r '.dependencies["postcss-html"] // .devDependencies["postcss-html"] // empty' package.json
# If not found in root package.json, search in all package.json files
if [ $? -ne 0 ]; then
echo "Searching in all package.json files..."
fd --type f "package.json" --exec jq -r '.dependencies["postcss-html"] // .devDependencies["postcss-html"] // empty' {}
fi
Length of output: 115 Script: #!/bin/bash
# Let's check if the package.json exists and view its content
if [ -f "package.json" ]; then
echo "=== Root package.json dependencies ==="
jq '.dependencies, .devDependencies' package.json
fi
# Search for stylelint-related dependencies
echo -e "\n=== All package.json files with stylelint or postcss dependencies ==="
fd package.json --type f --exec sh -c 'echo "\n>>> {}"; cat {} | jq -c "select(.dependencies != null or .devDependencies != null) | {dependencies: (.dependencies | select(. != null) | with_entries(select(.key | test(\"stylelint|postcss\")))), devDependencies: (.devDependencies | select(. != null) | with_entries(select(.key | test(\"stylelint|postcss\"))))}"'
Length of output: 4594 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 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 (
|
Description
Type of change
Please delete options that are not relevant.
Checklist
pnpm run docs:dev
command.pnpm test
.feat:
,fix:
,perf:
,docs:
, orchore:
.Summary by CodeRabbit