Skip to content

Releases: yext/eslint-config

v1.0.2

19 Nov 19:02
326a8e8
Compare
Choose a tag to compare

What's Changed

  • Upgrade @babel/preset-env to 7.26.0 to resolve vulnerability by @popestr in #11

Full Changelog: v1.0.1...v1.0.2

v1.0.1

18 Nov 21:43
f152271
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.0...v1.0.1

v1.0.0

30 Sep 18:30
0174471
Compare
Choose a tag to compare

This library provides extensible ESLint configurations with the linting rules that are used across Yext repos. There are two exported configs: the default export is a config for Typescript repos, and the “typescript-react” export is a config for repos using React with Typescript.

Install the configs with

npm install @yext/eslint-config

You can use these configs when configuring ESLint as follows. For Typescript repos,

{
  extends: [
    '@yext/eslint-config'
  ]
}

For repos using React with Typescript,

{
  extends: [
    '@yext/eslint-config/typescript-react'
  ]
}