Skip to content

IDL Problem Code 46 with alias unclosed-quote

Want to disable me? Check out the configuration guide to learn more.

Documentation Best Practice

This problem indicates that there's an opportunity to improve the documentation for your code.

This helps make sure the extension can properly detect types, provide a better user experience, and ensures other users can be successful with code that you write.

Want to automate documentation generation? Learn about comment style and AutoDoc here.

This error occurs when a single-or-double quote string does not have a closing quote.

Here's an example of this error:

idl
a = 'The meaning of life is + strtrim(42)
;   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unclosed quote

Which can be fixed by reducing to a single statment:

idl
a = 'The meaning of life is' + strtrim(42)
;   ^^^^^^^^^^^^^^^^^^^^^^^^ OK!-

Licensed under MIT.