Override Expression Expected Xnubilgaming Created January 17, 2022 20:54 Hello,Webstorm 2021.3.1, Emmylua 1.3.6.222Getting Expression Expected when using backticks. Is there a way to tell it to ignore this error? Code won't reformat with this error.
I am also facing this issue.
Could you share the complete code snippet (as text) the issue can be repeated with?
Here is a small block from my code, it is 4000 lines in total. This is for a FiveM server, logging vehicles for purchase by RP Players.
vehicles.lua :
Vehicles = {--- Compacts
['asbo'] = {
['name'] = 'Asbo',
['brand'] = 'Maxwell',
['model'] = 'asbo',
['price'] = 4000,
['category'] = 'compacts',
['hash'] = `asbo`, -- < ERROR
['shop'] = 'pdm',
},
['blista'] = {
['name'] = 'Blista',
['brand'] = 'Dinka',
['model'] = 'blista',
['price'] = 13000,
['category'] = 'compacts',
['hash'] = `blista`, -- < ERROR
['shop'] = 'pdm',
}
}
What plugin do you use for Lua syntax highlighting? EmmyLua? I'd suggest reporting the issue to the plugin vendor (https://github.com/EmmyLua/IntelliJ-EmmyLua/issues)
Alright, thank you. I have submitted an error with them as well.