
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@hrcd/eslint-config
Advanced tools
A comprehensive and opinionated ESLint Flat configuration designed to provide an optimal development experience with Vue, Nuxt and TypeScript projects, while supporting many other technologies.
.gitignore
integration - Automatically respects your .gitignore
files# ✨ Auto-detect
npx nypm install @hrcd/eslint-config
# npm
npm install @hrcd/eslint-config
# yarn
yarn add @hrcd/eslint-config
# pnpm
pnpm install @hrcd/eslint-config
# bun
bun install @hrcd/eslint-config
Create an eslint.config.js
file at the root of your project:
import { createConfig } from "@hrcd/eslint-config"
export default createConfig()
The configuration is opinionated but flexible. You can customize it to match your project's needs:
import { createConfig } from "@hrcd/eslint-config"
export default createConfig({
// Enable/disable features
typescript: true, // TypeScript support
vue: true, // Vue support
nuxt: true, // Nuxt support
// Define files to ignore
ignores: [
'dist',
'node_modules',
// Other patterns to ignore
]
})
This ESLint config includes optimized rules for projects using PNPM Catalog, the new feature that helps manage and organize packages in PNPM workspaces. It ensures proper dependency declarations, prevents hoisting issues, and maintains catalog structure consistency.
settings.json
:{
"eslint.validate": [
"javascript",
"typescript",
"vue",
"html",
"markdown",
"json",
"yaml"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
corepack enable
bun install
To start contributing, follow these steps:
feat/123
or fix/456
.pnpm run test
.Published under the APACHE license.
Made by @HugoRCD and community 💛
🤖 auto updated with automd (last updated: Thu Apr 03 2025)
FAQs
My personal eslint config
The npm package @hrcd/eslint-config receives a total of 141 weekly downloads. As such, @hrcd/eslint-config popularity was classified as not popular.
We found that @hrcd/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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.