Language - Linter (Code Analysis, Validation)
Table of Contents
About
A linter is a tool that:
- statically analyze code
- finds problems in them
- may enforce a coding style.
They are also used for syntax highlighting
Articles Related
Implementation
A linter is basically a parser that traverse and analyze the parse tree to:
- find problem (type, …)
- etc …