I am using javascript (not typescript) with eslint and airbnb rules.
I wonder if I can specify a rule to validate the naming of class attributes.
In particular, I would like to enforce that class attributes starts with "m_" and use snake case. example:
class A {
constructor() {
this.boo = "boo"; //BAD
this.m_boo = "boo"; //OK
}
}