el-beeswarm
Version:
<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;
17 lines (15 loc) • 457 B
JavaScript
import sonarqubeScanner from 'sonarqube-scanner';
sonarqubeScanner(
{
serverUrl: 'http://localhost:9000',
options: {
'sonar.sources': 'src',
'sonar.exclusions': 'src/**.spec.ts, coverager',
'sonar.tests': 'src',
'sonar.test.inclusions':
'src/**/*.spec.js,src/**/*.spec.jsx,src/**/*.test.js,src/**/*.test.jsx',
'sonar.javascript.lcov.reportPaths': 'coverage/lcov.info',
},
},
() => process.exit(),
);