Package detail

eslint-config-tunnckocore

tunnckoCore113MIT8.2.3

late October 2024

readme

eslint-config-tunnckocore

late October 2024

It is not ESLint v9 compatible yet, we waiting on Airbnb and some other plugins!

It has Prettier, Unicorn, Airbnb, React, Astro, Tailwind, Node, and Import plugins configured, it also has support for Hela Workspaces monorepos.

Usage

Include in .eslintrc.cjs

module.exports = require('eslint-config-tunnckocore/eslint.cjs');

And in .prettierrc.cjs

module.exports = require('eslint-config-tunnckocore/prettier.cjs');

and optionally TypeScript

{
  "$schema": "https://json.schemastore.org/tsconfig",
  "extends": ["eslint-config-tunnckocore/tsconfig.json"],
  "include": ["**/*.ts", "**/*.tsx"],
  "exclude": ["node_modules", "dist"]
}