Skip to content

Commit ede8497

Browse files
authored
chore: update sonaq qube config (#2857)
1 parent 7346abe commit ede8497

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

packages/joint-core/demo/hull/src/hull.js

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(function(joint, V) {
1+
(function(joint, V, g) {
22

33
var graph = new joint.dia.Graph({}, { cellNamespace: joint.shapes });
44

@@ -17,14 +17,10 @@
1717
}
1818
});
1919

20-
function random(max, min) {
21-
return Math.floor(Math.random() * (max - min)) + min;
22-
}
23-
2420
// create circles
2521
Array.from({ length: 10 }).forEach(function(_, n) {
26-
var x = random(100, 700);
27-
var y = random(100, 500);
22+
var x = g.random(100, 700);
23+
var y = g.random(100, 500);
2824
createCircle(x, y, (n % 3 === 0) ? 'inner' : 'outer').addTo(graph);
2925
});
3026

@@ -141,4 +137,4 @@
141137

142138
}
143139

144-
})(joint, V);
140+
})(joint, V, g);

sonar-project.properties

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
sonar.projectKey=joint
2-
sonar.exclusions=packages/joint-core/demo/chess/src/garbochess.js, packages/joint-core/src/polyfills/**
32
sonar.scm.provider=git
43
sonar.sources=.
4+
sonar.tests=packages/joint-core/test, packages/joint-layout-directed-graph/test
5+
# Exclusions
6+
sonar.exclusions=packages/joint-core/demo/chess/src/garbochess.js, packages/joint-core/src/polyfills/**
7+
# Duplicate code detection
8+
sonar.cpd.exclusions=**/test/**/*, **/demo/**/*, **/examples/**/*

0 commit comments

Comments
 (0)