Skip to content

Commit

Permalink
refine descriptions
Browse files Browse the repository at this point in the history
Signed-off-by: Shi Chen <[email protected]>
  • Loading branch information
CsCherrYY committed Apr 17, 2023
1 parent bff3ff6 commit b112ae4
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -684,77 +684,77 @@
"properties": {
"lineSplit": {
"type": "number",
"markdownDescription": "Specify the length of the page. Beyond this length, the formatter will try to split the code, defaults to `120`.",
"markdownDescription": "Specify the length of the page. Beyond this length, the formatter will try to split the code. Defaults to `120`.",
"default": 120
},
"comment.line.length": {
"type": "number",
"markdownDescription": "specify the line length for comments, defaults to `80`.",
"markdownDescription": "Specify the line length for comments. Defaults to `80`.",
"default": 80
},
"join.wrapped.lines": {
"type": "boolean",
"markdownDescription": "Specify whether the formatter can join wrapped lines or not, defaults to `true`.",
"markdownDescription": "Specify whether the formatter can join wrapped lines or not.",
"default": true
},
"use.on.off.tags": {
"type": "boolean",
"markdownDescription": "Use the disabling and enabling tags defined respectively by the `disabling_tag` and the `enabling_tag` options, defaults to `true`.",
"markdownDescription": "Use the disabling and enabling tags defined respectively by the `disabling_tag` and the `enabling_tag` options.",
"default": true
},
"disabling.tag": {
"type": "string",
"markdownDescription": "Define the tag to put in a comment to disable the formatting, defaults to `@formatter:off`.",
"markdownDescription": "Define the tag to put in a comment to disable the formatting. Defaults to `@formatter:off`.",
"default": "@formatter:off"
},
"enabling.tag": {
"type": "string",
"markdownDescription": "Define the tag to put in a comment to enable the formatting, defaults to `@formatter:on`.",
"markdownDescription": "Define the tag to put in a comment to enable the formatting, Defaults to `@formatter:on`.",
"default": "@formatter:on"
},
"indent.parameter.description": {
"type": "boolean",
"markdownDescription": "Control whether description of Javadoc parameters are indented, defaults to `false`.",
"markdownDescription": "Control whether description of Javadoc parameters are indented.",
"default": false
},
"indent.root.tags": {
"type": "boolean",
"markdownDescription": "control whether Javadoc root tags are indented, defaults to `false`.",
"markdownDescription": "Control whether Javadoc root tags are indented.",
"default": false
},
"align.tags.descriptions.grouped": {
"type": "boolean",
"markdownDescription": "Control whether descriptions and names in Javadoc root tags, should be aligned and grouped by tag type., defaults to `true`.",
"markdownDescription": "Control whether descriptions and names in Javadoc root tags, should be aligned and grouped by tag type.",
"default": true
},
"align.tags.names.descriptions": {
"type": "boolean",
"markdownDescription": "control whether names and descriptions in Javadoc root tags should be aligned., defaults to `false`.",
"markdownDescription": "Control whether names and descriptions in Javadoc root tags should be aligned.",
"default": false
},
"clear.blank.lines.in.javadoc.comment": {
"type": "boolean",
"markdownDescription": "Control whether blank lines are cleared inside Javadoc comments, defaults to `false`.",
"markdownDescription": "Control whether blank lines are cleared inside Javadoc comments.",
"default": false
},
"blank.lines.between.import.groups": {
"type": "number",
"markdownDescription": "Add or remove blank lines between import groups, defaults to `1`.",
"markdownDescription": "Control blank lines between import groups.",
"default": 1
},
"format.line.comments": {
"type": "boolean",
"markdownDescription": "Control whether single line comments are formatted, defaults to `true`.",
"markdownDescription": "Control whether single line comments are formatted.",
"default": true
},
"format.block.comments": {
"type": "boolean",
"markdownDescription": "Control whether multiple lines comments are formatted, defaults to `true`.",
"markdownDescription": "Control whether multiple lines comments are formatted.",
"default": true
},
"format.javadoc.comments": {
"type": "boolean",
"markdownDescription": "Control whether Javadoc comments are formatted, defaults to `true`.",
"markdownDescription": "Control whether Javadoc comments are formatted.",
"default": true
},
"parentheses.positions.in.method.invocation": {
Expand All @@ -773,7 +773,7 @@
"Set parentheses location on separate lines from their contents, that is put a line break after the opening parenthesis and before the closing parenthesis.",
"Set opening and closing parentheses location to be preserved from the original source."
],
"markdownDescription": "Position parentheses in method invocations, defaults to `commonLines`.",
"markdownDescription": "Position parentheses in method invocations. Defaults to `commonLines`.",
"default": "commonLines"
},
"keep.loop.body.block.on.one.line": {
Expand All @@ -792,7 +792,7 @@
"Always keep braced code on one line, as long as it doesn't exceed the line width limit.",
"Keep braced code on one line as long as it doesn't exceed the line width limit and it was already in one line in the original source."
],
"markdownDescription": "Control when a loop body block should be kept on one line, defaults to `never`.",
"markdownDescription": "Control when a loop body block should be kept on one line. Defaults to `never`.",
"default": "never"
},
"keep.anonymous.type.declaration.on.one.line": {
Expand All @@ -811,7 +811,7 @@
"Always keep braced code on one line, as long as it doesn't exceed the line width limit.",
"Keep braced code on one line as long as it doesn't exceed the line width limit and it was already in one line in the original source."
],
"markdownDescription": "Control when an anonymous type declaration should be kept on one line, defaults to `never`.",
"markdownDescription": "Control when an anonymous type declaration should be kept on one line. Defaults to `never`.",
"default": "never"
},
"keep.type.declaration.on.one.line": {
Expand All @@ -830,7 +830,7 @@
"Always keep braced code on one line, as long as it doesn't exceed the line width limit.",
"Keep braced code on one line as long as it doesn't exceed the line width limit and it was already in one line in the original source."
],
"markdownDescription": "Control when a type declaration should be kept on one line, defaults to `never`.",
"markdownDescription": "Control when a type declaration should be kept on one line. Defaults to `never`.",
"default": "never"
},
"keep.method.body.on.one.line": {
Expand All @@ -849,7 +849,7 @@
"Always keep braced code on one line, as long as it doesn't exceed the line width limit.",
"Keep braced code on one line as long as it doesn't exceed the line width limit and it was already in one line in the original source."
],
"markdownDescription": "Control when a method body should be kept on one line, defaults to `never`.",
"markdownDescription": "Control when a method body should be kept on one line. Defaults to `never`.",
"default": "never"
},
"insert.space.after.closing.angle.bracket.in.type.arguments": {
Expand All @@ -858,7 +858,7 @@
"insert",
"doNotInsert"
],
"markdownDescription": "Insert a space after the closing angle bracket in explicit type arguments on method/constructor invocations, defaults to `doNotInsert`.",
"markdownDescription": "Insert a space after the closing angle bracket in explicit type arguments on method/constructor invocations.",
"default": "doNotInsert"
},
"insert.space.before.closing.brace.in.array.initializer": {
Expand All @@ -867,7 +867,7 @@
"insert",
"doNotInsert"
],
"markdownDescription": "Insert a space before the closing brace in an array initializer, defaults to `insert`.",
"markdownDescription": "Insert a space before the closing brace in an array initializer.",
"default": "insert"
},
"insert.space.after.opening.brace.in.array.initializer": {
Expand All @@ -876,7 +876,7 @@
"insert",
"doNotInsert"
],
"markdownDescription": "Insert a space after the opening brace in an array initializer, defaults to `doNotInsert`.",
"markdownDescription": "Insert a space after the opening brace in an array initializer.",
"default": "doNotInsert"
},
"alignment.for.enum.constants": {
Expand All @@ -901,7 +901,7 @@
"The wrapping is done by putting each element on its own line except the first element."
],
"default": "compact",
"markdownDescription": "The wrapping style, defaults to `compact`."
"markdownDescription": "The wrapping style. Defaults to `compact`."
},
"force.split": {
"type": "boolean",
Expand All @@ -921,7 +921,7 @@
"The wrapping is done by indenting by one compare to the current indentation."
],
"default": "indentDefault",
"markdownDescription": "The indentation style, defaults to `indentDefault`."
"markdownDescription": "The indentation style. Defaults to `indentDefault`."
}
},
"markdownDescription": "Alignment of enum constants.",
Expand Down Expand Up @@ -949,7 +949,7 @@
"The wrapping is done by putting each element on its own line except the first element."
],
"default": "compact",
"markdownDescription": "The wrapping style, defaults to `compact`."
"markdownDescription": "The wrapping style. Defaults to `compact`."
},
"force.split": {
"type": "boolean",
Expand All @@ -969,7 +969,7 @@
"The wrapping is done by indenting by one compare to the current indentation."
],
"default": "indentDefault",
"markdownDescription": "The indentation style, defaults to `indentDefault`."
"markdownDescription": "The indentation style. Defaults to `indentDefault`."
}
},
"markdownDescription": "alignment of parameters in method declaration.",
Expand All @@ -989,7 +989,7 @@
"set a brace location at the start of the next line with an extra indentation.",
"set a brace location at the start of the next line if a wrapping occurred."
],
"markdownDescription": "Position the braces of a block, defaults to `endOfLine`",
"markdownDescription": "Position the braces of a block. Defaults to `endOfLine`",
"default": "endOfLine"
}
},
Expand Down

0 comments on commit b112ae4

Please sign in to comment.