eslint-config-weseek

2.1.1 • Public • Published

eslint-config-weseek

npm version

Shareable configurations of ESLint by WESEEK, Inc. based on eslint-config-airbnb.

Usage

Basics

http://eslint.org/docs/user-guide/configuring#using-the-configuration-from-a-plugin

We export following ESLint configurations for your usage.

Entry Points

  • weseek - Our default ESLint rules based on airbnb-base.
    • Requirements
      • @babel/core
      • @babel/eslint-parser
      • eslint-plugin-import
    • Usage:
      yarn add -D eslint-config-weseek @babel/core @babel/eslint-parser eslint-plugin-import
      extends: [
        'weseek',
      ],
      
  • weseek/react - An additional rule sets which are based on airbnb/rules/react.
    • Requirements
      • Requirements list of weseek endpoint
      • eslint-plugin-react
      • eslint-plugin-react-hooks
    • Usage:
      yarn add -D eslint-config-weseek @babel/core @babel/eslint-parser eslint-plugin-import eslint-plugin-react eslint-plugin-react-hooks
      extends: [
        'weseek',
        'weseek/react',
      ],
      
  • weseek/typescript - An additional rule sets for TypeScript.
    • Requirements:
      • Requirements list of weseek endpoint except for @babel/core and @babel/eslint-parser
      • eslint-import-resolver-typescript
      • @typescript-eslint/eslint-plugin
      • @typescript-eslint/parser
    • Usage:
      yarn add -D eslint-config-weseek eslint-plugin-import eslint-import-resolver-typescript @typescript-eslint/eslint-plugin @typescript-eslint/parser
      extends: [
        'weseek',
        'weseek/typescript',
      ],
      
  • weseek/typescript-next - An additional rule sets for Next.js. This includes both of weseek/react and weseek/typescript
    • Requirements:
      • Requirements lists of weseek, weseek/react and weseek/typescript endpoint except for @babel/core and @babel/eslint-parser
    • Usage:
      yarn add -D eslint-config-weseek eslint-plugin-import eslint-plugin-react eslint-plugin-react-hooks eslint-import-resolver-typescript @typescript-eslint/eslint-plugin @typescript-eslint/parser
      extends: [
        'weseek',
        'weseek/typescript-next',
      ],
      

Package Sidebar

Install

npm i eslint-config-weseek

Weekly Downloads

645

Version

2.1.1

License

MIT

Unpacked Size

11.3 kB

Total Files

11

Last publish

Collaborators

  • yuki-takei
  • itizawa