|-转 Identifier * is not in camel case - 代码规范性问题
最近为了规范化代码风格,项目组内启用了VSCode插件eslint,了解eslint的同学都知道,它是在 ECMAScript/JavaScript 代码中识别和报告模式匹配的工具,给出一些代码规范建议,其目的是为了保证代码的一致性和避免一些可能出现的错误。在许多方面,它和 JSLint、JSHint 相似。比如,在书写下面的代码时会提示警告(见下图中波浪线):
其中的错误信息是json字符串结构,具体内容如下:
{
"resource": "/g:/project/*/main.js",
"owner": "eslint",
"code": {
"value": "camelcase",
"target": {
"$mid": 1,
"external": "https://eslint.org/docs/rules/camelcase",
"path": "/docs/rules/camelcase",
"scheme": "https",
"authority": "eslint.org"
}
},
"severity": 8,
"message": "Identifier indexURL_test is not in camel case.",
"source": "eslint",
"startLineNumber": 91,
"startColumn": 7,
"endLineNumber": 91,
"endColumn": 20
}
意思就是没有使用驼峰命名法,根据提示建议,修改如下:...
浏览更多内容请先登录。
立即注册
更新于:2022-10-27 18:43:27
相关内容
Yii中DataProvider的使用
win7安装Redis遇到的问题
在window系统上安装redis服务-Invalid argument during startup: Failed to...
Uncaught TypeError: $(...).modal is not a function at Function.m...
解决编译时Could NOT find UV (missing: UV_LIBRARY UV_INCL...
Chrome浏览器:The request client is not a secure context and the reso...
推荐内容