ronanboiteau / NormEZ

Coding-style checker for Epitech students. This program analyzes your C source files for Epitech coding-style violations.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Misplaced space(s) around '=' sign.

valentinbreiz opened this issue · comments

If the '=' is in a string it should not be detected as a coding style error.

Unfortunately NormEZ doesn't use a real parser and instead checks for coding style mistakes with a regex parser. Without an advanced parser, NormEZ can't accurately make the difference between strings/comments & code.