15 lines
359 B
Python
15 lines
359 B
Python
#!/bin/env python
|
|
|
|
# Vulture often detects false positives when analyzing a code
|
|
# base. If there are particular things you wish to ignore,
|
|
# add them below. This file is consumed by
|
|
# scripts/dead_code/find-dead-code.sh
|
|
|
|
|
|
from vulture.whitelist_utils import Whitelist
|
|
|
|
view_whitelilst = Whitelist()
|
|
|
|
# Example:
|
|
# view_whitelist.name_of_function_to_whitelist
|