The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Data::Printer::Config - Load run-control (.dataprinter) files for Data::Printer

DESCRIPTION

This module is used internally to load .dataprinter files.

THE RC FILE

    # line comments are ok, DO NOT USE inline comments at the end of a line!
    ; this is also a line comment
    multiline  = 0
    hash_max   = 5
    array_max  = 5
    string_max = 50
    class.show_methods = none
    class.internals    = 0
    filters = DB, Web

    # if you tag a class, those settings will override your basic ones
    # whenever you call p() inside that class.
    [MyApp::Some::Class]
    multiline = 1
    show_tainted: 1
    class.format_inheritance = lines
    filters = MyAwesomeDebugFilter

    [Other::Class]
    theme = Monokai

SEE ALSO

Data::Printer