Base ESLint rules with support for linting Vitest test files.
This library | ESLint |
---|---|
2.x.x | ^9 |
1.x.x | ^8 |
-
npm
npm i -S @babybeet/eslint-config-base-with-vitest
-
pnpm
pnpm i -S @babybeet/eslint-config-base-with-vitest
-
yarn
yarn add @babybeet/eslint-config-base-with-vitest
eslint.config.js
file
import baseConfig from '@babybeet/eslint-config-base-with-vitest';
/**
* @type {import('eslint').Linter.FlatConfig[]}
*/
export default [
...baseConfig.map(config => ({
...config,
files: ['src/**/*.ts'], // Only lint Typescript files under `src` directory.
rules: {
...config.rules
// Your rule overrides go here
}
}))
];
If your package.json
file has "type": "module"
, you can change the above require
and module.exports
to import
and export default
respectively.
.eslintrc.json
file
{
"$schema": "https://json.schemastore.org/eslintrc.json",
"root": true,
"ignorePatterns": ["!**/*"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
// It's recommended to use an override to not globally change your ESLint configuration.
"overrides": [
{
"files": ["*.ts"],
"extends": ["@babybeet/eslint-config-base-with-vitest"],
"rules": {
// Your rule overrides go here
}
}
]
}