I try to use accented characters for variable names but intellij doesn't really like it
this does not pose a problem when compiling or even when using... after some testing
I started by managing the first warning Non-ASCII character
here is an example (koltin code)
data class Utilisateur(
var idUtilisateur: UUID?,
var nom: String?,
var désactivé: Boolean?, // Property name 'désactivé' may contain only letters and digits
)
I strongly recommend that you do not use non-ASCII characters in identifiers, as it makes it easier for people who can't type those letters to collaborate.
That said, if you don't want any warnings for this, in addition to the "Non-ASCII characters" you already disabled, you need to disable/edit the "Naming Conventions" inspections under the "Kotlin" disclosure group.
Note that there are separate inspections for separate program elements. To remove the warning, you can either disable them, or edit the regex in the options section: