
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@mulekick/eslint-config-muleslint
Advanced tools
Mulekicks's base JS / TS / React / Node ESLint config, following my personal standards 😁
I use the ESLint extension on Visual Studio code in my day-to day coding activities. I find ESLint to be of a great help to write some proper, clean-cut ES6 code, avoid errors and enforce best practices. Here is the configuration I use to lint my *.js
, *.ts
, *.jsx
and *.tsx
files, available as a shareable config.
@mulekick/eslint-config-muleslint
installed as a project dev dependency.eslint.config.js
file included in the project's root folder :// eslint-disable-next-line n/no-unpublished-import, n/no-missing-import
import muleslint from "@mulekick/eslint-config-muleslint";
// eslint-disable-next-line n/no-extraneous-import
import typescript from "typescript-eslint";
// .eslintignore doesn't work with flat configs
export default typescript.config(...muleslint, {
ignores: [ `**/node_modules/**`, `**/dist/**`, `**/build/**` ]
});
npx install-peerdeps --dev @mulekick/eslint-config-muleslint
.eslint.config.js
file in your project's root folder.configuration | description |
---|---|
eslint.configs.recommended | core eslint recommended configuration |
stylistic.configs.recommended | recommended configuration for stylistic-related eslint rules |
typescript.configs.strictTypeChecked | typescript-eslint strict configuration with type-checked linting enabled 🤖 |
import.flatConfigs.recommended | recommended configuration from the eslint import plugin |
n.configs['flat/recommended'] | recommended configuration from the eslint node plugin |
react.configs.flat.recommended | recommended configuration from the eslint react plugin |
security.configs.recommended | recommended configuration from the eslint security plugin |
<script>
tags.eslint.configs.recommended
and stylistic.configs.recommended
options are overriden 😁FAQs
Mulekicks's base JS / TS / React / Node ESLint config, following my personal standards 😁
The npm package @mulekick/eslint-config-muleslint receives a total of 15 weekly downloads. As such, @mulekick/eslint-config-muleslint popularity was classified as not popular.
We found that @mulekick/eslint-config-muleslint 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.