Skip to content

Commit 150644b

Browse files
committed
Add newline at end of file
Code formatting stuff
1 parent 20ae3bb commit 150644b

File tree

74 files changed

+75
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+75
-75
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
# By default, queries listed here will override any specified in a config file.
3636
# Prefix the list here with "+" to use these queries and those in the config file.
3737
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
38-
# queries: security-extended,security-and-quality
38+
# queries: security-extended,security-and-quality

.github/workflows/image-minimizer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ module.exports = async ({github, context}) => {
4747

4848
// Require the probe lib for getting the image dimensions
4949
const probe = require('probe-image-size');
50-
50+
5151
var wasMatchModified = false;
5252

5353
// Try to find and replace the images with minimized ones
5454
let newBody = await replaceAsync(initialBody, REGEX_USER_CONTENT_IMAGE_LOOKUP, minimizeAsync);
5555
newBody = await replaceAsync(newBody, REGEX_ASSETS_IMAGE_LOCKUP, minimizeAsync);
56-
56+
5757
if (!wasMatchModified) {
5858
console.log('Nothing was modified. Skipping update');
5959
return;

.github/workflows/image-minimizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
with:
3333
script: |
3434
const script = require('.github/workflows/image-minimizer.js');
35-
await script({github, context});
35+
await script({github, context});

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ dependencies {
143143
// Tests (AndroidJUnitRunner & JUnit Rules, Assertions)
144144
androidTestImplementation(libs.androidx.test.runner)
145145
androidTestImplementation(libs.androidx.test.junit)
146-
}
146+
}

app/lint.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
<issue id="ProtectedPermissions" severity="ignore" />
99
<issue id="QueryAllPackagesPermission" severity="ignore" />
1010
<issue id="ScopedStorage" severity="ignore" />
11-
</lint>
11+
</lint>

app/proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
-keepattributes SourceFile,LineNumberTable
1515

1616
// Needed just for androidx.preference.PreferenceManager
17-
-renamesourcefileattribute SourceFile
17+
-renamesourcefileattribute SourceFile

app/src/androidTest/kotlin/theredspy15/ltecleanerfoss/InstrumentedTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,4 @@ class InstrumentedTest {
103103
assertTrue(file.exists())
104104
return file
105105
}
106-
}
106+
}

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@
6666
</intent-filter>
6767
</activity>
6868
</application>
69-
</manifest>
69+
</manifest>

app/src/main/java/theredspy15/ltecleanerfoss/App.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ class App: Application(){
3939
companion object {
4040
var prefs:SharedPreferences? = null
4141
}
42-
}
42+
}

0 commit comments

Comments
 (0)