Creates a .editorconfig file.
npm install @kgryte/editorconfig.editorconfig
=========
[![NPM version][npm-image]][npm-url] [![Build Status][build-image]][build-url] [![Coverage Status][coverage-image]][coverage-url] [![Dependencies][dependencies-image]][dependencies-url]
> Creates a .editorconfig file.
`` bash`
$ npm install @kgryte/editorconfig
` javascript`
var cp = require( '@kgryte/editorconfig' );
#### cp( dest[, opts ][, clbk ] )
Asynchronously create a .editorconfig file in a specified destination directory.
` javascript
cp( 'path/to/a/directory', onCreate );
function onCreate( error ) {
if ( error ) {
throw error;
}
console.log( 'Success!' );
}
`
The function accepts the following options:.editorconfig
* __template__: template name. Default: 'default'.
By default, a default template is used. To specify a different .editorconfig template, set the template option.
` javascript`
cp( 'path/to/a/directory', {
'template': 'default'
});
#### cp.sync( dest[, opts] )
Synchronously create a .editorconfig file in a specified destination directory.
` javascript`
cp.sync( 'path/to/a/directory' );
The function accepts the same options as the asynchronous version.
* Supported templates may be found in the ./templates directory and are named according to the directory name.
` javascript
var mkdirp = require( 'mkdirp' );
var path = require( 'path' );
var cp = require( '@kgryte/editorconfig' );
var dirpath = path.resolve( __dirname, '../build/' + new Date().getTime() );
mkdirp.sync( dirpath );
cp.sync( dirpath, {
'template': 'default'
});
`
To run the example code from the top-level application directory,
` bash`
$ node ./examples/index.js
---
To use the module as a general utility, install the module globally
` bash`
$ npm install -g @kgryte/editorconfig
` bash
Usage: editorconfig [options] [destination]
Options:
-h, --help Print this message.
-V, --version Print the package version.
--templates List templates.
-tmpl, --template name Template name. Default: 'default'.
`
` bash`
$ cd ~/my/project/directory
$ editorconfig=> creates a .editorconfig file in the current working directory
To specify a destination other than the current working directory, provide a destination.
` bash`
$ editorconfig ./../some/other/directory
---
Unit tests use the [Mocha][mocha] test framework with [Chai][chai] assertions. To run the tests, execute the following command in the top-level application directory:
` bash`
$ make test
All new feature development should have corresponding unit tests to validate correct functionality.
This repository uses [Istanbul][istanbul] as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:
` bash`
$ make test-cov
Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,
` bash``
$ make view-cov
---
Copyright © 2015-2016. Athan Reines.
[npm-image]: http://img.shields.io/npm/v/@kgryte/editorconfig.svg
[npm-url]: https://npmjs.org/package/@kgryte/editorconfig
[build-image]: http://img.shields.io/travis/kgryte/editorconfig/master.svg
[build-url]: https://travis-ci.org/kgryte/editorconfig
[coverage-image]: https://img.shields.io/codecov/c/github/kgryte/editorconfig/master.svg
[coverage-url]: https://codecov.io/github/kgryte/editorconfig?branch=master
[dependencies-image]: http://img.shields.io/david/kgryte/editorconfig.svg
[dependencies-url]: https://david-dm.org/kgryte/editorconfig
[dev-dependencies-image]: http://img.shields.io/david/dev/kgryte/editorconfig.svg
[dev-dependencies-url]: https://david-dm.org/dev/kgryte/editorconfig
[github-issues-image]: http://img.shields.io/github/issues/kgryte/editorconfig.svg
[github-issues-url]: https://github.com/kgryte/editorconfig/issues
[mocha]: http://mochajs.org/
[chai]: http://chaijs.com
[istanbul]: https://github.com/gotwarlost/istanbul