eslint config preset for aplus team
npm install @aplus-frontend/eslint-configeslint config preset for aplus frontend team.
``bash`
pnpm add @aplus-frontend/eslint-config -w
you write the following code in your .eslintrc.cjs file
`javascript
const { defineConfig } = require('eslint-define-config');
module.exports = defineConfig({
extends: ['@aplus-frontend/eslint-config']
});
``