
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.
eslint-config-autopilot
Advanced tools
Autpilot's standard eslint configuration.
npm install --save-dev eslint-config-autopilot
Add .eslintrc
to your project and extend from autopilot
.
{
"extends": "autopilot"
"rules": {
// project specific rules
}
}
We favour implementing rules here instead of adding project specific rules, as ideally these should be discussed with the team and embedded here for global and consistent usage across all projects. Project specific rules should be unique to that project and should not conflict with the rules listed here.
When installing eslint-config-autopilot
for an existing project, you may see
quite a few linter errors! eslint
provides a --fix
CLI flag which will
automatically fix linter issues which should help kickstart bringing the project
up to speed.
If you'd like to introduce a new rule or change an existing rule, please submit a PR to this project with your changes and a rationale for the change.
Please adhere to the following:
'off'
, 'warn'
and 'error'
instead of 0
, 1
and 2
for
quicker understanding.// http://eslint.org/docs/rules/max-len
'max-len': [
'error',
120,
2,
{
ignoreUrls: true,
},
]
PRs can be merged when the majority of the team has reached consensus on the proposed rule change.
Please follow semver for any releases as this ensures clean updates for projects and allows projects to manage breaking changes effectively.
FAQs
Autopilot's standard eslint configuration.
The npm package eslint-config-autopilot receives a total of 0 weekly downloads. As such, eslint-config-autopilot popularity was classified as not popular.
We found that eslint-config-autopilot demonstrated a not healthy version release cadence and project activity because the last version was released 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.