hyperdx/.vscode/settings.json
Brandon Pereira a96dfaef00
chore: update VSCode configuration and ESLint settings (#1462)
- Allow IDE to determine the best formatter based on settings, not force ESLint formatter (which has issues in v9)
- Added Prettier extension to VSCode extensions list.
- Updated ESLint settings to include working directories for better integration.
- Removed redundant TypeScript formatter settings.
- Excluded `.next` directory from search results in VSCode settings.
- Minor formatting adjustments in ESLint configuration files for consistency.

References: https://github.com/microsoft/vscode-eslint/issues/1826
2025-12-11 17:44:27 +00:00

46 lines
1,000 B
JSON

{
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always",
"source.fixAll.stylelint": "always"
},
"[scss]": {
"editor.defaultFormatter": "stylelint.vscode-stylelint"
},
"[css]": {
"editor.defaultFormatter": "stylelint.vscode-stylelint"
},
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
"stylelint.validate": ["css", "postcss", "scss"],
"cssVariables.lookupFiles": [
"**/*.css",
"**/*.scss",
"**/*.sass",
"**/*.less",
"node_modules/@mantine/core/styles.css"
],
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.next": true,
"**/*.code-search": true,
"**/*.map": true,
"**/yarn.lock": true,
"**/yarn-*.cjs": true
},
"cSpell.words": [
"clickhouse",
"hyperdx",
"micropip",
"opamp",
"pyimport",
"pyodide"
]
}