Security News
Nightmares on npm: How Two Malicious Packages Facilitate Data Theft and Destruction
Our threat research team breaks down two malicious npm packages designed to exploit developer trust, steal your data, and destroy data on your machine.
eslint-config-powel
Advanced tools
ESLint configuration presets for powel projects.
npm i -D eslint eslint-config-powel
Add to your .eslintrc
{
"extends": "powel"
}
To use the Babel rule set:
npm i -D eslint eslint-config-powel @babel/eslint-parser
Add this to your .eslintrc
:
{
"extends": "powel/babel"
}
To use the TypeScript rule set:
npm i -D eslint eslint-config-powel @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-import-resolver-typescript
Add this to your .eslintrc
:
{
"extends": "powel/typescript"
}
To use the React rule set:
npm i -D eslint eslint-config-powel eslint-plugin-react eslint-plugin-react-hooks
Add this to your .eslintrc
:
{
"extends": "powel/react"
}
To use the eslint-plugin-import
rule set:
npm i -D eslint eslint-config-powel eslint-plugin-import
Add this to your .eslintrc
:
{
"extends": "powel/import"
}
To use the Jest rule set:
npm i -D eslint eslint-config-powel eslint-plugin-jest
Add this to your .eslintrc
:
{
"extends": "powel/jest"
}
To use the eslint-plugin-css-modules
rule set:
npm i -D eslint eslint-config-powel eslint-plugin-css-modules
Add this to your .eslintrc
:
{
"extends": "powel/css-modules"
}
You can use any combination of these presets.
Install the dependencies:
npm i -D eslint eslint-config-powel eslint-plugin-import @babel/eslint-parser @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-import-resolver-typescript eslint-plugin-react eslint-plugin-jest eslint-plugin-css-modules
.eslintrc
:
{
"extends": [
"powel",
"powel/babel",
"powel/import",
"powel/typescript",
"powel/react",
"powel/jest",
"powel/css-modules"
],
"rules": {
// custom tweaks
}
}
Our shareable config uses rules from external plugins such as eslint-plugin-prettier
.
This patch improves how ESLint loads plugins when working for example in a monorepo,
see: https://github.com/eslint/eslint/issues/3458
.eslintrc.js
// Patch ESLint module resolution to find shared configs' plugins
require('eslint-config-powel/patch/modern-module-resolution');
module.exports = {
extends: ['powel']
};
FAQs
Powel ESLint configs
We found that eslint-config-powel 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.
Security News
Our threat research team breaks down two malicious npm packages designed to exploit developer trust, steal your data, and destroy data on your machine.
Security News
A senior white house official is urging insurers to stop covering ransomware payments, indicating possible stricter regulations to deter cybercrime.
Security News
ESLint has added JSON and Markdown linting support with new officially-supported plugins, expanding its versatility beyond JavaScript.