eslint-config-uln
v7.0.0
Published
UlanaXY's recommended config for eslint
Maintainers
Readme
eslint-config-uln
Installation
- Installation
yarn add -D eslint@^8.57.0 eslint-config-uln - create/update eslint.config.mjs
import ulnConfig from 'eslint-config-uln'; /** @type {import('eslint').Linter.Config[]} */ export default [ ...ulnConfig, { languageOptions: { parserOptions: { project: true, tsconfigRootDir: import.meta.dirname, }, }, }, ] - Add script to package.json
"scripts": { "lint:js": "eslint ./src --max-warnings=0", }
Publishing
- Be repo Maintainer.
- Merging branch develop to master via Merge Request.
- Switch locally to main branch
- run
npm publish - after publication is completed make sure that everything is pushed to git
- merge main to develop
- done
