![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
eslint-config-vizzuality
Advanced tools
This package provides Vizzuality's .eslintrc as an extensible shared config.
This package provides Vizzuality's .eslintrc as an extensible shared config.
## Usage
We export three ESLint configurations for your usage.
Unsing npm:
npx install-peerdeps --dev eslint-config-vizzuality
npm install --save-dev eslint-config-vizzuality
Using yarn:
yarn add eslint@5.7.0 \
eslint-config-airbnb@17.1.0 \
eslint-plugin-import@2.14.0 \
eslint-plugin-jsx-a11y@6.1.1 \
eslint-plugin-react@7.11.0 \
eslint-config-vizzuality@latest \
--dev
Add "extends": "vizzuality"
to your .eslintrc
Example of .eslintrc.json
:
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": [
"vizzuality"
]
}
Add script to in your package.json
:
{
"scripts": {
...
"lint": "eslint --ext .js --ext .jsx ."
}
}
And execute eslint running:
yarn lint
As a good practice running eslint only in git staged files using (lint-staged)[https://github.com/okonet/lint-staged] will have quicker analysis and ensure quality in each commit.
And it is as easy as install the dependency:
npm install lint-staged
or
yarn add lint-staged
And add the following code to the package.json
:
"scripts": {
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet --fix",
"git add"
]
},
FAQs
This package provides Vizzuality's .eslintrc as an extensible shared config.
The npm package eslint-config-vizzuality receives a total of 18 weekly downloads. As such, eslint-config-vizzuality popularity was classified as not popular.
We found that eslint-config-vizzuality demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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.