
Security News
VulnCon 2025: NVD Scraps Industry Consortium Plan, Raising Questions About Reform
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
@devsisters/eslint-plugin-web
Advanced tools
ESLint 와 플러그인을 설치합니다.
yarn add -D eslint typescript @devsisters/eslint-plugin-web
프로젝트 경로에 .eslintrc.js
(또는 json, yaml) 파일을 추가합니다.
ESLint | @devsisters/eslint-plugin-web |
---|---|
>= 8.x | >= 1.4.0 |
< 8.x | * |
module.exports = {
plugins: [
'@devsisters/web',
],
extends: [
'plugin:@devsisters/web/frontend',
],
parserOptions: {
project: [
'./tsconfig.json',
],
},
};
프로젝트 별로 필요한 규칙들을 별도로 설정합니다.
{
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
],
"eslint.options": {
"extentions": [
".js",
".jsx",
".ts",
".tsx",
],
},
// Prettier는 끄세요.
"prettier.enable": false,
}
FAQs
Devisisters' pre-configured ESLint settings.
We found that @devsisters/eslint-plugin-web demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.
Product
Our redesigned Repositories page adds alert severity, filtering, and tabs for faster triage and clearer insights across all your projects.