Skip to content

Instantly share code, notes, and snippets.

@Girgias
Created May 28, 2020 13:50
Show Gist options
  • Save Girgias/de530bb748bdf679f073bc42bfdf8fe3 to your computer and use it in GitHub Desktop.
Save Girgias/de530bb748bdf679f073bc42bfdf8fe3 to your computer and use it in GitHub Desktop.
PVS Studio config plog-converter config for Linux
# Analyser warnings to filter
#enabled-analyzers = GA:1,2;64:1;CS
enabled-analyzers = GA:1,2
# V614 and V616 are disable as false positives in regards to FastZPP
# V616 is uninitialized pointer, we let the compiler warnings handle them as more accurate
errors-off = V614 V616
# Exclude directives don't accept the * pattern and should be the name of the folder/file to exclude directly
# Exclude bundled PCRE 2 lib (in ext/pcre)
exclude-path=pcre2lib
# Exclude VM file as this is a generated file
# Warnings should be fix from the building blocks of the VM
exclude-path=zend_vm_execute.h
#Messages, pointing to strings which contain these keywords, will be excluded from processing.
#disabled-keywords = keyword-to-disable another-keyword
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment