Ignore more rules
This commit is contained in:
parent
f02bad5c79
commit
c303b9afd3
|
@ -19,6 +19,10 @@ style:
|
||||||
active: false
|
active: false
|
||||||
LoopWithTooManyJumpStatements:
|
LoopWithTooManyJumpStatements:
|
||||||
active: false
|
active: false
|
||||||
|
SerialVersionUIDInSerializableClass:
|
||||||
|
active: false
|
||||||
|
ProtectedMemberInFinalClass:
|
||||||
|
active: false
|
||||||
|
|
||||||
empty-blocks:
|
empty-blocks:
|
||||||
EmptyFunctionBlock:
|
EmptyFunctionBlock:
|
||||||
|
@ -69,3 +73,7 @@ naming:
|
||||||
TopLevelPropertyNaming:
|
TopLevelPropertyNaming:
|
||||||
# TODO Enable it
|
# TODO Enable it
|
||||||
active: false
|
active: false
|
||||||
|
|
||||||
|
performance:
|
||||||
|
SpreadOperator:
|
||||||
|
active: false
|
||||||
|
|
|
@ -61,6 +61,7 @@ class VectorUncaughtExceptionHandler @Inject constructor(
|
||||||
* @param throwable the throwable
|
* @param throwable the throwable
|
||||||
* @return the exception description
|
* @return the exception description
|
||||||
*/
|
*/
|
||||||
|
@Suppress("PrintStackTrace")
|
||||||
override fun uncaughtException(thread: Thread, throwable: Throwable) {
|
override fun uncaughtException(thread: Thread, throwable: Throwable) {
|
||||||
Timber.v("Uncaught exception: $throwable")
|
Timber.v("Uncaught exception: $throwable")
|
||||||
preferences.edit(commit = true) {
|
preferences.edit(commit = true) {
|
||||||
|
|
Loading…
Reference in New Issue