Skip to content

Commit 5829840

Browse files
committed
Apply formatter & Fix lint
1 parent 73b8b88 commit 5829840

File tree

22 files changed

+706
-928
lines changed

22 files changed

+706
-928
lines changed

.eslintrc

Lines changed: 26 additions & 229 deletions
Large diffs are not rendered by default.

.prettierrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"printWidth": 80,
3+
"singleQuote": false,
4+
"trailingComma": "all",
5+
"bracketSpacing": true,
6+
"jsxBracketSameLine": true,
7+
"parser": "typescript",
8+
"tabWidth": 2
9+
}

.watchmanconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
{
32
"ignore_dirs": [
43
".git",

android/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ android {
1515
versionCode 1
1616
versionName "1.0"
1717
}
18+
19+
// TODO replace with https://issuetracker.google.com/issues/72050365 once released.
20+
libraryVariants.all {
21+
it.generateBuildConfig.enabled = false
22+
}
1823
}
1924

2025
dependencies {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<manifest package="com.github.droibit.android.reactnative.customtabs" />
1+
<manifest package="com.github.droibit.android.reactnative.customtabs"/>

0 commit comments

Comments
 (0)