APIGEE script error

Not applicable

I have a java script file with near about 1000 lines. when i am trying to add some code in that file, i am getting an error like 'Too many errors (99% scanned)' though my code is error free. can anyone suggest me why i am getting this error ??

3566-untitled.jpg

0 1 264
1 REPLY 1

Hi @vikram_sherigar,

These are not error messages, these are Javascript Linter messages.

They will not result in failing your javascript execution, but they are meant for more standardisation of code and best practices.

For example if you miss a ; after a statement javascript does not give any error but linter will show an error or warning saying ; missing.

For more information on javascript linters please check What are Javascript Linters?

Hope this help!