We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d716cee commit 4e2d1a9Copy full SHA for 4e2d1a9
src/common/util.js
@@ -1,8 +1,6 @@
1
import { util, version } from 'prettier';
2
import satisfies from 'semver/functions/satisfies.js';
3
4
-export const prettierVersionSatisfies = (range) => satisfies(version, range);
5
-
6
export function printString(rawContent, options) {
7
const double = { quote: '"', regex: /"/g };
8
const single = { quote: "'", regex: /'/g };
src/prettier-comments/language-js/comments.js
@@ -824,7 +824,3 @@ function handleTSMappedTypeComments(
824
825
return false;
826
}
827
828
-export function isBlockComment(comment) {
829
- return comment.type === "Block" || comment.type === "CommentBlock";
830
-}
0 commit comments