![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-config-warp
Advanced tools
npm install --save-dev eslint eslint-config-warp
Create a .eslintrc.json
file in the project root containing the following:
Default usage
{
"extends": ["warp"]
}
Always configure your environment. We recommend doing so by using the appropriate preset:
This package comes with some additional presets to include in your eslint
configuration. To include any of them, just add them to the extends
Array.
Note that order is important, because each preset overrides the previous. To
allow you to configure a working load order, the table below provides hints.
Preset | Description | Load Order | Dependencies |
---|---|---|---|
warp/node | Linting rules for Node.JS | Soon after warp | eslint-plugin-node |
warp/es6 | Linting rules for ES6 language features | Soon after warp | |
warp/jsx | Linting rules for React JSX | Soon after warp | eslint-config-standard-react eslint-plugin-react |
warp/module | Linting rules for modular JavaScript | Near the end | |
warp/typescript | Linting rules for TypeScript files | Near the end | @typescript-eslint/eslint-plugin @typescript-eslint/parser |
To set up your ESLint for linting TypeScript modules for Node.JS:
{
"extends": ["warp", "warp/node", "warp/module", "warp/typescript"],
"parserOptions": {
"project": "YOUR.tsconfig.json"
}
}
.eslintignore
to ignore paths..eslintrc
file./*eslint rule:0*/
comments to override specific rules per file.//eslint-disable-line
.FAQs
WeAreReasonablePeople linting rules
We found that eslint-config-warp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.