We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm following your instructions on creating configuration file, but it seems there is missing the root node.
I've solved adding the root node in my metrics.yml There is my working configuration
metrics.yml
phpmetrics: # paths to explore path: directory: src extensions: php exclude: Features|Tests|tests # report and violations files logging: report: xml: app/logs/metrics/phpmetrics.xml html: app/logs/metrics/phpmetrics.html csv: app/logs/metrics/phpmetrics.csv violations: xml: app/logs/metrics/violations.xml chart: bubbles: app/logs/metrics/bubbles.svg # condition of failure failure: average.maintenabilityIndex < 50 or sum.loc > 10000 # rules used for color rules: cyclomaticComplexity: [ 10, 6, 2 ] maintenabilityIndex: [ 0, 69, 85 ]
The text was updated successfully, but these errors were encountered:
680a99c
No branches or pull requests
I'm following your instructions on creating configuration file, but it seems there is missing the root node.
I've solved adding the root node in my
metrics.yml
There is my working configuration
The text was updated successfully, but these errors were encountered: