
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@ariesclark/eslint-config
Advanced tools
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.
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.
To install the package, do this:
pnpm install -D eslint@9 typescript @ariesclark/eslint-config
Create an eslint.config.mjs config file, as shown below:
import { config, configs } 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. */
]
});
FAQs
An opinionated ESLint Configuration
The npm package @ariesclark/eslint-config receives a total of 163 weekly downloads. As such, @ariesclark/eslint-config popularity was classified as not popular.
We found that @ariesclark/eslint-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.