Property name declared with quotes
objectscriptQuality release
Id
OS0086
Rule type
Code Smell
Severity
Info
Info
SQALE characteristic
- Maintainability
- Readability
Remediation function
Constant/issue
Remediation cost
30min
Don't use quoted names in classes to avoid confusion.
Noncompliant Code Example
Next declaration is valid, but can be confusing when it is used on the code.
Property "Hello_World";
Compliant Solution
Next declaration is preferred for clarity.
Property Hello_World;