Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kgryte/editorconfig
Creates a .editorconfig file.
https://github.com/kgryte/editorconfig
Last synced: 25 days ago
JSON representation
Creates a .editorconfig file.
- Host: GitHub
- URL: https://github.com/kgryte/editorconfig
- Owner: kgryte
- License: mit
- Created: 2015-07-24T07:52:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-17T10:09:25.000Z (over 8 years ago)
- Last Synced: 2024-04-29T08:02:12.229Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 22.5 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
.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.
## Installation
``` bash
$ npm install @kgryte/editorconfig
```## Usage
``` 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`:
* __template__: `.editorconfig` 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.
## Notes
* Supported templates may be found in the `./templates` directory and are named according to the directory name.
## Examples
``` 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
```---
## CLI### Installation
To use the module as a general utility, install the module globally
``` bash
$ npm install -g @kgryte/editorconfig
```### Usage
``` 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'.
```### Examples
``` 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
```---
## Tests### Unit
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.
### Test Coverage
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
```---
## License[MIT license](http://opensource.org/licenses/MIT).
## Copyright
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