Skip to content

Commit

Permalink
simplify project files structure, add coverage reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
titarenko committed Sep 21, 2016
1 parent e1fe76c commit b158c3f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
node_modules
coverage
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -4,6 +4,8 @@ Eslint plugin to control function call code style

[![Build Status](https://travis-ci.org/titarenko/eslint-plugin-func-call.svg?branch=master)](https://travis-ci.org/titarenko/eslint-plugin-func-call)

[![Coverage Status](https://coveralls.io/repos/github/titarenko/eslint-plugin-func-call/badge.svg?branch=master)](https://coveralls.io/github/titarenko/eslint-plugin-func-call?branch=master)

## Installation

You'll first need to install [ESLint](http://eslint.org):
Expand Down
File renamed without changes.
11 changes: 8 additions & 3 deletions package.json
@@ -1,23 +1,28 @@
{
"name": "eslint-plugin-func-call",
"version": "1.0.1",
"version": "1.0.2",
"description": "Eslint plugin to control function call code style",
"keywords": [
"eslint",
"plugin",
"eslintplugin",
"eslint-plugin",
"function",
"func",
"fn",
"call",
"code",
"style"
],
"author": "Constantin Titarenko",
"main": "lib/index.js",
"main": "index.js",
"scripts": {
"test": "mocha tests --recursive"
"test": "istanbul cover _mocha -- tests && cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"coveralls": "^2.11.14",
"eslint": "~2.6.0",
"istanbul": "^0.4.5",
"mocha": "^2.4.5"
},
"engines": {
Expand Down
File renamed without changes.
@@ -1,6 +1,6 @@
"use strict";

var rule = require('../../../lib').rules['opening-newline']
var rule = require('../').rules['opening-newline']
var RuleTester = require('eslint').RuleTester

var ruleTester = new RuleTester()
Expand Down

0 comments on commit b158c3f

Please sign in to comment.