aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/java_spec.lua
Commit message (Collapse)AuthorAgeFilesLines
* tests(gleam): fix assert tests that no longer parse correctlyChristian Clason2025-05-121-1/+1
|
* feat!: drop modules, general refactor and cleanupChristian Clason2025-05-121-23/+29
|
* feat: add indents for annotation defs (#4828)Pham Huy Hoang2023-06-041-0/+2
| | | | - Add indent for `@interface` and `@Annotation(...)` - Add notes for indent queries
* fix: Java indent for multiple line arguments (#4449)Daniel Woznicki2023-03-061-0/+2
| | | | | | | | | * fix Java indent for multiple line arguments, fixes #4448, add an additional test for methods with arguments on multiple lines * Satisfy StyLua check --------- Co-authored-by: Daniel Woznicki <danwoz@nettoolkit.com>
* Changed quotes to appease styluaDaniel Woznicki2022-04-041-1/+1
|
* Fixed incorrect Java indentation for method chainingDaniel Woznicki2022-04-041-0/+1
|
* Added test for known indent failure when tree is in broken stateDaniel Woznicki2022-03-011-2/+7
|
* Made block comment indent @auto so that new lines line up nicely with ↵Daniel Woznicki2022-03-011-1/+1
| | | | | | | | | | | | | | existing comment block Previous indentation: /** * */ New indentation: /** * */
* Added test case for broken trees, plus partial test coverageDaniel Woznicki2022-03-011-0/+2
|
* Modified Java indent rules to stop ignoring block comments because javadoc ↵Daniel Woznicki2022-03-011-0/+1
| | | | blocks were defaulting to indent 0
* Added fix for Java interfaces not being indented properlyDaniel Woznicki2022-03-011-0/+1
|
* Fixed a bug where indentation was not correct for class/enum bodies that had ↵Daniel Woznicki2022-02-251-0/+2
| | | | an annotation
* Fixed a bug where Java enum body indentation was not correctDaniel Woznicki2022-02-251-0/+1
| | | | Added test for Java enum indentation
* Removed newline causing sylua lint check to failDaniel Woznicki2022-02-251-1/+0
|
* Added fix for incorrect Java indentation after a closing "}" in a method ↵Daniel Woznicki2022-02-251-0/+23
declaration Added tests for Java indentation, including one for issue 2571