
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
eslint-config-pi
Advanced tools
This is our eslint config at Purpose Industries.
You can use our basic rule set by following the instructions below.
It's handy when you don't want to use fancy stuff like es6 or react.
$ npm i -D eslint-config-pi eslint
Then add it to your .eslintrc
{
"extends": "pi"
}
If you'd like to use our es6 rule set:
$ npm i -D eslint-config-pi babel-eslint eslint-plugin-babel eslint
You can add this to your .eslintrc in this way:
{
"extends": "pi/es6"
}
And finally, we have a React rule set as well:
$ npm i -D eslint-config-pi eslint-plugin-react eslint
guess what:
{
"extends": "pi/react"
}
Of course, you can use any combination of these shareable configs you want.
For example, if you want to create a project using the power es6 and react including the basics, just do the following.
Install the dependencies accordingly:
$ npm i -D eslint-config-pi babel-eslint eslint-plugin-react eslint-plugin-babel eslint
.eslintrc:
{
"extends": [
"pi",
"pi/es6",
"pi/react"
]
}
Eslint config properties like env
or globals
are strongly
project specific so you have to set them in your own .eslintrc file.
For instance:
{
"env": {
"browser": true
},
"globals": {
"React": true
},
"extends": [
"pi",
"pi/react"
]
}
And that's all. :sunglasses:
Happy Coding! :coffee: :octocat:
MIT © Purpose Industries
FAQs
Purpose Industries` official eslint config
We found that eslint-config-pi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.