Skip to content

Commit

Permalink
Fix default value of JavaScript execution environments (#3143)
Browse files Browse the repository at this point in the history
Co-authored-by: Tibor Blenessy <tibor.blenessy@sonarsource.com>
  • Loading branch information
yassin-kammoun-sonarsource and saberduck committed May 25, 2022
1 parent 63f3453 commit 5d0e183
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ public class JavaScriptPlugin implements Plugin {
public static final String LCOV_REPORT_PATHS_DEFAULT_VALUE = "";

public static final String ENVIRONMENTS = "sonar.javascript.environments";
public static final String ENVIRONMENTS_DEFAULT_VALUE = "amd, applescript, atomtest, browser, commonjs, couch, embertest, flow, greasemonkey, jasmine, jest, jquery, " +
"meteor, mocha, mongo, nashorn, node, phantomjs, prototypejs, protractor, qunit, rhino, serviceworker, shared-node-browser, shelljs, webextensions, worker, wsh, yui";
public static final String ENVIRONMENTS_DEFAULT_VALUE = String.join(",", "amd","applescript","atomtest","browser","commonjs","couch","embertest","flow","greasemonkey","jasmine","jest","jquery", "meteor","mocha","mongo","nashorn","node","phantomjs","prototypejs","protractor","qunit","rhino","serviceworker","shared-node-browser","shelljs","webextensions","worker","wsh","yui");

public static final String GLOBALS = "sonar.javascript.globals";
public static final String GLOBALS_DEFAULT_VALUE = "angular,goog,google,OenLayers,d3,dojo,dojox,dijit,Backbone,moment,casper,_";
Expand Down

0 comments on commit 5d0e183

Please sign in to comment.