![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
eslint-plugin-putout
Advanced tools
ESLint plugin for πPutout with built-in rules from @putout/eslint-config.
npm i putout eslint eslint-plugin-putout -D
βοΈIf you installed eslint
globally (using the -g
flag) then you must also install putout
and eslint-plugin-putout
globally.
Add putout
to the plugins section of your .eslintrc.json
configuration file. You can omit the eslint-plugin-
prefix:
{
"extends": ["plugin:putout/recommended"],
"plugins": ["putout"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"putout/add-newlines-between-types-in-union": "error",
"putout/add-newlines-between-specifiers": "error",
"putout/add-newline-before-return": "error",
"putout/add-newline-before-function-call": "error",
"putout/add-newline-after-function-call": "error",
"putout/putout": "error",
"putout/array-element-newline": "error",
"putout/single-property-destructuring": "error",
"putout/multiple-properties-destructuring": "error",
"putout/long-properties-destructuring": "error",
"putout/destructuring-as-function-argument": "error",
"putout/align-spaces": "error",
"putout/keyword-spacing": "error",
"putout/newline-function-call-arguments": "error",
"putout/function-declaration-paren-newline": "error",
"putout/remove-newline-after-default-import": "error",
"putout/remove-newline-between-declarations": "error",
"putout/remove-newline-from-empty-object": "error",
"putout/remove-empty-newline-before-first-specifier": "error",
"putout/remove-empty-newline-after-last-specifier": "error",
"putout/remove-empty-newline-after-last-element": "error",
"putout/remove-empty-newline-after-import": "error",
"putout/remove-empty-specifiers": "error",
"putout/objects-braces-inside-array": "error",
"putout/object-property-newline": "error",
"putout/tape-add-newline-between-tests": "error",
"putout/tape-add-newline-before-assertion": "error",
"putout/tape-remove-newline-before-t-end": "error"
}
}
When using πPutout in IDE with --fix
on save, or when you want to disable the most dangerous rules, use:
{
"extends": ["plugin:putout/safe"],
"plugins": ["putout"]
}
Disabled ESLint rules:
Disabled πPutout rules:
apply-template-literals
;remove-empty
;nodejs/remove-process-exit
;remove-unused-variables
;typescript/remove-unused-types
;remove-unused-expressions
;remove-unreferenced-variables
;remove-useless-arguments
;remove-useless-return
;remove-useless-spread
;remove-useless-variables/rename
;remove-useless-variables/declaration
;remove-skip
;remove-only
;remove-console
;remove-debugger
;remove-unreachable-code
;for-of/for
;for-of/remove-useless
;for-of/remove-unused-variables
;maybe/noop
;When you want to enable ability to align spaces on empty lines, while have all benefits of safe
preset: use safe+align
.
When you need to support jsx
in files using js
extension, use:
{
"extends": [
"plugin:putout/jsx"
],
"plugins": [
"putout"
]
}
If you want to use ESM plugins of πPutout you need to use esm
preset:
{
"extends": [
"plugin:putout/esm"
],
"plugins": [
"putout"
]
}
The time is came for a FlatConfig. To use it with eslint-plugin-putout
add to eslint.config.js
:
const {recommended} = require('eslint-plugin-putout/config');
module.exports = [
...recommended,
{},
];
safe
and safeAlign
supported as well.
MIT
FAQs
ESLint plugin for πPutout
The npm package eslint-plugin-putout receives a total of 5,857 weekly downloads. As such, eslint-plugin-putout popularity was classified as popular.
We found that eslint-plugin-putout 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.