
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
@joaoptgrilo/dev-config
Advanced tools
A sharable suite of configurations for my personal TypeScript projects, including ESLint, Prettier, and TSConfig.
This package provides a single source of truth for development standards, ensuring consistency and rapid setup for new projects.
.vscode/) for a seamless, format-on-save developer experience.Install the package and its required peer dependencies in your new project:
npm install @joaoptgrilo/dev-config eslint typescript prettier @playwright/test --save-dev```
## Usage
After installation, you can easily extend the configurations in your project.
### ESLint
In your project's root, create an `eslint.config.js` file and use a **named import** for the desired configuration.
**Example for a Next.js Project:**
```javascript
// eslint.config.js
import { next } from "@joaoptgrilo/dev-config";
// Use the Next.js preset from the shared package
export default [
...next,
// You can add project-specific overrides here if needed
];
### TypeScript
In your project's `tsconfig.json`, extend the base configuration from the package.
```json
{
"extends": "@joaoptgrilo/dev-config/tsconfig/base.json",
"compilerOptions": {
// Add your project-specific settings here
}
}
FAQs
Sharable configurations for TypeScript, ESLint, Prettier, and more.
The npm package @joaoptgrilo/dev-config receives a total of 25 weekly downloads. As such, @joaoptgrilo/dev-config popularity was classified as not popular.
We found that @joaoptgrilo/dev-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.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.