![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.
@app-press/eslint-config
Advanced tools
This package provides App Press' .eslintrc.json as an extensible shared config.
A few ESLint configurations are exported for convenience; all exports allow for standard testing frameworks (Mocha, Jasmine, and Jest):
The default export contains all ESLint rules, including ES6 and React, and tries to find a balance between traditional server-side and client-side code styles. For this reason, it does not use modules for client-side code by default; thus, the following code will not pass linting:
import React from "react";
But this will:
const React = require("react");
npm install --save-dev @app-press/eslint-config eslint eslint-plugin-react
"extends": "@app-press/eslint-config
to your .eslintrc fileThis export is for use on server-side-only code and will not lint React (though it will lint ES6).
npm install --save-dev @app-press/eslint-config eslint
"extends": "@app-press/eslint-config/node
to your .eslintrc.json fileThis export is for use on client-side-only code and will lint React (including JSX) and ES6 code.
npm install --save-dev @app-press/eslint-config eslint
"extends": "@app-press/eslint-config/client
to your .eslintrc fileThis export is for use on client-side-only code and will lint React (including JSX) and ES6 code. It will also expect that all client-side code is ES6 module based (and thus will assume strict by default).
npm install --save-dev @app-press/eslint-config eslint
"extends": "@app-press/eslint-config/client-modules
to your .eslintrc fileTo override specific rules, simply add a rules
section to your .elintrc.json and add your desired rules — they will take precedence.
You may also modify the parser, parserOptions, etc. Just include those sections as well.
FAQs
App Press' ESLint rules
The npm package @app-press/eslint-config receives a total of 9 weekly downloads. As such, @app-press/eslint-config popularity was classified as not popular.
We found that @app-press/eslint-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 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.