npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eslint-plugin-amocrm-plugin

v0.0.13

Published

plugin for codestyle in layers

Downloads

11

Readme

eslint-plugin-amocrm-plugin

Плагин для проверки архитектурных правил.

Installation

Для начала нужно установить eslint в проект ESLint:

npm i eslint --save-dev

Затем установить сам плагин eslint-plugin-amocrm-plugin:

npm install eslint-plugin-amocrm-plugin --save-dev

Usage

Добавьте amocrm-plugin в список плагинов в конфигурационный файл .eslintrc:

{
    "plugins": [
        "amocrm-plugin"
    ]
}

Затем настройте правила, которые вы хотите использовать, в разделе правил:

{
    "rules": {
        "amocrm-plugin/path-checker": [
          'error',
          {
            lang: 'ru',
            rootDir: 'react',
            checkingLayers: ['components', 'pages'],
          },
        ],
        'amocrm-plugin/public-api': [
          'error',
          {
            lang: 'ru',
            checkingLayers: ['components', 'pages'],
          },
        ],
        'amocrm-plugin/import-rule': [
          'error',
          {
            lang: 'ru',
            rootDir: 'react',
            layers: {
              pages: [
                'components',
                'ui',
                'utils',
                'hooks',
                'api',
                'constants',
                'hoc',
                'types',
              ],
              components: [
                'components',
                'ui',
                'utils',
                'hooks',
                'api',
                'constants',
                'hoc',
                'types',
              ],
              ui: ['ui', 'utils', 'hooks', 'api', 'constants', 'hoc', 'types'],
              utils: [
                'ui',
                'utils',
                'hooks',
                'api',
                'constants',
                'hoc',
                'types',
              ],
              hooks: [
                'ui',
                'utils',
                'hooks',
                'api',
                'constants',
                'hoc',
                'types',
              ],
              api: ['ui', 'utils', 'hooks', 'api', 'constants', 'hoc', 'types'],
              constants: [
                'ui',
                'utils',
                'hooks',
                'api',
                'constants',
                'hoc',
                'types',
              ],
              hoc: ['ui', 'utils', 'hooks', 'api', 'constants', 'hoc', 'types'],
              types: [
                'ui',
                'utils',
                'hooks',
                'api',
                'constants',
                'hoc',
                'types',
              ],
            },
            availableLayers: {
              pages: 'pages',
              components: 'components',
              ui: 'ui',
              api: 'api',
              hooks: 'hooks',
              utils: 'utils',
              hoc: 'hoc',
              constants: 'constants',
              types: 'types',
            },
            ignoreImportPatterns: [],
          },
        ],
    }
}

Rules

path-checker

Правило проверяет, что внутри слайсов используются относительные импорты.

Параметры

  • lang - Язык ошибок
  • rootDir - Название директории, в которой лежат слои
  • checkingLayers - Слои, в которых работает это правило

public-api

Правило проверяет, что все импорты происходят из public api.

Параметры

  • lang - Язык ошибок
  • checkingLayers - Слои, в которых работает это правило

import-rule

Правило проверяет, что все импорты происходят из нижележащих слоёв.

Параметры

  • lang - Язык ошибок
  • rootDir - Название директории, в которой лежат слои
  • layers
    • Ключ объекта - название слоя
    • Значение объекта - слои, которые в него можно импортировать
  • availableLayers - Слои, в которых проверяется это правило
  • ignoreImportPatterns - Список регулярных выражений с названиями директорий, которые можно импортировать из вышестоящего слоя

Как разрабатывать npm пакет

Создаём линку npm пакета

В cd /eslint-plugin-amocrm-plugin прописываем:

npm link

В package.json проекта, в котором будем использовать плагин, задаём путь до директории:

{
    "devDependencies": {
        "eslint-plugin-amocrm-plugin": "/Users/artemkolesnikov/Documents/amoCRM/work/eslint-plugin-amocrm-plugin",
    }
}

Далее в проекте нужно рестартнуть сервер eslint.

Если необходимо внести правки в существующее правило, нужно в /tests/название_правила.js добавить тесты для новых правок и запускать их скриптом:

npm run test

Для дебага тестов можно выбрасывать ошибки throw Error(), чтобы при выполнении тестов смотреть логи.

Добавление нового правила

Если нужно добавить новое правило, то в директории /rules/название_правила.js добавляем файл.

Ссылки

Документация по созданию eslint плагина