@npm-questionpro/wick-ui-eslint-config-frontend
v0.0.3
Published
Shared ESLint config for QuestionPro React Apps
Readme
ESLint configuration shared across all QuestionPro projects
How to setup eslint-config?
1. Install the eslint-config-wick-ui NPM package
npm i -D @npm-questionpro/wick-ui-eslint-config-frontend2. Install peer dependencies
npm i -D eslint typescript-eslint3. Setup ESLint
Create a file eslint.config.js.
import wickUiEslintConfig from '@npm-questionpro/wick-ui-eslint-config-frontend'
import tsEslint from 'typescript-eslint'
export default tsEslint.config(...wickUiEslintConfig)Tip: You can use the overrides field to override any configuration specific to your project.
Refer here for more details: https://eslint.org/docs/latest/extend/shareable-configs
