美文网首页
ESLint:Expected indentation of 2

ESLint:Expected indentation of 2

作者: 闹闹也会有脾气 | 来源:发表于2018-04-24 23:37 被阅读0次

ESLint:Expected indentation of 2 spaces but found 4

修改eslint 配置文件 .eslintrc.js

rules: {
   ...
    // 缩进
    // 'indent': 2,
    // 'indent': [2, 2, {"SwitchCase": 1}],
    "indent": [1, 2],
   ...
 }

官方文档rule说明:http://eslint.org/docs/2.0.0/...

相关文章

网友评论

      本文标题:ESLint:Expected indentation of 2

      本文链接:https://www.haomeiwen.com/subject/pqnslftx.html