1

I am using Android Studio, is there any way to disable this annoyed inspection.

enter image description here

I tried to disable all inspection, invalidate cache and restart but still

enter image description here

thanhbinh84
  • 17,876
  • 6
  • 62
  • 69

1 Answers1

3

I found that there is lint configuration in the code, so just disable and the alert will gone.

In analysis_options.yaml file, disable the 80 chars rule:

linter:
  rules:
    lines_longer_than_80_chars: false
thanhbinh84
  • 17,876
  • 6
  • 62
  • 69