Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@yagrrusso/eslint-config
Advanced tools
Configuração de ESLint para trabalhar com Javascript/Typescript.
1- Instale o pacote no seu projeto como dependência de desenvolvimento.
npm i -D eslint @yagrrusso/eslint-config
2- Crie um arquivo .eslintrc.json
na raiz do seu projeto e extenda algum preset ESLint da biblioteca.
{
// .eslintrc.json
"extends": ["@yagrrusso/eslint-config/[react|node]"]
}
3- Instale a extensão do ESLint no seu VSCode.
4- Configure o ESLint no seu VSCode no arquivo de configurações do usuário settings.json
.
{
// settings.json
"editor.tabSize": 2,
"eslint.format.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
}
}
Caso esteja em um monorepo, adicione as seguintes instruções no seu arquivo .eslintrc.json
.
{
// .eslintrc.json
"settings": {
"import/resolver": {
"typescript": {
"project": ["DIRETÓRIO_DO_PACOTE"]
}
}
}
}
Importe um dos presets da lista abaixo para o seu projeto.
Bibliotecas utilizadas nas configurações para React:
Bibliotecas utilizadas nas configurações para Node:
FAQs
ESLint config for Javascript/Typescript projects
We found that @yagrrusso/eslint-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.