Home >Development Tools >VSCode >A brief discussion on how to build an eslint development environment in vscode
This article will share with you how to build an eslint development environment based on vscode. It has a certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone
[Recommended learning: "vscode tutorial"]
Basic environment:
vscode v1.0.0
eslint v2.8.0
mac
If you don’t have vscode yet, you can download it from here
to install vscode The required eslint plug-in
plugin address ishere
mkdir vsc-demo && cd vsc-demoNew file
touch app.jsOpen vscode, let’s try to write some code
var num = 1; const array = []
npm install eslint -gAfter installation, you can view our version
eslint --v // v2.8.0Use eslint to create rules
eslint --initWe chose the standard eslint rule
Programming Video! !
The above is the detailed content of A brief discussion on how to build an eslint development environment in vscode. For more information, please follow other related articles on the PHP Chinese website!