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-zving-specifications

v0.3.0

Published

常用js开发约束:1.lodash不要全部引入 2.不允许用moment 3.不允许加全局变量 4.不允许写cookie

Downloads

33

Readme

eslint-plugin-zving-specifications

eslint-plugin-zving-specifications 是一个ESLint插件,对代码中如下写法作出警告:

  • 为了减少打包后js文件体积,不允许导入整个 lodash 库,请导入你需要的特定的 lodash 函数
  • 不允许命名全局变量
  • moment 建议改为 dayjs
  • 根据 static/modules-info.json 提示模块是否存在
  • 不允许写cookie

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-zving-specifications:

$ npm install eslint-plugin-zving-specifications --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-zving-specifications globally.

Usage

Add zving-specifications to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "zving-specifications"
    ]
}

rules说明

no-full-import: 'warn' //不允许引入lodash、lodash-compat、rambda或date-fns的整个依赖包

no-option-cookie: 'warn' // 不允许操作cookie

no-add-object-to-window: [1, makeException]
  作用:不允许修改window对象中的方法,不允许给window对象添加属性
  参数说明 -- [可选]
  makeException: type: Array, 当给window添加特定的属性时不检测

big-package-replace:'warn' // 或 [1, packageConfig]
  作用:需要替代的大体积依赖包
  参数说明 -- [可选]:
  packageConfig: [{ name: 'xx', replaceName: 'aa' }]
  name: 需要检测的依赖名称
  replaceName: 替换的依赖名称

eslint -> rules配置示例

{
  "rules": {
    // "zving-specifications/rule-name": 2,
    'no-full-import': 1,
    'no-option-cookie': 1,
    'big-package-replace': 1,
    'no-add-object-to-window': 1,
  }
}

Supported Rules

  • Fill in provided rules here