I do not know the documentation with all the defaults.
However, you can check the source code used in 1.5 here :
public class LintOptions implements com.android.builder.model.LintOptions, Serializable {
public static final String STDOUT = "stdout";
public static final String STDERR = "stderr";
private static final long serialVersionUID = 1L;
@NonNull
private Set<String> disable = Sets.newHashSet();
@NonNull
private Set<String> enable = Sets.newHashSet();
@Nullable
private Set<String> check = Sets.newHashSet();
private boolean abortOnError = true;
private boolean absolutePaths = true;
private boolean noLines;
private boolean quiet;
private boolean checkAllWarnings;
private boolean ignoreWarnings;
private boolean warningsAsErrors;
private boolean showAll;
private boolean checkReleaseBuilds = true;
private boolean explainIssues = true;
@Nullable
private File lintConfig;
private boolean textReport;
@Nullable
private File textOutput;
private boolean htmlReport = true;
@Nullable
private File htmlOutput;
private boolean xmlReport = true;
@Nullable
private File xmlOutput;
}
source
share