- Tags:
- analysis
Code Analyzer: Customization
General Preferences
The Preferences button in the toolbar opens a dialog containing all preferences for the Code Analyzer. There you can enable and disable all rules of a certain severity, you can choose colors for the results, and there are many preferences that control the behavior of individual rules.
Rule-specific Preferences
The rule-specific preferences are located in the Rules subfolder. Two preferences can be found for every rule: Enabled/disabled and the severity score. Some rules have additional integer or boolean preferences like thresholds.
Exporting and Importing Preference Profiles
Using the buttons in the preferences dialog one can export these preferences to an XML file or import them. This can be used for creating profiles that stretch across multiple machines. Just set the desired preferences on one machine, export them to a file, distribute this file, and import it.
Class Options
There are cases in which you might want to customize the Code Analyzer for parts of your code only. The Code Analyzer provides a way to set options per class. You can exclude a class from being checked by certain rules. Also you can declare a class to be a library or a non-library class. All class-wide options for the Code Analyzer are set in the note clause (after the
Library and Non-Library Classes
If the programmer uses the default values then a rule checks all classes. But a rule can be defined (hard-coded) not to check either library or non-library classes. How does the Code Analyzer now know which classes are library classes and which classes are non-library classes? This is defined by the user. If, for a certain class, the user does not define anything then the class will be analyzed in every case. Only if the user declares a class to be a library class then this class will not be checked by a rule that has disabled checking library classes. The same goes for classes that are declared as non-library.
- To declare a class to be a library class add
ca_library : "true" to the (top or bottom) indexing clause. - To declare a class to be a non-library class add
ca_library : "false" to the (top or bottom) indexing clause.
Classes Ignored by Rules
You can declare a class to be ignored by certain rules, which is equivalent to saying that some rules shall be disabled for a class.
To let a class be ignored by certain rules, add the