You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# 项目配置 - 与网页命令行保持一致
sonar.projectKey = EGA
sonar.projectName = AI写作助手项目
# 项目版本
sonar.projectVersion = 1.0
# 源代码目录
sonar.sources = .
# 包含的文件类型
sonar.inclusions = **/*.js,**/*.html,**/*.py,**/*.css,**/*.json
# 排除的目录
sonar.exclusions = **/node_modules/**,**/logs/**,**/data/**,**/.idea/**,**/.vscode/**,**/__pycache__/**
# 编码设置
sonar.sourceEncoding = UTF-8
# 多语言配置
sonar.language = web
# 针对Python的配置( 可选)
sonar.python.version = 3.8+
# 针对JavaScript的配置( 可选)
sonar.javascript.lcov.reportPaths = coverage/lcov.info
# SonarQube服务器配置
sonar.host.url = http://localhost:9000
sonar.login = sqp_4861d64b665e0d3cd75c6bac8baa16004f01e000