Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
flake8-classmethod-staticmethod
Advanced tools
flake8 plugin that checks rules regarding the staticmethod and classmethod decorators.
flake8 plugin that checks rules regarding the staticmethod and classmethod decorators.
The plugin offers one flag, --select_csm1
, accepting a list of error
codes (see below) to be enabled. By default, the enabled errors
are CSM101
and CSM131
.
@staticmethod
should not be used.
A method marked as @staticmethod
should not reference the class it
is defined in. Use @classmethod
otherwise.
Bad
class MyClass:
@staticmethod
def my_name():
return MyClass.__name__
Good
class MyClass:
@classmethod
def my_name(cls):
return cls.__name__
Do not inherit and override a method marked as @staticmethod
.
Bad
class MyClass:
@staticmethod
def my_name():
return "MyClass"
class MyChild:
@staticmethod
def my_name():
return "MyChild"
Good
class MyClass:
@classmethod
def my_name(cls):
return cls.__name__
@classmethod
should not be used.
A method marked as @classmethod
should access the parameter cls
.
Use @staticmethod
otherwise.
A special case that is exempt is a method that has a call to super()
.
Bad
class MyClass:
@classmethod
def my_name(cls):
return "MyClass"
Good
class MyClass:
@staticmethod
def my_name():
return "MyClass"
A method marked as @classmethod
should not reference the class it
is defined in. Use the cls
parameter.
class MyClass:
@classmethod
def my_name(cls):
return MyClass.__name__
Good
class MyClass:
@classmethod
def my_name(cls):
return cls.__name__
FAQs
flake8 plugin that checks rules regarding the staticmethod and classmethod decorators.
We found that flake8-classmethod-staticmethod demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.