internationalization - Change InternationalizationCheck from JSTL '<fmt:message key>' format? -


in sonarqube web plugin, internationalizationcheck rule searches internationalization in form of <fmt:message key=...>. there way change this? internationalization in format <f: message key=...>. assume alterable in 'attributes' section, haven't figured out section for, or put there.

for example, rule searches internationalization in form of

<fmt:message key="login.label.username" /> 

as described in rule's noncompliant/compliant code example. however, in application, internationalization takes form of

<f:message key="login.label.username" /> 

which incorrectly labelled error rule. nothing in internationalizationcheck's source code shows how explicitly looks format, need find way make accept format acceptable line of code instead of giving false positive.

is there way specify internationalizationcheck different format of internationalization, other jstl taglib prefix of 'fmt'?


Comments

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -