
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
eslint-config-fast-lint-prettify
Advanced tools
One package to lint and prettify them all
This config includes eslint
, prettier
and all relevant plugins and configs to make it work with a single package installation.
Includes:
eslint
babel-eslint
eslint-config-airbnb
eslint-config-prettier
eslint-plugin-import
eslint-plugin-jest
eslint-plugin-jsx-a11y
eslint-plugin-prettier
eslint-plugin-react
eslint-plugin-react-hooks
prettier
exact
version with E
flag):yarn add -DE eslint-config-fast-lint-prettify
.eslintrc
file in your project root and add:{
"extends": ["fast-lint-prettify"]
}
.prettierrc.js
file in your project root and add:const prettier = require('eslint-config-fast-lint-prettify/prettier');
// You can also overwrite some keys in this config
module.exports = prettier;
Alternatively, in your package.json
file add the following key:
{
"prettier": "eslint-config-fast-lint-prettify/prettier"
}
.editorconfig
file at the project root:root = true
[*]
indent_style = tab
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
If you're using VSCode, you might want to enable "Format on save" from workspace settings to automatically run prettier on save.
This package is meant to be used as an opinionated standalone. It includes both eslint
and prettier
. With these you can for example use them in scripts
in package.json
:
{
"scripts": {
"lint": "yarn eslint ."
}
}
It's based on eslint-config-airbnb
with some tweaks. You can override or add your own rules in your own .eslintrc
file. For example:
{
"extends": ["fast-lint-prettify"],
"rules": {
// your own rules here
}
}
You can also specify a node
or browser
environment which enables some linting rules, for example window
object on browser, etc.
{
"extends": ["fast-lint-prettify"],
"rules": {
// your own rules here
},
"env": {
// generally you only need one
"browser": true,
"node": true
}
}
FAQs
One package to lint and prettify them all
The npm package eslint-config-fast-lint-prettify receives a total of 0 weekly downloads. As such, eslint-config-fast-lint-prettify popularity was classified as not popular.
We found that eslint-config-fast-lint-prettify 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.