mirror of
https://github.com/vector-im/element-web.git
synced 2025-12-07 18:31:33 +01:00
* Reapply "Update the mobile_guide page to the new design. (#30006)" (#30104) This reverts commit c51823db5e0df15d579c00179823cb41fa57bb3b. * Use Element X as the default mobile_guide_app_variant when omitted. * Fix a build error on Windows. Additionally revert "Remove unnecessary <%= require %> usages" and let webpack handle all of the assets (without a manual copy rule). * Exclude mobile_guide from coverage gate It has playwright tests * Revert the re-introduction of <%= require %> * Fix snapshot tests on mobile_guide. --------- Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
25 lines
706 B
Properties
25 lines
706 B
Properties
sonar.projectKey=element-web
|
|
sonar.organization=element-hq
|
|
|
|
# Encoding of the source code. Default is default system encoding
|
|
#sonar.sourceEncoding=UTF-8
|
|
|
|
sonar.sources=src,res
|
|
sonar.tests=test,playwright
|
|
sonar.exclusions=__mocks__,docs,element.io,nginx
|
|
|
|
sonar.cpd.exclusions=src/i18n/strings/*.json
|
|
sonar.typescript.tsconfigPath=./tsconfig.json
|
|
sonar.javascript.lcov.reportPaths=coverage/lcov.info
|
|
sonar.coverage.exclusions=\
|
|
test/**/*,\
|
|
playwright/**/*,\
|
|
res/**/*,\
|
|
scripts/**/*,\
|
|
src/vector/modernizr.js,\
|
|
src/components/views/dialogs/devtools/**/*,\
|
|
src/utils/SessionLock.ts,\
|
|
src/**/*.d.ts,\
|
|
src/vector/mobile_guide/**/*
|
|
sonar.testExecutionReportPaths=coverage/jest-sonar-report.xml
|