Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@devsisters/eslint-plugin-web

Package Overview
Dependencies
Maintainers
4
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devsisters/eslint-plugin-web

Devisisters' pre-configured ESLint settings.

  • 1.4.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
4
Created
Source

Devsisters 웹서비스셀 ESLint 플러그인

요구사항

  • TypeScript 3.8 이상을 사용합니다.

사용법

ESLint 와 플러그인을 설치합니다.

yarn add -D eslint typescript @devsisters/eslint-plugin-web

프로젝트 경로에 .eslintrc.js (또는 json, yaml) 파일을 추가합니다.

ESLint 의존성

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',
    ],
  },
};

프로젝트 별로 필요한 규칙들을 별도로 설정합니다.

VSCode 설정

{
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact",
  ],
  "eslint.options": {
    "extentions": [
      ".js",
      ".jsx",
      ".ts",
      ".tsx",
    ],
  },
  // Prettier는 끄세요.
  "prettier.enable": false,
}

Keywords

FAQs

Package last updated on 01 Jun 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc