|
684 | 684 | "properties": {
|
685 | 685 | "lineSplit": {
|
686 | 686 | "type": "number",
|
687 |
| - "markdownDescription": "Specify the length of the page. Beyond this length, the formatter will try to split the code, defaults to `120`.", |
| 687 | + "markdownDescription": "Specify the length of the page. Beyond this length, the formatter will try to split the code. Defaults to `120`.", |
688 | 688 | "default": 120
|
689 | 689 | },
|
690 | 690 | "comment.line.length": {
|
691 | 691 | "type": "number",
|
692 |
| - "markdownDescription": "specify the line length for comments, defaults to `80`.", |
| 692 | + "markdownDescription": "Specify the line length for comments. Defaults to `80`.", |
693 | 693 | "default": 80
|
694 | 694 | },
|
695 | 695 | "join.wrapped.lines": {
|
696 | 696 | "type": "boolean",
|
697 |
| - "markdownDescription": "Specify whether the formatter can join wrapped lines or not, defaults to `true`.", |
| 697 | + "markdownDescription": "Specify whether the formatter can join wrapped lines or not.", |
698 | 698 | "default": true
|
699 | 699 | },
|
700 | 700 | "use.on.off.tags": {
|
701 | 701 | "type": "boolean",
|
702 |
| - "markdownDescription": "Use the disabling and enabling tags defined respectively by the `disabling_tag` and the `enabling_tag` options, defaults to `true`.", |
| 702 | + "markdownDescription": "Use the disabling and enabling tags defined respectively by the `disabling_tag` and the `enabling_tag` options.", |
703 | 703 | "default": true
|
704 | 704 | },
|
705 | 705 | "disabling.tag": {
|
706 | 706 | "type": "string",
|
707 |
| - "markdownDescription": "Define the tag to put in a comment to disable the formatting, defaults to `@formatter:off`.", |
| 707 | + "markdownDescription": "Define the tag to put in a comment to disable the formatting. Defaults to `@formatter:off`.", |
708 | 708 | "default": "@formatter:off"
|
709 | 709 | },
|
710 | 710 | "enabling.tag": {
|
711 | 711 | "type": "string",
|
712 |
| - "markdownDescription": "Define the tag to put in a comment to enable the formatting, defaults to `@formatter:on`.", |
| 712 | + "markdownDescription": "Define the tag to put in a comment to enable the formatting, Defaults to `@formatter:on`.", |
713 | 713 | "default": "@formatter:on"
|
714 | 714 | },
|
715 | 715 | "indent.parameter.description": {
|
716 | 716 | "type": "boolean",
|
717 |
| - "markdownDescription": "Control whether description of Javadoc parameters are indented, defaults to `false`.", |
| 717 | + "markdownDescription": "Control whether description of Javadoc parameters are indented.", |
718 | 718 | "default": false
|
719 | 719 | },
|
720 | 720 | "indent.root.tags": {
|
721 | 721 | "type": "boolean",
|
722 |
| - "markdownDescription": "control whether Javadoc root tags are indented, defaults to `false`.", |
| 722 | + "markdownDescription": "Control whether Javadoc root tags are indented.", |
723 | 723 | "default": false
|
724 | 724 | },
|
725 | 725 | "align.tags.descriptions.grouped": {
|
726 | 726 | "type": "boolean",
|
727 |
| - "markdownDescription": "Control whether descriptions and names in Javadoc root tags, should be aligned and grouped by tag type., defaults to `true`.", |
| 727 | + "markdownDescription": "Control whether descriptions and names in Javadoc root tags, should be aligned and grouped by tag type.", |
728 | 728 | "default": true
|
729 | 729 | },
|
730 | 730 | "align.tags.names.descriptions": {
|
731 | 731 | "type": "boolean",
|
732 |
| - "markdownDescription": "control whether names and descriptions in Javadoc root tags should be aligned., defaults to `false`.", |
| 732 | + "markdownDescription": "Control whether names and descriptions in Javadoc root tags should be aligned.", |
733 | 733 | "default": false
|
734 | 734 | },
|
735 | 735 | "clear.blank.lines.in.javadoc.comment": {
|
736 | 736 | "type": "boolean",
|
737 |
| - "markdownDescription": "Control whether blank lines are cleared inside Javadoc comments, defaults to `false`.", |
| 737 | + "markdownDescription": "Control whether blank lines are cleared inside Javadoc comments.", |
738 | 738 | "default": false
|
739 | 739 | },
|
740 | 740 | "blank.lines.between.import.groups": {
|
741 | 741 | "type": "number",
|
742 |
| - "markdownDescription": "Add or remove blank lines between import groups, defaults to `1`.", |
| 742 | + "markdownDescription": "Control blank lines between import groups.", |
743 | 743 | "default": 1
|
744 | 744 | },
|
745 | 745 | "format.line.comments": {
|
746 | 746 | "type": "boolean",
|
747 |
| - "markdownDescription": "Control whether single line comments are formatted, defaults to `true`.", |
| 747 | + "markdownDescription": "Control whether single line comments are formatted.", |
748 | 748 | "default": true
|
749 | 749 | },
|
750 | 750 | "format.block.comments": {
|
751 | 751 | "type": "boolean",
|
752 |
| - "markdownDescription": "Control whether multiple lines comments are formatted, defaults to `true`.", |
| 752 | + "markdownDescription": "Control whether multiple lines comments are formatted.", |
753 | 753 | "default": true
|
754 | 754 | },
|
755 | 755 | "format.javadoc.comments": {
|
756 | 756 | "type": "boolean",
|
757 |
| - "markdownDescription": "Control whether Javadoc comments are formatted, defaults to `true`.", |
| 757 | + "markdownDescription": "Control whether Javadoc comments are formatted.", |
758 | 758 | "default": true
|
759 | 759 | },
|
760 | 760 | "parentheses.positions.in.method.invocation": {
|
|
773 | 773 | "Set parentheses location on separate lines from their contents, that is put a line break after the opening parenthesis and before the closing parenthesis.",
|
774 | 774 | "Set opening and closing parentheses location to be preserved from the original source."
|
775 | 775 | ],
|
776 |
| - "markdownDescription": "Position parentheses in method invocations, defaults to `commonLines`.", |
| 776 | + "markdownDescription": "Position parentheses in method invocations. Defaults to `commonLines`.", |
777 | 777 | "default": "commonLines"
|
778 | 778 | },
|
779 | 779 | "keep.loop.body.block.on.one.line": {
|
|
792 | 792 | "Always keep braced code on one line, as long as it doesn't exceed the line width limit.",
|
793 | 793 | "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."
|
794 | 794 | ],
|
795 |
| - "markdownDescription": "Control when a loop body block should be kept on one line, defaults to `never`.", |
| 795 | + "markdownDescription": "Control when a loop body block should be kept on one line. Defaults to `never`.", |
796 | 796 | "default": "never"
|
797 | 797 | },
|
798 | 798 | "keep.anonymous.type.declaration.on.one.line": {
|
|
811 | 811 | "Always keep braced code on one line, as long as it doesn't exceed the line width limit.",
|
812 | 812 | "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."
|
813 | 813 | ],
|
814 |
| - "markdownDescription": "Control when an anonymous type declaration should be kept on one line, defaults to `never`.", |
| 814 | + "markdownDescription": "Control when an anonymous type declaration should be kept on one line. Defaults to `never`.", |
815 | 815 | "default": "never"
|
816 | 816 | },
|
817 | 817 | "keep.type.declaration.on.one.line": {
|
|
830 | 830 | "Always keep braced code on one line, as long as it doesn't exceed the line width limit.",
|
831 | 831 | "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."
|
832 | 832 | ],
|
833 |
| - "markdownDescription": "Control when a type declaration should be kept on one line, defaults to `never`.", |
| 833 | + "markdownDescription": "Control when a type declaration should be kept on one line. Defaults to `never`.", |
834 | 834 | "default": "never"
|
835 | 835 | },
|
836 | 836 | "keep.method.body.on.one.line": {
|
|
849 | 849 | "Always keep braced code on one line, as long as it doesn't exceed the line width limit.",
|
850 | 850 | "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."
|
851 | 851 | ],
|
852 |
| - "markdownDescription": "Control when a method body should be kept on one line, defaults to `never`.", |
| 852 | + "markdownDescription": "Control when a method body should be kept on one line. Defaults to `never`.", |
853 | 853 | "default": "never"
|
854 | 854 | },
|
855 | 855 | "insert.space.after.closing.angle.bracket.in.type.arguments": {
|
|
858 | 858 | "insert",
|
859 | 859 | "doNotInsert"
|
860 | 860 | ],
|
861 |
| - "markdownDescription": "Insert a space after the closing angle bracket in explicit type arguments on method/constructor invocations, defaults to `doNotInsert`.", |
| 861 | + "markdownDescription": "Insert a space after the closing angle bracket in explicit type arguments on method/constructor invocations.", |
862 | 862 | "default": "doNotInsert"
|
863 | 863 | },
|
864 | 864 | "insert.space.before.closing.brace.in.array.initializer": {
|
|
867 | 867 | "insert",
|
868 | 868 | "doNotInsert"
|
869 | 869 | ],
|
870 |
| - "markdownDescription": "Insert a space before the closing brace in an array initializer, defaults to `insert`.", |
| 870 | + "markdownDescription": "Insert a space before the closing brace in an array initializer.", |
871 | 871 | "default": "insert"
|
872 | 872 | },
|
873 | 873 | "insert.space.after.opening.brace.in.array.initializer": {
|
|
876 | 876 | "insert",
|
877 | 877 | "doNotInsert"
|
878 | 878 | ],
|
879 |
| - "markdownDescription": "Insert a space after the opening brace in an array initializer, defaults to `doNotInsert`.", |
| 879 | + "markdownDescription": "Insert a space after the opening brace in an array initializer.", |
880 | 880 | "default": "doNotInsert"
|
881 | 881 | },
|
882 | 882 | "alignment.for.enum.constants": {
|
|
901 | 901 | "The wrapping is done by putting each element on its own line except the first element."
|
902 | 902 | ],
|
903 | 903 | "default": "compact",
|
904 |
| - "markdownDescription": "The wrapping style, defaults to `compact`." |
| 904 | + "markdownDescription": "The wrapping style. Defaults to `compact`." |
905 | 905 | },
|
906 | 906 | "force.split": {
|
907 | 907 | "type": "boolean",
|
|
921 | 921 | "The wrapping is done by indenting by one compare to the current indentation."
|
922 | 922 | ],
|
923 | 923 | "default": "indentDefault",
|
924 |
| - "markdownDescription": "The indentation style, defaults to `indentDefault`." |
| 924 | + "markdownDescription": "The indentation style. Defaults to `indentDefault`." |
925 | 925 | }
|
926 | 926 | },
|
927 | 927 | "markdownDescription": "Alignment of enum constants.",
|
|
949 | 949 | "The wrapping is done by putting each element on its own line except the first element."
|
950 | 950 | ],
|
951 | 951 | "default": "compact",
|
952 |
| - "markdownDescription": "The wrapping style, defaults to `compact`." |
| 952 | + "markdownDescription": "The wrapping style. Defaults to `compact`." |
953 | 953 | },
|
954 | 954 | "force.split": {
|
955 | 955 | "type": "boolean",
|
|
969 | 969 | "The wrapping is done by indenting by one compare to the current indentation."
|
970 | 970 | ],
|
971 | 971 | "default": "indentDefault",
|
972 |
| - "markdownDescription": "The indentation style, defaults to `indentDefault`." |
| 972 | + "markdownDescription": "The indentation style. Defaults to `indentDefault`." |
973 | 973 | }
|
974 | 974 | },
|
975 | 975 | "markdownDescription": "alignment of parameters in method declaration.",
|
|
989 | 989 | "set a brace location at the start of the next line with an extra indentation.",
|
990 | 990 | "set a brace location at the start of the next line if a wrapping occurred."
|
991 | 991 | ],
|
992 |
| - "markdownDescription": "Position the braces of a block, defaults to `endOfLine`", |
| 992 | + "markdownDescription": "Position the braces of a block. Defaults to `endOfLine`", |
993 | 993 | "default": "endOfLine"
|
994 | 994 | }
|
995 | 995 | },
|
|
0 commit comments