目录

fecs

fecs for grunt

Getting Started

This plugin requires Grunt ~0.4.5

If you haven’t used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you’re familiar with that process, you may install this plugin with this command:

npm install fecs-grunt --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('fecs-grunt');

The “fecs” task

Overview

In your project’s Gruntfile, add a section named fecs to the data object passed into grunt.initConfig().

grunt.initConfig({
  fecs: {
    options: {
      // Task-specific options go here.
    },
    files: {
      // Src
    },
  },
});

Options

fecs-options

Usage Examples

Check

grunt.initConfig({
    fecs: {
        options: {
            // 支持的属性,全部配置属性均使用全称
            // command, color, reporter, rule, sore, type
            command: 'check',
            rule: true,
            reporter: 'baidu',

            sort: true,
            // 支持type: 'html'
            type: 'html, css, js'

            // 不支持的属性
            // debug, stream, silent, ignore
        },
        files: {
            // 可在这里指定check的源文件,支持简易模式
            // src: ['./test/input/index.html']
            // 也支持文件数组格式,详见grunt官网文件配置
            src: [
                './test/input/*'
            ]
        }
    },
});

Format

grunt.initConfig({
    fecs: {
        options: {
            command: 'format',
            // 支持这两个属性
            output: './test/output'
            // replace: true

            // 其他属性参考check options
        },
        files: {
            src: [
                './test/input/*'
            ]
        }
    },
});

// 或者
grunt.initConfig({
    fecs: {
        options: {
            command: 'format',
            replace: true

            // 其他属性参考check options
        },
        files: {
            src: [
                './test/input/*'
            ]
        }
    },
});

Check && Format

grunt.initConfig({
    fecs: {
        check: {
            options: {
                command: 'check'
                // 其他参数
            },
            files: {
                // 可在这里指定check的源文件,支持简易模式
                // src: ['./test/input/index.html']
                // 也支持文件数组格式,详见grunt官网文件配置
                // 然而不需要dest
                src: [
                    './test/input/*'
                ]
            }
        },
        format: {
            options: {
                command: 'format',
                // 其他属性参考check options
            },
            files: {
                src: [
                    './test/input/*'
                ]
            }
        }
    }
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)

邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9 京公网安备 11010802032778号