@ariesclark/eslint-config v2.1.0
ariesclark/eslint-config
This package requires ESLint v9 or later and is incompatible with earlier versions. If you're using an older version of ESLint, please upgrade to the latest version or use version 1.x of this package.
Usage
Applying the ruleset to your project is quick and easy. You install the package, then create an eslint.config.mjs file and select an appropriate project profile.
1. Install the package
To install the package, do this:
pnpm install -D eslint@9 typescript @ariesclark/eslint-config
2. Configure the linter
Create an eslint.config.mjs config file, as shown below:
eslint.config.mjs (ESLint v9+)
import { configs, config } from "@ariesclark/eslint-config";
import tailwindcss from "@ariesclark/eslint-config/tailwindcss";
/* You can import any subset by like below: */
// import react from "@ariesclark/eslint-config/react";
import nextjs from "@ariesclark/eslint-config/nextjs";
export default config({
extends: [
/***
The recommended configuration includes the following by default:
Promise, TypeScript, Import, Unicorn and Prettier.
*/
...configs.recommended,
// You can selectively include any subsets.
// ...sortKeys, /* Previously enabled by default, now opt-in. */
// ...node,
// ...browser,
...tailwindcss,
// ...react,
...nextjs /* includes: React subset. */
]
});
8 months ago
8 months ago
8 months ago
8 months ago
9 months ago
12 months ago
12 months ago
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago