方法一:javascript
打開eslint的配置文件.eslintrc.jsjava
rules: { // allow async-await 'generator-star-spacing': 'off', // allow debugger during development 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'indent': 'off' }
在rules最後添加'indent',並設置爲off或0,async
indent是eslint的一個檢查規則,eslint經常使用的有十幾個規則,不想用那個規則檢查,就設置該規則爲off,就能夠了。spa
方法二:debug
打開eslint的忽略文件.eslintignoreeslint
不想校驗什麼文件,就寫進去。blog
假如不想校驗全部的js文件,寫上*.js就能夠了。ip