|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface LintOptions
Options for lint. Example:
android { lintOptions { // set to true to turn off analysis progress reporting by lint quiet true // if true, stop the gradle build if errors are found abortOnError false // set to true to have all release builds run lint on issues with severity=fatal // and abort the build (controlled by abortOnError above) if fatal issues are found checkReleaseBuilds true // if true, only report errors ignoreWarnings true // if true, emit full/absolute paths to files with errors (true by default) //absolutePaths true // if true, check all issues, including those that are off by default checkAllWarnings true // if true, treat all warnings as errors warningsAsErrors true // turn off checking the given issue id's disable 'TypographyFractions','TypographyQuotes' // turn on the given issue id's enable 'RtlHardcoded','RtlCompat', 'RtlEnabled' // check *only* the given issue id's check 'NewApi', 'InlinedApi' // if true, don't include source code lines in the error output noLines true // if true, show all locations for an error, do not truncate lists, etc. showAll true // Fallback lint configuration (default severities, etc.) lintConfig file("default-lint.xml") // if true, generate a text report of issues (false by default) textReport true // location to write the output; can be a file or 'stdout' //textOutput 'stdout' textOutput file("lint-results.txt") // if true, generate an XML report for use by for example Jenkins xmlReport true // file to write report to (if not specified, defaults to lint-results.xml) xmlOutput file("lint-report.xml") // if true, generate an HTML report (with issue explanations, sourcecode, etc) htmlReport true // optional path to report (default will be lint-results.html in the builddir) htmlOutput file("lint-report.html") } }
Method Summary | |
---|---|
java.util.Set<java.lang.String> |
getCheck()
Returns the exact set of issues to check, or null to run the issues that are enabled by default plus any issues enabled via getEnable() and without issues disabled
via getDisable() . |
java.util.Set<java.lang.String> |
getDisable()
Returns the set of issue id's to suppress. |
java.util.Set<java.lang.String> |
getEnable()
Returns the set of issue id's to enable. |
java.io.File |
getHtmlOutput()
The optional path to where an HTML report should be written |
boolean |
getHtmlReport()
Whether we should write an HTML report. |
java.io.File |
getLintConfig()
Returns an optional path to a lint.xml configuration file |
java.io.File |
getTextOutput()
The optional path to where a text report should be written. |
boolean |
getTextReport()
Whether we should write an text report. |
java.io.File |
getXmlOutput()
The optional path to where an XML report should be written |
boolean |
getXmlReport()
Whether we should write an XML report. |
boolean |
isAbortOnError()
Whether lint should abort the build if errors are found |
boolean |
isAbsolutePaths()
Whether lint should display full paths in the error output. |
boolean |
isCheckAllWarnings()
Returns whether lint should check all warnings, including those off by default |
boolean |
isCheckReleaseBuilds()
Returns whether lint should check for fatal errors during release builds. |
boolean |
isIgnoreWarnings()
Returns whether lint will only check for errors (ignoring warnings) |
boolean |
isNoLines()
Whether lint should include the source lines in the output where errors occurred (true by default) |
boolean |
isQuiet()
Returns whether lint should be quiet (for example, not show progress dots for each analyzed file) |
boolean |
isShowAll()
Returns whether lint should include all output (e.g. |
boolean |
isWarningsAsErrors()
Returns whether lint should treat all warnings as errors |
Method Detail |
---|
@NonNull java.util.Set<java.lang.String> getDisable()
@NonNull java.util.Set<java.lang.String> getEnable()
@Nullable java.util.Set<java.lang.String> getCheck()
getEnable()
and without issues disabled
via getDisable()
. If non-null, callers are allowed to modify this collection.
boolean isAbortOnError()
boolean isAbsolutePaths()
boolean isNoLines()
boolean isQuiet()
boolean isCheckAllWarnings()
boolean isIgnoreWarnings()
boolean isWarningsAsErrors()
boolean isShowAll()
@Nullable java.io.File getLintConfig()
boolean getTextReport()
getTextOutput()
.
@Nullable java.io.File getTextOutput()
boolean getHtmlReport()
getHtmlOutput()
.
@Nullable java.io.File getHtmlOutput()
boolean getXmlReport()
getXmlOutput()
.
@Nullable java.io.File getXmlOutput()
boolean isCheckReleaseBuilds()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |