ESLint 驼峰规则校验关闭
程序员文章站
2022-05-31 22:57:28
...
ESLint 作为一种代码规范,可以帮我们检查代码的格式和风格,大家能保持一种统一的风格有助于团队协作。ESLint 中文官网
1. 驼峰校验提示
因为后台接口使用下划线的方式,所以前端代码中也对应起来,但是这样驼峰校验就通过不了,场面一度十分尴尬
前端代码:
2. 临时解决方案:段落忽略校验
根据控制台编译错误提示,查询官网说明 http://eslint.cn/docs/rules/camelcase
Failed to compile.
./src/pages/goodspackage/tag/create/index.jsx
Line 40:11: Identifier 'category_id' is not in camel case @typescript-eslint/camelcase
Line 42:11: Identifier 'effective_time' is not in camel case @typescript-eslint/camelcase
Search for the keywords to learn more about each error.
将需要忽略的代码段添加如下代码即可
/* eslint-disable @typescript-eslint/camelcase */
3. 全局解决方案
.eslintrc.js
为 ESLint 全局配置rules
字段里面将 camelcase
属性去掉即可
参考官方文档 rules 说明:http://eslint.cn/docs/rules/