I have a bar chart using SVG and style it using a separate CSS file.
For testing and code verification I use TeamCity 8.x. The CSSC TeamCity Inspector reports errors of SVG elements that I am developing. For instance:
.bar rect {
fill: steelblue;
shape-rendering: crispEdges;
}
This is an error message ( http://youtrack.jetbrains.com/issue/WEB-56 ). Is there a way to suppress these errors without changing the severity of this problem for the entire project?
source
share