Skip to content

Commit

Permalink
fix pacakage name
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Jul 31, 2016
1 parent 6ec0bc2 commit e1ae5fb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# textlint-rule-filter-whitelist
# textlint-filter-rule-whitelist

textlint filter rule that filter any word by white list.

## Install

Install with [npm](https://www.npmjs.com/):

npm install textlint-rule-filter-whitelist
npm install textlint-filter-rule-whitelist

## Usage

Expand All @@ -32,7 +32,7 @@ Via `.textlintrc`(Recommended)

### RegExp String

textlint-rule-filter-whitelist allow to use RegExp like string.
textlint-filter-rule-whitelist allow to use RegExp like string.
The string is stated with `/` and ended with `/`.

```js
Expand All @@ -41,7 +41,7 @@ The string is stated with `/` and ended with `/`.

## Changelog

See [Releases page](https://github.com/textlint/textlint-rule-filter-whitelist/releases).
See [Releases page](https://github.com/textlint/textlint-filter-rule-whitelist/releases).

## Running tests

Expand All @@ -53,7 +53,7 @@ Install devDependencies and Run `npm test`:

Pull requests and stars are always welcome.

For bugs and feature requests, [please create an issue](https://github.com/textlint/textlint-rule-filter-whitelist/issues).
For bugs and feature requests, [please create an issue](https://github.com/textlint/textlint-filter-rule-whitelist/issues).

1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "textlint-rule-filter-whitelist",
"name": "textlint-filter-rule-whitelist",
"repository": {
"type": "git",
"url": "https://github.com/textlint/textlint-rule-filter-whitelist.git"
"url": "https://github.com/textlint/textlint-filter-rule-whitelist.git"
},
"author": "azu",
"email": "azuciao@gmail.com",
"homepage": "https://github.com/textlint/textlint-rule-filter-whitelist",
"homepage": "https://github.com/textlint/textlint-filter-rule-whitelist",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint/textlint-rule-filter-whitelist/issues"
"url": "https://github.com/textlint/textlint-filter-rule-whitelist/issues"
},
"files": [
"src/",
"lib/"
],
"version": "1.0.1",
"main": "lib/textlint-rule-filter-whitelist.js",
"main": "lib/textlint-filter-rule-whitelist.js",
"directories": {
"test": "test"
},
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"use strict";
const TextLintCore = require("textlint").TextLintCore;
const TextLintNodeType = require("textlint").TextLintNodeType;
import filterRule from "../src/textlint-rule-filter-whitelist";
import filterRule from "../src/textlint-filter-rule-whitelist";
import reportRule from "textlint-rule-report-node-types";
const assert = require("power-assert");
describe("textlint-rule-filter-whitelist", function() {
Expand Down

0 comments on commit e1ae5fb

Please sign in to comment.