Like with sonar-java and the annotation @SuppressWarnings("squid:S2078"),
is there any way with sonar-js to ignore one rule on a block of code ??
The git repo doesn't have any exemple of that.
I develop a react-redux ES6 app and i have reducer with default value :
export default function myReducer(prev = initialState, action)
and Sonar complain with "Function parameters with default values should be last".
But i can't change the order of the parameters of a reducer and i need a default value.