eslint-plugin-harmony

eslint config that works in harmony with different IDEs

Usage no npm install needed!

<script type="module">
  import eslintPluginHarmony from 'https://cdn.skypack.dev/eslint-plugin-harmony';
</script>

README

eslint-plugin-harmony

NPM version NPM downloads Build status

semantic-release

Visual Studio Code phpStorm Atom

A eslint config styles package that work across IDEs.

Design Principles

There are several configurations available in this package. Although they are different as they are designed for different programers, here are the principles that they all follows:

  • They are designed to be used by team
  • Each team member can use one of the supported IDE
  • The formatter available on each IDE should work with each configuration
  • Code should look well and consistent on each IDE with folding
    • so that when you stop by your team member's cube, the code looks the same.
  • Thrive for easy to write (with fewest keystrokes) while keeping the code clean

Supported IDE

Installation

You'll first need to install ESLint:

npm install --save-dev eslint

Next, install eslint-plugin-harmony:

npm install --save-dev eslint-plugin-harmony

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-harmony globally.

Usage

To use the eslint style, extends from one of the following:

{
  "extends": "plugin:harmony/recommended",
  "extends": "plugin:harmony/latest",
  "extends": "plugin:harmony/es5",
  "extends": "plugin:harmony/es5-strict",
  "extends": "plugin:harmony/ts-prettier", // experimental
  "extends": "plugin:harmony/ts-recommended", // or use overrides
  "extends": "plugin:harmony/ts-recommended-type-check", // or use overrides
}

TypeScript

The TypeScript style is extended from @typescript-eslint/eslint-plugin.

They are adjusted to the style in harmony. Also, the configuration are simplified.

Since you will likely to have some JavaScript files in your TypeScript project (e.g. jest.config.js, webpack.config.js, etc), it is recommended to use the overrides.extends feature in eslint to support mixed environment:

{
  "extends": [
    "plugin:harmony/recommended"
  ],
  "overrides": [
    {
      "files": [
        "*.ts",
        "*.tsx"
      ],
      "extends": [
        "plugin:harmony/ts-recommended"
      ]
    }
  ]
}

Note that for ts-recommended-type-check you still need to specify parserOptions.project.

{
  "extends": [
    "plugin:harmony/recommended"
  ],
  "overrides": [
    {
      "files": [
        "*.ts",
        "*.tsx"
      ],
      "extends": [
        "plugin:harmony/ts-recommended-type-check"
      ],
      "parserOptions": {
        "project": "tsconfig.json"
      }
    }
  ]
}

For more information, please check out @typescript-eslint/eslint-plugin.

JetBrains IDE

After you import the settings, you need to use them in the setting:

setting

You also need to change your language version appropriately:

language version

Contribute

yarn
yarn bootstrap