Table of Contents

Code Quality - Code analysis

About

Code analysis is an application that scans code and reports :

The application performing code analysis is a linter (a parser/lexer program)

Example: Bad variable name writing

Bad name writing is a problem that occurs when the developer makes a mistake in the variable name.

Example:

Code Analysis Variable Unused Name Error

Because this language is dynamic (no variable and type declaration), it allows for the declaration of variables everywhere and will not create any problems when it runs.

Features

Documentation / Reference