sqflint icon indicating copy to clipboard operation
sqflint copied to clipboard

Provides basic syntax error checking for SQF language.

Results 6 sqflint issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/52288074/103174193-fda90800-4857-11eb-907b-df5053ef60c9.png) I am not experienced with java, however I believe this means you are not importing the commons jar correctly? 0.10.1 works fine.

"message": "Expected \"/*\", \"//\", \";\", comment, end of line, or whitespace but \"/\" found.", example class: ```` class Menu_Frame : RscFrame { colorText[] = MENU_TEXT_COLOR; colorBackground[] = MENU_BG_COLOR; sizeEx =...

Functions declared through a class with a folder name are not recognized as functions, functions are in folders that are located in the folder "functions", called according to the principle...

This is fine: ```sqf while { true } do { }; ``` This however, produces an error: ```sqf _condition = { true }; while _condition do { }; ``` Screenshot:...

```sqf with missionNamespace do { //anything }; ``` This produces a lint error, yet syntax is correct.

bug

Empty statements are treated as errors: ```sqf _x = { ; }; ``` The error was initially caused by this: ```sqf #define DEBUG_LOG_TRACE #define Debug_Log_Impl(mode, message) (diag_log format ['mode: %1',...

bug