| # Copyright lowRISC contributors. |
| # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| # SPDX-License-Identifier: Apache-2.0 |
| Class describing lint configuration object |
| from tabulate import tabulate |
| from LintCfg import LintCfg |
| from utils import subst_wildcards, check_bool |
| from MsgBuckets import MsgBuckets |
| '''Derivative class for linting purposes.''' |
| def __init__(self, flow_cfg_file, hjson_data, args, mk_config): |
| super().__init__(flow_cfg_file, hjson_data, args, mk_config) |
| self.results_title = f'{self.name.upper()} CDC Results' |