-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathConfiguration.java
More file actions
36 lines (33 loc) · 1.07 KB
/
Configuration.java
File metadata and controls
36 lines (33 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package in.wilsonl.minifyhtml;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Value;
/**
* Class representing minification configuration. Use the {@link Builder} to create an instance of
* this class.
*/
@AllArgsConstructor(access = AccessLevel.PRIVATE)
@Builder(setterPrefix = "set", builderClassName = "Builder")
@Value
public class Configuration {
// Do not change fields below or remove the markers.
// Use `update-java.sh` to generate config fields. Lombok takes care of the rest
/* BEGIN FIELD NAMES */
boolean allowNoncompliantUnquotedAttributeValues;
boolean allowOptimalEntities;
boolean allowRemovingSpacesBetweenAttributes;
boolean keepClosingTags;
boolean keepComments;
boolean keepHtmlAndHeadOpeningTags;
boolean keepInputTypeTextAttr;
boolean keepSsiComments;
boolean minifyCss;
boolean minifyDoctype;
boolean minifyJs;
boolean preserveBraceTemplateSyntax;
boolean preserveChevronPercentTemplateSyntax;
boolean removeBangs;
boolean removeProcessingInstructions;
/* END FIELD NAMES */
}