This package provides all-purpose, extensible ESLint config for ES2025+
syntax.
With an emphasis on readability and counterchecks against implicit code flaws.
For Windows machines:
- Git with Unix tools โ๏ธ
npm config set script-shell "C:\\\Program Files\\\Git\\\bin\\\bash.exe"
npm config ls -l | grep shell
npm install eslint-config-ultra-refined --save-dev
Install peer dependencies manually if needed.
You will see the prompt in the shell output upon installation.
In eslint.config.js
file:
import ultraRefined from 'eslint-config-ultra-refined';
export default [
...ultraRefined,
// your modifications
{
ignores: ['dist'],
rules: {
// your modifications
},
},
];