fmlint READMEFMLint is a static analysis tool for freemarker templating engine code in HTML files. FeaturesChecks if statement clauses are properly opened/closed and that they are correctly written e.g. [#if condition] not [if condition] (missing #). Validates template literals are correct e.g. {first_name} -> ${first_name} Checks for correctness of operators e.g. missing & for && or is like & & etc Known IssuesNot all problems are shown, in-process of building them all in! Release Notes0.0.26Elseif blocks are validated against their operations 0.0.24Now only runs when active editor is a html file 0.0.21Now using AST to build the tokens through parsing (originally used simple regex to bootstrap). 0.0.1Initial testing release of fmlink |