How to reduce the format check level? of npm run dev It's too strict now.

can be build on windows,
but not on linux.
reports all format errors, such as missing spaces

.

disable the check of ESLint try
if you are installing a project with vue init webpack project, it will prompt you whether to use eslint to check the code, you can choose n, if you accidentally go all the way y, then wait for the installation to be completed, find an index.js
which has a configuration item
useEslint in the config directory, set it to false, and there are comments explaining this parameter on
.
eslint is an artifact to correct your bad habit of writing code. Good luck.


codeshelper.com/q/1010000004524390

Menu