Skip to content
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

feat(formatter): add option json.formatter.trailingComma #1948

Merged
merged 6 commits into from
Mar 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
internal codegen apply
ematipico committed Mar 1, 2024
commit b36a6828992bf291a556f95bc0d817fc55145dd4
4 changes: 2 additions & 2 deletions packages/@biomejs/js-api/tsconfig.json
Original file line number Diff line number Diff line change
@@ -12,8 +12,8 @@
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"strict": true /* Enable all strict type-checking options. */,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"lib": ["ES2021"],
"lib": ["ES2021"]
},
"exclude": ["./tests", "./dist"],
"include": ["./src"],
"include": ["./src"]
}
4 changes: 2 additions & 2 deletions packages/tailwindcss-config-analyzer/tsconfig.json
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"allowJs": true
},
"include": ["src/**/*"],
"include": ["src/**/*"]
}
6 changes: 3 additions & 3 deletions website/tsconfig.json
Original file line number Diff line number Diff line change
@@ -5,9 +5,9 @@
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
},
"@/*": ["src/*"]
}
},
"extends": "astro/tsconfigs/strictest",
"include": ["./src"],
"include": ["./src"]
}