Skip to content

flake8-secure-coding-standard v1.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 02 Jun 07:16
· 41 commits to main since this release
8f6509e

Added

  • Added SCS112 to avoid using os.open() with unsafe permissions
  • Added SCS113 to avoid using pickle.load() and pickle.loads()
  • Added SCS114 to avoid using marshal.load() and marshal.loads()
  • Added SCS115 to avoid using shelve.open()
  • Added SCS116 to avoid using os.mkdir and os.makedirs with unsafe file permissions
  • Added SCS117 to avoid using os.mkfifo with unsafe file permissions
  • Added SCS118 to avoid using os.mknod with unsafe file permissions
  • Added SCS119 to avoid using os.chmod with unsafe file permissions (W ^ X for group and others)

Fixed

  • Fix typos found by codespell
  • Fix issues discovered by yamllint

Repository

  • Add Python 3.10 to the list of configurations for testing
  • Add codespell pre-commit hook
  • Add yamllint configuration file and pre-commit hook