Skip to content

Releases: Codit/eslint-config-codit

v1.0.6

11 Jun 12:37
Compare
Choose a tag to compare

🐛 warn user about explicit use of any

v1.0.5

11 Jun 12:33
Compare
Choose a tag to compare

🐛 changed plugin version

v1.0.4

10 Jan 10:13
Compare
Choose a tag to compare

🔧 config updates

v1.0.3

08 Jan 20:58
Compare
Choose a tag to compare

🔧 config updates

v1.0.2

08 Jan 09:51
Compare
Choose a tag to compare

🐛 🔧 fixes false positives for require await

v1.0.1

07 Jan 20:45
Compare
Choose a tag to compare

⬆️ package upgrades

TypeScript Support

07 Jan 16:17
15738ab
Compare
Choose a tag to compare

v1.0.0 Support for TypeScript

Breaking change.

This release removes FlowType in favor of TypeScript from the main config.
It's also less strict compared to the previous release.
We also added the Prettier config to the package.

Migrating from 0.x.x

Since the main config will preload all needed plugins and configs for TypeScript & Prettier, you will need to use a more controlled configuration if you're using this config with FlowType and / or Lodash. See below for an example.

"eslintConfig": {
    "extends": [
      "unbrace/core",
      "unbrace/flowtype",
      "unbrace/lodash",
      "unbrace/react"
    ]
  }