
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
@gitdrops/eslint
Advanced tools
pnpm install @gitdrops/eslint
// eslint.config.js
import { defineEslintConfig } from "eslint-preset";
export default defineEslintConfig({
rules: {
"import/order": "off",
"sort-imports": "off",
"unused-imports/no-unused-vars": "off",
},
});
Add these settings to .vscode/settings.json
{
"eslint.experimental.useFlatConfig": true,
"editor.formatOnSave": true,
"editor.rulers": [100],
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml"
]
}
FAQs
Simple ESLint preset
The npm package @gitdrops/eslint receives a total of 5 weekly downloads. As such, @gitdrops/eslint popularity was classified as not popular.
We found that @gitdrops/eslint 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.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.