Posts

Showing posts from December, 2020

Android Studio Disable Ktlint import ordering

 Create a file named .editorconfig any where in the project with the following content. [* . { kt , kts }] disabled_rules = import-ordering This should waive the requirement for the imports to be ordered lexicographically.

git status is not showing changed files.

 If git add isn't adding updated/changed files or git isn't tracking a changed file, then run the following command: git add -f path/to/the/file