Skip to content

BSL213 — Referencing a missing common module method

Summary

Referencing a missing common module method

Identifiers

Field Value
Rule code BSL213
Compatible alias MissingCommonModuleMethod
Severity ERROR
Enabled by default Yes
Implemented Yes
Tags correctness, module

Behavior

  • The public identifier BSL213 and alias MissingCommonModuleMethod are stable.
  • The rule reports the cases documented on this page.
  • Suppressions and project configuration are applied before publication.
  • The rule requires neither an external analyzer nor network access.

Configuration and suppression

BSL### is the primary stable identifier. The compatible alias is accepted in select, ignore, and compatible block suppression comments.

[tool.onec-hbk-bsl]
select = ["BSL213"]
ignore = ["MissingCommonModuleMethod"]

All three suppression families support both a current line and a range. When an opening comment follows code, it affects only that line. Use any one form:

  • noqa:
Value = "example";  // noqa: BSL213
  • bsl-disable:
Value = "example";  // bsl-disable: BSL213
  • compatible BSLLS form:
Value = "example";  // BSLLS:MissingCommonModuleMethod-off

When the same opening comment is on a line by itself, it starts a range. Close it with the matching marker from the same family:

// noqa: BSL213
// code without this diagnostic
// noqa-enable: BSL213

// bsl-disable: BSL213
// code without this diagnostic
// bsl-enable: BSL213

// BSLLS:MissingCommonModuleMethod-off
// code without this diagnostic
// BSLLS:MissingCommonModuleMethod-on

To disable the rule until the end of the file, omit the closing noqa-enable, bsl-enable, or BSLLS:…-on marker.

Opening and closing markers must belong to the same family.

Description

Diagnostics detects erroneous calls to methods of common modules. Detects the following errors - method does not exist in the specified common module - method is in the common module, but it is not exported - if a common module has no source code, then all calls to its methods are marked as erroneous

Excluded - the variable name is the same as the common module name

Examples

Sources