Example

public class TestClass {
static void methodName() {
int I = 0;
}
}


Solution
The default regular expression mask ensures that local variable names start with a lowercase letter.

To edit the regular expression, click on the [Details...] button.


public class TestClass {
static void MethodName() {
int i = 0;
}
}