Stop Vs Code automatic parsing

1

I'm not sure what to do,

It starts an automatic parsing of the files.

Parsing file:///var/www/html/jvt.org.br/wp-content/plugins/amazon-s3-and-cloudfront/vendor/Aws3/Aws/data/ecs/2014-11-13/waiters-2.json.php

It opens the output automatically and does the above.

How do I get this setting? I already searched the web and found nothing about it.

    
asked by anonymous 30.11.2018 / 13:52

1 answer

0

I found the answer on the stack in English

Turn off PHP validation: settings.json

  

// Place your settings in this file to overwrite default and user settings.   {   "php.validate.enable": false   }   Use comma separators to overwrite multiple default settings: settings.json.

     

// Place your settings in this file to overwrite default and user settings.   {   "php.validate.enable": false,   "files.trimTrailingWhitespace": true,   "editor.autoClosingBrackets": false,   "editor.wordWrap": true   }

After adding these settings the vs code stops automatically opening the output to parse the files.

    
30.11.2018 / 14:36