在camelcase中针对区域设置代码的ESLint警告

时间:2017-05-24 20:42:51

标签: javascript ecmascript-6 eslint

我使用ESLint来提高代码质量,但我不需要警告某些声明,例如语言环境代码en_US

ESLint warning for camelcase rule

如果我在评论中添加一些配置,就像the document告诉

一样
/* eslint camelcase: ["error", "properties": ["never"]] */
import zh_TW from 'moment/locale/zh-tw';

ESLint仍在警告camelcase问题。在这种情况下如何关闭警告?

1 个答案:

答案 0 :(得分:1)

我对配置行有疑问:

Doc says:
/* eslint camelcase: ["error", {properties: "never"}] */
But you did this:
/* eslint camelcase: ["error", "properties": ["never"]] */

(编辑:Buuut似乎没有什么区别(见评论)。问题必须在其他地方)

此外,我不确定你是否得到了@ vahdet的建议:

import { zh_TW as zhTw } from 'moment/locale/zh-tw';
               ^^^^^^^

然后您在代码中使用zhTw而不是zh_TW,并且不需要排除linter:)