🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

lighting-plugin-check

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lighting-plugin-check

> lighting-plugin-check 会检查 light 工程的源代码目录下是否有非 ascii 字符的文件名以及是否有仅大小写不同的文件名并提示;开发者也可以在工程根目录下的次配置文件 check-rules.js 中增加自定义规则,插件会根据配置文件进行语法检查并生成代码检查报告,存储于根目录下的 report.csv 文件中。

latest
npmnpm
Version
1.0.3
Version published
Weekly downloads
6
50%
Maintainers
1
Weekly downloads
 
Created
Source

lighting-plugin-check 会检查 light 工程的源代码目录下是否有非 ascii 字符的文件名以及是否有仅大小写不同的文件名并提示;开发者也可以在工程根目录下的次配置文件 check-rules.js 中增加自定义规则,插件会根据配置文件进行语法检查并生成代码检查报告,存储于根目录下的 report.csv 文件中。

安装

注:安装 check 插件之前,请确保您已经安装 lighting 脚手架工具

light plugin -a check //安装

light plugin -u check //更新

light plugin -r check //卸载

使用

在工程根目录下的 project.json 中的 plugins 字段中注册 check 插件:

{
    "project":"lightdemo",
    "version":"0.0.1",
    "desc":"lightdemo",
    "type":"vue",
    "plugins":["check"]
}

在工程根目录下的 check-rules.js 中配置检查规则:

module.exports = [
    {
        link:'https://www.baidu.com',//对应的需求地址
        regex:/native\.\w{1,}/ig,//检查规则
        script:'',//使用脚本的检查规则
    }
]

文档

了解更多 lighting-plugin-check 插件的信息,请点击这里

更新记录

v1.0.2

1.检查文件命名是否规范。

FAQs

Package last updated on 17 May 2019

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