How to use the vsg.rules.case_rule.__init__ function in vsg

To help you get started, we’ve selected a few vsg examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jeremiah-c-leary / vhdl-style-guide / vsg / rules / process / rule_009.py View on Github external
def __init__(self):
        case_rule.__init__(self, 'process', '009', 'isEndProcess')
        self.solution = 'Change "process" keyword to '
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / entity / rule_004.py View on Github external
def __init__(self):
        case_rule.__init__(self, 'entity', '004', 'isEntityDeclaration')
        self.solution = 'Change "entity" keyword to '
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / instantiation / rule_011.py View on Github external
def __init__(self):
        case_rule.__init__(self, 'instantiation', '011', 'isInstantiationPortAssignment')
        self.solution = 'Change port name to '
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / instantiation / rule_027.py View on Github external
def __init__(self):
        case_rule.__init__(self, 'instantiation', '027', 'isDirectInstantiationDeclaration')
        self.solution = 'Change "entity" keyword to '
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / instantiation / rule_006.py View on Github external
def __init__(self):
        case_rule.__init__(self, 'instantiation', '006', 'isInstantiationPortKeyword')
        self.solution = 'Change "port map" keywords to '
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / constant / rule_002.py View on Github external
def __init__(self):
        case_rule.__init__(self, 'constant', '002', 'isConstant')
        self.solution = 'Change "constant" keyword to '
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / signal / rule_004.py View on Github external
def __init__(self, name='signal', identifier='004'):
        case_rule.__init__(self, 'signal', '004', 'isSignal')
        self.solution = 'Change signal identifiers name to '
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / variable / rule_004.py View on Github external
def __init__(self):
        case_rule.__init__(self, 'variable', '004', 'isVariable')
        self.solution = 'Change variable identifiers name to '
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / variable / rule_010.py View on Github external
def __init__(self):
        case_rule.__init__(self, 'variable', '010', 'isVariable')
        self.solution = 'Change variable type name to '
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / generic / rule_007.py View on Github external
def __init__(self):
        case_rule.__init__(self, 'generic', '007', 'isGenericDeclaration')
        self.solution = 'Change generic name to '