This is the repository with some custom Android lint rules of mine.
Russian typography rules state that there could not be any line
breaks after some propositions, conjunctions and particles. So you have to use
non-breaking spaces after these words. This rule helps to look after that in
your Russian string resources.
You just add the library to dependencies and Android Studio will automatically enable these checks for you. Note that there is no actual code in the library. It is only for easy Android Studio integration. To customize the severity of the lint check or other properties, refer to android lint documentation.
repositories {
maven { url "https://dl.bintray.com/mishkun/mAndroidLint-rules" }
}
dependencies {
implementation "io.github.mishkun:nbsp-android-lint:1.0.0"
}
repositories {
maven("https://dl.bintray.com/mishkun/mAndroidLint-rules")
}
dependencies {
implementation("io.github.mishkun:nbsp-android-lint:1.0.0")
}