![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-actano
Advanced tools
This package provides Actano's .eslintrc.json as an extensible shared config. It extends the popular config by Airbnb and changes a few rules to fit our taste.
Our default export contains all of our ESLint rules, including ECMAScript 6+ and React. It requires eslint
, eslint-plugin-import
, eslint-plugin-react
, and eslint-plugin-jsx-a11y
.
Install this package and all its peer dependencies. Unfortunately, they cannot be normal dependencies. Please consult the package.json
for correct version information of the peer dependencies.
yarn add --dev eslint eslint-config-actano eslint-plugin-import eslint-plugin-react eslint-plugin-jsx-a11y
Create an .eslintrc.yml
with this content:
extends: actano
You might need enable the mocha context and allow having no-unused-expression
in your test files by configuring this in a separate .eslintrc.yml
inside your test directory:
env:
mocha: true
rules:
no-unused-expressions: off
We are adopting most of the rules from Airbnb. Please check out their styleguide to get the full picture.
We do have different opinions on these topics:
They are not needed and code looks better without them. eslint: semi
Allow function expressions without a name. eslint: func-names
We use leading underscores to express that a function is private. eslint: no-underscore-dangle
When using generators, while (true)
loops make sense. eslint: no-constant-condition
We want to use generators. eslint: no-iterator
for .. of
loops provide an easy way to iterate through iterators. eslint: no-restricted-syntax
We want to not be forced how are writing our arrow function bodies. eslint: implicit-arrow-linebreak
We don't want to be forced to always destructore props in React components. eslint: react/destructuring-assignment
FAQs
Beautiful Javascript code at Actano
The npm package eslint-config-actano receives a total of 251 weekly downloads. As such, eslint-config-actano popularity was classified as not popular.
We found that eslint-config-actano 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.