1.0.3 • Published 5 years ago

lighting-plugin-check v1.0.3

Weekly downloads
13
License
-
Repository
-
Last release
5 years ago

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.检查文件命名是否规范。

1.0.3

5 years ago

1.0.2

6 years ago

1.0.1

6 years ago