Skip to main content

Additional checkers for pylint that are used by the FS-CFEL-1 team

Project description

cfel-pylint-checkers

Installation

Just pip install cfel-pylint-checkers should suffice. Then you can enable the appropriate checkers as plugins by editing your .pylintrc file, extending the load-plugins line. For example:

load-plugins=cfel_pylint_checkers.no_direct_dict_access,cfel_pylint_checkers.tango_command_dtype

Checkers

no-direct-dict-access

Enable with:

load-plugins=cfel_pylint_checkers.no_direct_dict_access

This disallows the use of dictionary access using the [] operator for reading. Meaning, this is no longer allowed:

mydict = { "foo": 3 }

print(mydict["bar"])

As you can see, this code produces an error, since we’re accessing "bar" but the mydict dictionary only contains the key "foo". You have to use .get to make this safe:

mydict = { "foo": 3 }

print(mydict.get("bar"))

Which produces None if the key doesn’t exist. You can even specify a default value:

mydict = { "foo": 3 }

print(mydict.get("bar", 0))

Mutating use of operator[] is, of course, still possible. This is fine:

mydict = { "foo": 3 }

mydict["bar"] = 4

tango-command-dtype

Enable with:

load-plugins=cfel_pylint_checkers.tango_command_dtype

This checker tests for various error conditions related to the hardware controls system Tango, specifically its Python adaptation PyTango.

For instance, the following mismatch between the dtype_in of a command and its actual type annotation is caught:

from tango.server import Device, command

class MyDevice(Device):
    @command(dtype_in=int)
    def mycommand(self, argument: str) -> None:
        pass

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cfel_pylint_checkers-1.1.3.tar.gz (16.1 kB view details)

Uploaded Source

Built Distribution

cfel_pylint_checkers-1.1.3-py3-none-any.whl (17.0 kB view details)

Uploaded Python 3

File details

Details for the file cfel_pylint_checkers-1.1.3.tar.gz.

File metadata

  • Download URL: cfel_pylint_checkers-1.1.3.tar.gz
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.10.9 Linux/6.1.20

File hashes

Hashes for cfel_pylint_checkers-1.1.3.tar.gz
Algorithm Hash digest
SHA256 2cbbd8f255fd00814895d05ce61fffcf5e120d4c512c9289189e3abefd5ef28f
MD5 051c09f88707ebd736a08dffafbcbd31
BLAKE2b-256 493e98f54dc3102fb81c1b7b0b83a1b869ec887694abd8912395af935ed432de

See more details on using hashes here.

File details

Details for the file cfel_pylint_checkers-1.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for cfel_pylint_checkers-1.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 9ed26518f3671e2e8e37d38f5af9c0801bd9f732da2677e039b1365d21e58718
MD5 5569a82fa011d06ba39a88b0984e50fd
BLAKE2b-256 f118613013a2f1a8e4c25ab7241b09de337fd2e233d86962b6f3de9c99be9c7a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page