1.0.3 • Published 7 years ago

eslint-config-testin v1.0.3

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

testin ESLint 规则

npm package npm downloads

使用方法

标准规则

安装:

npm install --save-dev eslint babel-eslint eslint-config-testin

在你的项目根目录下创建 .eslintrc.js,并将以下内容复制到文件中:

module.exports = {
    extends: [
        'testin'
    ],
    globals: {
        // 这里填入你的项目需要的全局变量
    },
    rules: {
        // 这里填入你的项目需要的个性化配置
    }
};