Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
eslint-config-fatfisz
Advanced tools
This is an ESLint config I'm using for my projects.
There are some peer dependencies that need to be installed together because of how ESLint resolves packages:
yarn add -ED eslint-config-fatfisz eslint-config-prettier eslint-plugin-import eslint-plugin-prettier prettier
Then in .eslintrc.js
put:
'use strict';
module.exports = {
root: true,
extends: 'fatfisz',
... // Tweak it as you like, add overrides and such
};
Take into consideration that this config has some optional dependencies and some rules won't unlock unless you have them installed. So if you're using TypeScript, install the following packages too:
yarn add -ED @typescript-eslint/eslint-plugin @typescript-eslint/parser typescript
and for React install those:
yarn add -ED eslint-plugin-react eslint-plugin-react-hooks
Copyright (c) 2021 Rafał Ruciński. Licensed under the MIT license.
FAQs
ESLint config for the FatFisz coding standard
We found that eslint-config-fatfisz demonstrated a not healthy version release cadence and project activity because the last version was released 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.