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.
eslint-config-crema
Advanced tools
Shared ESLint config for React Typescript Projects.
npm install --save-dev eslint-config-crema
You will also need to install eslint
:
npm install --save-dev eslint
Import this config into your own ESLint configuration using the extends
option. ESLint checks both package.json
and .eslintrc.*
files for its configuration:
{
"eslintConfig": {
"extends": ["crema"]
}
}
module.exports = {
extends: ["crema"],
}
This ESLint config includes a selection of useful plugins, this is what you get out of the box:
Plugin | Presets |
---|---|
eslint | recommended |
@typescript-eslint | recommended |
import | recommended + typescript |
jsx-a11y | recommended |
react | recommended + jsx-runtime |
react-hooks | recommended |
storybook | recommended |
testing-library | react |
@tanstack/eslint-plugin-query | recommended |
prettier | - |
Note: Storybook and Testing Library plugins only run on select files. (Stories and Tests)
Create a file named .prettierrc.json
in your project directory. An example of Prettier configuration file:
{
"trailingComma": "all",
"tabWidth": 4,
"semi": false,
"singleQuote": false
}
Read more about configuring prettier
and all of the available options.
Install the Prettier
extension and create a file named /.vscode/settings.json
with the following configuration:
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
}
FAQs
A batteries-included ESLint config by Crema for Cremanians and you.
The npm package eslint-config-crema receives a total of 10 weekly downloads. As such, eslint-config-crema popularity was classified as not popular.
We found that eslint-config-crema 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.