I need to ignore jsvascript property in sonar properties. We are using *.ts ,while converting it to *.js ,in each JS file very first line adding “use strict” and and getting issues like "
Use of JavaScript strict mode may result in unexpected behaviour in some browsers." , we found some solution to avoid in ts level by using " noImplicitUseStrict": true" at tsconfig file . But this is not acceptable ans trying to ignore that rule at sonar-project.properties ,we are not able to figure out how to ignore at sonar-project.properties.
I tried to take ref from https://github.com/simgrid/simgrid/blob/master/sonar-project.properties to fix .Can anyone help to solve this ???