3.1.2 • Published 6 months ago

eslint-config-goodbyenjn v3.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

eslint-config-goodbyenjn

个人使用的一套 ESLint 规则。基于 eslint-config-alloy@antfu/eslint-config,并增加了 eslint-plugin-ieslint-plugin-react-hooks 插件。

目前已适配 ESLint flat config。

使用方法

npm install --save-dev eslint eslint-config-goodbyenjn
# or
pnpm add -D eslint eslint-config-goodbyenjn
# or
yarn add -D eslint eslint-config-goodbyenjn

在你的项目根目录下创建一个 eslint.config.js 文件,并将以下内容复制进去:

import { withGoodbyeNJNConfig } from "eslint-config-goodbyenjn";

export default [...withGoodbyeNJNConfig()];

// or

const { withGoodbyeNJNConfig } = require("eslint-config-goodbyenjn");

module.exports = [...withGoodbyeNJNConfig()];

本配置会根据 package.json 文件中是否存在 reactvuetypescript 依赖项来自动启用对应的规则。

你也可以手动覆盖相关配置,例如:

import { withGoodbyeNJNConfig } from "eslint-config-goodbyenjn";

export default [
    ...withGoodbyeNJNConfig({
        // 禁用 TypeScript 相关规则
        typescript: false,

        // 启用 React 相关规则
        react: {
            // 手动指定 React 版本
            version: "18",

            // 覆盖 React 相关规则
            overrides: {
                "react/react-in-jsx-scope": "off",
            },
        },

        // 启用 Vue 相关规则
        vue: true,
    }),
];

本配置带类型定义,所以在进行配置时会有智能提示。

与 Prettier 配合使用

npm install --save-dev prettier
# or
pnpm add -D prettier
# or
yarn add -D prettier

在你的项目根目录下创建一个 prettier.config.js 文件,并将以下内容复制进去:

import { withGoodbyeNJNConfig } from "eslint-config-goodbyenjn/prettier";

export default withGoodbyeNJNConfig({
    // custom configs
});

// or

const { withGoodbyeNJNConfig } = require("eslint-config-goodbyenjn/prettier");

module.exports = withGoodbyeNJNConfig({
    // custom configs
});
3.1.2

6 months ago

3.1.1

8 months ago

3.1.0

9 months ago

3.0.1

10 months ago

3.0.0

10 months ago

2.0.3

1 year ago

2.0.2

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.2.0

2 years ago

1.2.1

2 years ago

1.1.1

2 years ago

1.1.2

2 years ago

1.1.0

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago