
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
eslint-config-sanity
Advanced tools
Shared eslint rules for official Sanity.io projects
npm install --save-dev eslint-config-sanity
Create an .eslintrc
in the root of your project (or an eslintConfig
entry in package.json
) and extend the sanity
config:
{
"env": {"node": true, "browser": true},
"extends": ["sanity"]
}
Adjust env
according to your use case, obviously.
ESLint requires plugins to be peer dependencies (they resolve relative to the end-user project), as such you need to install an additional dependency if you're using React:
npm install --save-dev eslint-plugin-react eslint-plugin-react-hooks
Then, make sure to extend sanity/react
in your .eslintrc
:
{
"extends": ["sanity/react"]
}
Note: It's not necessary to extend both sanity
and sanity/react
- extending sanity/react
will implicitly extend sanity
first.
Note: If you're using TypeScript and React, make sure you extend sanity/react
before sanity/typescript
:
{
"extends": ["sanity/react", "sanity/typescript"]
}
ESLint requires plugins to be peer dependencies (they resolve relative to the end-user project), as such you need to install a few more dependencies if you're using typescript:
npm install --save-dev \
typescript \
@typescript-eslint/parser \
@typescript-eslint/eslint-plugin
Then, make sure to extend sanity/typescript
in your .eslintrc
:
{
"extends": ["sanity/typescript"]
}
Note: It's not necessary to extend both sanity
and sanity/typescript
- extending sanity/typescript
will implicitly extend sanity
first.
Note: If you're using TypeScript and React, make sure you extend sanity/react
before sanity/typescript
:
{
"extends": ["sanity/react", "sanity/typescript"]
}
MIT © Sanity.io
FAQs
Shared eslint configs for sanity-io
The npm package eslint-config-sanity receives a total of 11,432 weekly downloads. As such, eslint-config-sanity popularity was classified as popular.
We found that eslint-config-sanity demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 68 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.