-
Notifications
You must be signed in to change notification settings - Fork 301
ModuleOptionsNotSpecifiedFirstInspection
Max Dörner edited this page Jun 2, 2019
·
3 revisions
Description: Module options should be specified first
Type: CodeInspectionType.CodeQualityIssues
Default severity: CodeInspectionSeverity.Suggestion
This inspection finds code modules where options are not specified first in the module's declarations section.
Module options are not specified first in a module like this:
Option Compare Database
Private foo As Integer
Option Explicit
Private bar As String
Option Private Module
Option Base 0
Module options affect how the code in a module works and compiles; specifying them first in the module improves maintainability.
This inspection does not have any quickfix implemented in v1.2; this may change in future versions.
rubberduckvba.com
© 2014-2021 Rubberduck project contributors
- Contributing
- Build process
- Version bump
- Architecture Overview
- IoC Container
- Parser State
- The Parsing Process
- How to view parse tree
- UI Design Guidelines
- Strategies for managing COM object lifetime and release
- COM Registration
- Internal Codebase Analysis
- Projects & Workflow
- Adding other Host Applications
- Inspections XML-Doc
-
VBE Events