Code verification (organization) when the vue project closes the code submission

Endowment Links - Other Blogger Articles - Records

The vue project closes code verification when submitting code.
Vue Vue projects generally have a verification when submitting code. General submission requires git commit -m "" --no-verify to skip verification. I don’t want to enter –no every time I submit -verify can be configured as follows

1. Find .eslintignore in the root directory of the project and write the following configuration

build/*.js
src/assets
public
dist
src/

insert image description here

Guess you like

Origin blog.csdn.net/qq_38881495/article/details/132244312