melexis/sphinx-coverity-extension

View on GitHub

Showing 7 of 8 total issues

Formatting a regular string which could be a f-string
Open

                    report_warning("Attribute value '%s' should be unique in chart option." % attr_val, docname)

Used when we detect a string that is being formatted with format() or % which could potentially be a f-string. The use of f-strings is preferred. Requires Python 3.6 and py-version >= 3.6.

Formatting a regular string which could be a f-string
Open

            report_info('No issues matching your query or empty stream. %s' % err)

Used when we detect a string that is being formatted with format() or % which could potentially be a f-string. The use of f-strings is preferred. Requires Python 3.6 and py-version >= 3.6.

Unrecognized option found: files-output, bad-functions, function-name-hint, variable-name-hint, const-name-hint, attr-name-hint, argument-name-hint, class-attribute-name-hint, inlinevar-name-hint, class-name-hint, module-name-hint, method-name-hint, no-space-check
Open

[MASTER]
Severity: Critical
Found in .pylintrc by pylint

Used when we detect an option that we do not recognize.

Formatting a regular string which could be a f-string
Open

        return "{:.0f}%\n({:d})".format(pct, absolute)

Used when we detect a string that is being formatted with format() or % which could potentially be a f-string. The use of f-strings is preferred. Requires Python 3.6 and py-version >= 3.6.

Unknown option value for '--disable', expected a valid pylint message and got 'W0403'
Open

[MASTER]
Severity: Minor
Found in .pylintrc by pylint

Used when an unknown value is encountered for an option.

Formatting a regular string which could be a f-string
Open

                row += self.create_cell("{}#L{}".format(defect['filePathname'], linenum))

Used when we detect a string that is being formatted with format() or % which could potentially be a f-string. The use of f-strings is preferred. Requires Python 3.6 and py-version >= 3.6.

Formatting a regular string which could be a f-string
Open

        rel_file_path = path.join('_images', 'piechart-{}.png'.format(hash_value))

Used when we detect a string that is being formatted with format() or % which could potentially be a f-string. The use of f-strings is preferred. Requires Python 3.6 and py-version >= 3.6.

Severity
Category
Status
Source
Language