Releases: yext/eslint-config
Releases · yext/eslint-config
v1.0.2
v1.0.1
What's Changed
- Update CODEOWNERS by @EmilyZhang777 in #8
- Upgrade babel/traverse to version 7.24 to fix vulnerability by @Fondryext in #9
- Upgrade @babel/plugin-transform-runtime to 7.25.9 by @popestr in #10
New Contributors
- @EmilyZhang777 made their first contribution in #8
- @Fondryext made their first contribution in #9
- @popestr made their first contribution in #10
Full Changelog: v1.0.0...v1.0.1
v1.0.0
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'
]
}