Skip to content

Commit 837df92

Browse files
committed
Revert all README changes - I will put them back later.
1 parent 2bd12d7 commit 837df92

File tree

3 files changed

+0
-43
lines changed

3 files changed

+0
-43
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ lib('npm.TsFmtFormatterStep') +'{{yes}} | {{yes}}
5353
lib('scala.ScalaFmtStep') +'{{yes}} | {{yes}} | {{no}} |',
5454
lib('sql.DBeaverSQLFormatterStep') +'{{yes}} | {{no}} | {{no}} |',
5555
extra('wtp.EclipseWtpFormatterStep') +'{{yes}} | {{yes}} | {{no}} |',
56-
lib('antlr4.Antlr4FormatterStep') +'{{yes}} | {{yes}} | {{no}} |',
5756
'| [(Your FormatterStep here)](CONTRIBUTING.md#how-to-add-a-new-formatterstep) | {{no}} | {{no}} | {{no}} |',
5857
'| Fast up-to-date checking | {{yes}} | {{no}} | {{no}} |',
5958
'| Automatic idempotency safeguard | {{yes}} | {{no}} | {{no}} |',
@@ -82,7 +81,6 @@ lib('antlr4.Antlr4FormatterStep') +'{{yes}} | {{yes}}
8281
| [`scala.ScalaFmtStep`](lib/src/main/java/com/diffplug/spotless/scala/ScalaFmtStep.java) | :+1: | :+1: | :white_large_square: |
8382
| [`sql.DBeaverSQLFormatterStep`](lib/src/main/java/com/diffplug/spotless/sql/DBeaverSQLFormatterStep.java) | :+1: | :white_large_square: | :white_large_square: |
8483
| [`wtp.EclipseWtpFormatterStep`](lib-extra/src/main/java/com/diffplug/spotless/extra/wtp/EclipseWtpFormatterStep.java) | :+1: | :+1: | :white_large_square: |
85-
| [`antlr4.Antlr4FormatterStep`](lib/src/main/java/com/diffplug/spotless/antlr4/Antlr4FormatterStep.java) | :+1: | :+1: | :white_large_square: |
8684
| [(Your FormatterStep here)](CONTRIBUTING.md#how-to-add-a-new-formatterstep) | :white_large_square: | :white_large_square: | :white_large_square: |
8785
| Fast up-to-date checking | :+1: | :white_large_square: | :white_large_square: |
8886
| Automatic idempotency safeguard | :+1: | :white_large_square: | :white_large_square: |

plugin-gradle/README.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ Spotless can check and apply formatting to any plain-text file, using simple rul
9494
* [DBeaver sql format](https://dbeaver.jkiss.org/)
9595
* [Prettier: An opinionated code formatter](https://prettier.io)
9696
* [TypeScript Formatter (tsfmt)](https://github.com/vvakame/typescript-formatter)
97-
* [Antlr4Formatter](https://github.com/antlr/Antlr4Formatter)
9897
* Any user-defined function which takes an unformatted string and outputs a formatted version.
9998

10099
Contributions are welcome, see [the contributing guide](../CONTRIBUTING.md) for development info.
@@ -569,25 +568,6 @@ Unlike Eclipse, Spotless WTP ignores per default external URIs in schema locatio
569568
external entities. To allow the access of external URIs, set the property `resolveExternalURI`
570569
to true.
571570

572-
<a name="antlr4"></a>
573-
574-
## Applying to ANTLR4 source
575-
576-
By default, all ANTLR4 sources matching `src/main/antlr4/**/*.g4` or `src/test/antlr4/**/*.g4` will be formatted. To change this,
577-
set the `target` parameter as described in the [Custom rules](#custom) section.
578-
579-
```gradle
580-
spotless {
581-
antlr4 {
582-
// use default Antlr4Formatter version
583-
antlr4Formatter()
584-
585-
// specify a custom Antlr4Formatter version
586-
antlr4Formatter('1.2.1')
587-
}
588-
}
589-
```
590-
591571
<a name="license-header"></a>
592572

593573
## License header options

plugin-maven/README.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ Spotless supports the following powerful formatters:
7878
* Google's [google-java-format](https://github.com/google/google-java-format)
7979
* [Typescript Tsfmt formatter](https://github.com/vvakame/typescript-formatter)
8080
* [Prettier formatter](https://prettier.io)
81-
* [Antlr4Formatter](https://github.com/antlr/Antlr4Formatter)
8281
* User-defined license enforcement, regex replacement, etc.
8382

8483
Contributions are welcome, see [the contributing guide](../CONTRIBUTING.md) for development info.
@@ -218,26 +217,6 @@ By default, all files matching `src/main/cpp/**/*.<ext>` and `src/test/cpp/**/*.
218217
```
219218
Use the Eclipse to define the *Code Style preferences* (see [Eclipse documentation](https://www.eclipse.org/documentation/)). Within the preferences *Edit...* dialog, you can export your configuration as XML file, which can be used as a configuration `<file>`. If no `<file>` is provided, the CDT default configuration is used.
220219

221-
<a name="antlr4"></a>
222-
## Applying to ANTLR4 source
223-
224-
By default, all ANTLR4 sources matching `src/main/antlr4/**/*.g4` or `src/test/antlr4/**/*.g4` will be formatted. To change this,
225-
set the `includes` parameter as described in the [File incudes and excludes](#includeExclude) section.
226-
227-
```xml
228-
<configuration>
229-
<antlr4>
230-
<!-- use default Antlr4Formatter version -->
231-
<antlr4Formatter />
232-
233-
<antlr4Formatter>
234-
<!-- specify a custom Antlr4Formatter version -->
235-
<version>1.2.1</version>
236-
</antlr4Formatter>
237-
</antlr4>
238-
</configuration>
239-
```
240-
241220
<a name="typescript"></a>
242221

243222
## Applying to Typescript source

0 commit comments

Comments
 (0)