ESLINT 规范下 VUE 常见报错

一、 换行错误


  • (1)换行过多错误

    Too many blank lines at the end of file

    解析:结尾处换行超过1行


  • (2)结尾无换行错误

    Newline required at end of file but not found

    解析:结尾处没有新的换行


  • (3)禁止换行错误

    More than 1 blank line not allowed

    解析:不允许换行超过1次, 只能有一行换行


二、缩进错误


  • (1)冒号后缺少空格错误

    Missing space before value for key 'render'

    解析:丢失了空格在key的冒号后面


  • (2)行尾多余空格错误

    Trailing spaces not allowed

    解析:当前行末尾处有多余的空格


  • (3)首行缩进错误

    Expected indentation of 8 spaces but found 10

    解析:当前行希望是前面有8个空格缩进但是有10个空格缩进


  • (4)() 前缺少缩进错误

    Missing space before function parentheses

    解析:方法简写的()前面没有空格


  • (5){} 前缺少缩进错误

    Missing space before opening brace

    解析:方法简写的 {} 前面没有空格


三、引号错误


  • (1)单引号错误

    Strings must use singlequote

    解析:必须是单引号


  • (2)结尾逗号错误

    Unexpected trailing comma

    解析:结尾处多了一个逗号


  • (3)结尾分号错误

    Extra semicolon

    解析:结尾处多了分号


四、定义错误


  • (1)定义未使用错误

    Login' is defined but never used

    解析:定义了Login, 但是没有使用到


.

结语:有错就得改,挨打要立正;

.

Logo

前往低代码交流专区

更多推荐