dgryski.semgrep-go.ioutil.deprecated-ioutil-readall

profile photo of dgryskidgryski
Author
unknown
Download Count*
License

ioutil.ReadAll is deprecated

Run Locally

Run in CI

Defintion

rules:
  - id: deprecated-ioutil-readall
    pattern: ioutil.ReadAll($R)
    fix: io.ReadAll($R)
    message: ioutil.ReadAll is deprecated
    languages:
      - go
    severity: ERROR
    metadata:
      license: MIT