@typescript-eslint/naming-convention @emotion 样式文件的自定义配置

glo*_*glo 5 typescript eslint

在我维护的设计系统中,我们使用修改后的 BEM 格式来命名导出的 @emotion/css JSS 样式。

语法看起来像这样:

Selector_descendant___modifier
Run Code Online (Sandbox Code Playgroud)

例如(伪代码):

// header.styles.ts
export const Header_container___isFlex = css`
  display: flex;
  flex: 1;
`;
Run Code Online (Sandbox Code Playgroud)

当然,@typescript-eslint/naming-convention 不喜欢这种语法。我想知道,是否有一种方法可以创建自定义规则以允许此语法仅在 *.style.ts 文件内使用?或者如果失败了,我们是否可以添加某种额外的自定义规则配置到这个 eslint 插件中,以强制执行此语法?

ban*_*udu 12

这个问题可以分为两部分:

  1. 如何为不同的文件提供两套规则?
  2. 如何自定义 @typescript-eslint/naming-convention 规则来支持我的自定义格式?

ESLint多套规则:

从 eslint v4.1.0 开始,您可以基于 glob 模式创建配置,文档:https ://eslint.org/docs/user-guide/configuring/configuration-files#configuration-based-on-glob-patterns

上面链接中的示例:

{
  "rules": {
    "quotes": ["error", "double"]
  },

  "overrides": [
    {
      "files": ["bin/*.js", "lib/*.js"],
      "excludedFiles": "*.test.js",
      "rules": {
        "quotes": ["error", "single"]
      }
    }
  ]
}
Run Code Online (Sandbox Code Playgroud)

@typescript-eslint/naming-convention 的自定义格式

您可以从 @jsejcksn 的评论中找到该文档:https://github.com/typescript-eslint/typescript-eslint/blob/87cfc6ad3e3312d7b6f98a592fb37e69d5d6880a/packages/eslint-plugin/docs/rules/naming-convention.md

像这样的东西:

{
  '@typescript-eslint/naming-convention': ['error', {
      selector: 'variableLike',
      format: null,
      custom: {
        regex: '^[A-Z]\\w*_\\w+___\\w+$',
        match: true
      }
  }]
}
Run Code Online (Sandbox Code Playgroud)

最终解决方案:

module.exports = {
  rules: {
    '@typescript-eslint/naming-convention': ['error', {
      selector: 'variableLike',
      leadingUnderscore: 'allow',
      trailingUnderscore: 'allow',
      format: ['camelCase', 'PascalCase', 'UPPER_CASE']
    }],
  },
  overrides: [{
    files: ['**/*.style.ts'],
    rules: {
      '@typescript-eslint/naming-convention': ['error', {
        selector: 'variableLike',
        format: null,
        custom: {
          regex: '^[A-Z]\\w*_\\w+___\\w+$',
          match: true
        }
      }]
    }
  }]
}
Run Code Online (Sandbox Code Playgroud)

更改正则表达式以适合您的实际情况。