源代码:for循环中使用i++;
操作符++不能被使用。
…一脸懵逼,不都是这么写的吗??什么鬼哟~~
然后去查了一下eslint 官网 果然有鬼:https://eslint.org/docs/rules/no-plusplus
disallow the unary operators ++ and – (no-plusplus)
Because the unary ++ and – operators are subject to automatic semicolon insertion, differences in whitespace can change semantics of source code。
由于一元++和-运算符会自动插入分号,因此空格之间的差异可能会更改源代码的语义
修改为:
完事儿 提交代码成功~