![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-metarhia
Advanced tools
Opinionated ESLint config and de-facto JavaScript styleguide for Metarhia projects.
Install ESLint, this config and required plugins:
npm i -D eslint eslint-plugin-import eslint-config-metarhia
Add "extends": "metarhia"
to your .eslintrc
.
Please adhere to Conventional Commits styleguide for commit messages (npm install
creates a Git hook that lints your commit messages, and they are also
checked on CI, but please write them properly beforehand so that they don't get
rejected. If that happens locally while committing, though, don't worry, your
commit message isn't lost, you can still find it in .git/COMMIT_EDITMSG
).
Collaborators can release new versions using
npm run release
git push origin master --follow-tags
npm publish
This will update the version in package.json
and package-lock.json
according to semantic versioning using commit messages to determine whether it
is a patch, minor or major release, update the changelog, tag the new version
in Git, and publish it to npm registry.
MIT. See the LICENSE file for details.
6.0.0 (2018-10-22)
Before:
a = (b * c);
typeof (a);
const fn = () => (
doSomething()
);
After:
a = b * c;
typeof a;
const fn = () => doSomething();
Before:
function doSomething() {
return foo = bar + 2;
}
After:
function doSomething() {
return foo === bar + 2;
}
// or
function doSomething() {
return (foo = bar + 2);
}
<a name="5.0.0"></a>
FAQs
ESLint config for Metarhia projects
The npm package eslint-config-metarhia receives a total of 33 weekly downloads. As such, eslint-config-metarhia popularity was classified as not popular.
We found that eslint-config-metarhia 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.