eslint-config-tunnckocore
v8.2.2
Published
_late October 2024_
Downloads
716
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"]
}