Skip to content

Commit 3b36810

Browse files
committed
fixup wording, comments, spaces
1 parent c44d819 commit 3b36810

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
**NOTE:** Please note that this is experimental and may have numerous bugs. It has been run against `ember.js` and `babel-core` with no errors (at the moment). If there's an issue, first check if you can reproduce with the regular parser (esprima) and the latest version.
88

9-
Rules related to quotes work work: `validateQuoteMarks` (Babel infers and transforms quotes to be consistent so you'll need to find another way to enforce this or turn off the parser and run it.)
9+
Rules related to quotes won't work: `validateQuoteMarks` (Babel infers and transforms quotes to be consistent so you'll need to find another way to enforce this or turn off the parser and run it.)
1010

1111
## How does it work?
1212

@@ -20,8 +20,8 @@ columns is also retained so you can track down errors with ease.
2020
### Install
2121

2222
```sh
23-
$ npm install -g jscs babel-jscs // global
24-
$ npm install jscs babel-jscs // local
23+
$ npm install -g jscs babel-jscs # global
24+
$ npm install jscs babel-jscs # local
2525
```
2626

2727
### Setup

test/non-regression.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ describe("verify", function () {
6464
verifyAndAssertMessages(
6565
"var a = [1,2,3];",
6666
{ "requireTrailingComma": true },
67-
[ "1:14 Missing comma before closing bracket" ]
67+
["1:14 Missing comma before closing bracket"]
6868
);
6969
});
7070

0 commit comments

Comments
 (0)