Releases: fullstacksjs/eslint-config
Releases · fullstacksjs/eslint-config
v13.3.1
v13.3.0
v13.2.2
v13.2.1
v13.2.0
v13.1.0
v13.0.0
13.0.0 (2025-07-01)
Breaking Changes
- Removed deprecated
initfunction.
- import { init } from '@fullstacksjs/eslint-config';
+ import { defineConfig } from '@fullstacksjs/eslint-config';
- export default init();
+ export default defineConfig({
+ tailwind: {
+ entryPoint: 'PATH/TO/CSS'
+ }
+ });- Dropped support for node 18
- Removed
no-return-await - Upgrade to
eslint-plugin-jest@29 - Upgrade to
eslint-plugin-cypress@5
Features
Added tailwind v4 support
To enable Tailwind CSS in your project, specify the path to your CSS file in the module configuration:
export default defineConfig({
tailwind: { entryPoint: './src/global.css' },
})Added gitignore support
By default, FullstacksJS checks for a .gitignore file at the root of the project. If the file exists, it will be used automatically. You can override this behavior by updating the configuration.
export default defineConfig({
gitignore: './packages/acme/.gitignore', // use `false` to disable
})