Skip to content

Commit

Permalink
Merge pull request #714 from microsoft/joypal/lintFixesPart3
Browse files Browse the repository at this point in the history
add lint options for all packages
  • Loading branch information
joyeeta26 authored Oct 15, 2024
2 parents 2595ef0 + 9d05620 commit 4f06bca
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions FluentUI.Demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ android {
}
lintOptions {
lintConfig = file("lint.xml")
abortOnError false
}
buildTypes {
release {
Expand Down
3 changes: 3 additions & 0 deletions FluentUI/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ android {
lint {
baseline = file("lint-baseline.xml")
}
lintOptions {
abortOnError false
}
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions fluentui_ccb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ android {
buildFeatures {
compose true
}
lintOptions {
abortOnError false
}
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions fluentui_drawer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}
lintOptions {
abortOnError false
}
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions fluentui_listitem/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
abortOnError false
}
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions fluentui_menus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ android {
buildFeatures {
compose true
}
lintOptions {
abortOnError false
}
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions fluentui_persona/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ android {
}
productFlavors {
}
lintOptions {
abortOnError false
}

}

Expand Down
3 changes: 3 additions & 0 deletions fluentui_progress/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ android {
buildFeatures {
compose true
}
lintOptions {
abortOnError false
}
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions fluentui_tablayout/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ android {
composeOptions {
kotlinCompilerExtensionVersion composeCompilerVersion
}
lintOptions {
abortOnError false
}
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions fluentui_topappbars/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}
lintOptions {
abortOnError false
}
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions fluentui_transients/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}

dependencies {
Expand Down

0 comments on commit 4f06bca

Please sign in to comment.