3.1.1 • Published 9 months ago
@untile/eslint-config v3.1.1
Requirements
- Node.js >= 20
- ESLint >= 9
Installation
With npm:
npm install eslint @untile/eslint-config --save-devOr using yarn:
yarn add eslint @untile/eslint-config -DSetup
Create an eslint.config.js file with the following:
const eslintUntileConfig = require('@untile/eslint-config');
module.exports = eslintUntileConfig;Usage
Add the following script to your package.json:
{
"scripts": {
"lint": "eslint ."
}
}and run the linter with:
yarn lint