Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@atlassian-partner-engineering/eslint-config
Advanced tools
ESLint config for all projects of Product Integrations team
ESLint Shareable Config
The idea was to have strict linter config which would fit the best for all the projects and not too annoying to work with.
ESLint recommended config was taken as a basis, expanded with Create React App ESLint config and with some custom rules requested by the team.
This config includes:
This config can be used both on server and client side.
npm install -D @atlassian-partner-engineering/eslint-config
Shareable configs are designed to work with the extends
feature of .eslintrc.json
files. You can learn more about Shareable Config on the official ESLint website.
Add this to your .eslintrc.json
file:
{
"extends": "@atlassian-partner-engineering"
}
Note: We omitted the eslint-config
from the full package name since it is automatically assumed by ESLint.
You can override settings from the shareable config by adding them directly into
your .eslintrc.js
file.
If you use VS Code as your code editor you can turn Auto Fix for ESLint:
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
}
Check out detailed documentation of ESLint extension.
To publish this library:
npm version <patch|minor|major>
npm publish
Don't forget to push commit and tag to the remote:
git push --follow-tags
FAQs
ESLint config for all projects of Product Integrations team
The npm package @atlassian-partner-engineering/eslint-config receives a total of 22 weekly downloads. As such, @atlassian-partner-engineering/eslint-config popularity was classified as not popular.
We found that @atlassian-partner-engineering/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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.