Skip to content

Releases: fullstacksjs/eslint-config

v13.3.1

13 Sep 14:29
9e3ac97

Choose a tag to compare

13.3.1 (2025-09-13)

Bug Fixes

v13.3.0

13 Sep 13:59

Choose a tag to compare

13.3.0 (2025-09-13)

Bug Fixes

  • make tsconfigRootDir optional in typescript config (047b825)

Features

  • add new playwright lint rules (7092f70)
  • add new react lint rules (2e9ed46)
  • add new tailwind lint rules (eccf7bd)

v13.2.2

18 Jul 11:34

Choose a tag to compare

13.2.2 (2025-07-18)

Bug Fixes

  • readme: remove $ from shell code blocks to prevent copy-paste errors (5409f1f)

v13.2.1

15 Jul 23:26

Choose a tag to compare

13.2.1 (2025-07-15)

Bug Fixes

  • cjs support for eslint-plugin-regexp (c9a6f01)

v13.2.0

07 Jul 17:49

Choose a tag to compare

13.2.0 (2025-07-07)

Features

v13.1.0

05 Jul 20:48

Choose a tag to compare

13.1.0 (2025-07-05)

Features

  • add support for various tailwind callees (837ee3d)

v13.0.0

01 Jul 23:57
c097d32

Choose a tag to compare

13.0.0 (2025-07-01)

Breaking Changes

  • Removed deprecated init function.
- 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
})

Thanks

@ShayanTheNerd
@amir-rahmanii

v12.4.2

01 Jul 23:25

Choose a tag to compare

12.4.2 (2025-07-01)

Bug Fixes

  • disable better-tailwindcss/multiline (2558bd3)
  • fix tailwind option (2ef9071)
  • remove @typescript-eslint/object-curly-spacing (#22) (2339f57)

v12.4.2-next.2

01 Jul 23:20
8d54e10

Choose a tag to compare

v12.4.2-next.2 Pre-release
Pre-release

12.4.2-next.2 (2025-07-01)

Bug Fixes

  • disable better-tailwindcss/multiline (8d54e10)

v12.4.2-next.1

01 Jul 23:07
ab5e686

Choose a tag to compare

v12.4.2-next.1 Pre-release
Pre-release

12.4.2-next.1 (2025-07-01)

Bug Fixes

  • fix tailwind option (ab5e686)
  • remove @typescript-eslint/object-curly-spacing (#22) (0a16f07)