Skip to content

Commit 4dab190

Browse files
committed
Whitespace cleanup.
[ci skip]
1 parent 15f1a17 commit 4dab190

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,31 @@
55

66
# CSSLint
77

8-
CSSLint is an open source CSS code quality tool originally written by
9-
[Nicholas C. Zakas](http://www.nczonline.net/) and
8+
CSSLint is an open source CSS code quality tool originally written by
9+
[Nicholas C. Zakas](http://www.nczonline.net/) and
1010
[Nicole Sullivan](http://www.stubbornella.org/). It was released in June 2011 at
1111
the Velocity conference.
1212

13-
A [lint](http://en.wikipedia.org/wiki/Lint_programming_tool) tool performs
14-
[static analysis](http://en.wikipedia.org/wiki/Static_code_analysis) of source
13+
A [lint](http://en.wikipedia.org/wiki/Lint_programming_tool) tool performs
14+
[static analysis](http://en.wikipedia.org/wiki/Static_code_analysis) of source
1515
code and flags patterns that might be errors or otherwise cause problems for the
16-
developer.
16+
developer.
1717

18-
CSSLint is a tool to help point out problems with your CSS code. It does basic
19-
syntax checking as well as applying a set of rules to the code that look for
18+
CSSLint is a tool to help point out problems with your CSS code. It does basic
19+
syntax checking as well as applying a set of rules to the code that look for
2020
problematic patterns or signs of inefficiency. The rules are all pluggable, so
2121
you can easily write your own or omit ones you don't want.
2222

2323
## Integration
2424

2525
### Command Line Interface
2626

27-
All about the command line interface for CSSLint. If you'd rather use a CLI
28-
program to verify your CSS instead of using the web site, then this guide is
27+
All about the command line interface for CSSLint. If you'd rather use a CLI
28+
program to verify your CSS instead of using the web site, then this guide is
2929
your best friend.
3030
https://github.com/CSSLint/csslint/wiki/Command-line-interface
3131

32-
### Build System
32+
### Build System
3333

3434
Once you're familiar with the CSSLint command line interface, the next step is
3535
to integrate it into your build system. This guide walks through using CSSLint
@@ -44,8 +44,8 @@ https://github.com/CSSLint/csslint/wiki/IDE-integration
4444

4545
## Rules
4646

47-
Not sure why a rule is important? This guide talks about each of the CSSLint
48-
rules and explains how the rule is designed to improve your CSS.
47+
Not sure why a rule is important? This guide talks about each of the CSSLint
48+
rules and explains how the rule is designed to improve your CSS.
4949
https://github.com/CSSLint/csslint/wiki/Rules
5050

5151
## Developer Guide

lib/yuitest-rhino-cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2066,7 +2066,7 @@ YUITest.TestCase.prototype = {
20662066
var actualDelay = (typeof segment == "number" ? segment : delay);
20672067
actualDelay = (typeof actualDelay == "number" ? actualDelay : 10000);
20682068

2069-
if (typeof segment == "function"){
2069+
if (typeof segment == "function"){
20702070
throw new YUITest.Wait(segment, actualDelay);
20712071
} else {
20722072
throw new YUITest.Wait(function(){

lib/yuitest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1950,7 +1950,7 @@ YUITest.TestCase.prototype = {
19501950
var actualDelay = (typeof segment == "number" ? segment : delay);
19511951
actualDelay = (typeof actualDelay == "number" ? actualDelay : 10000);
19521952

1953-
if (typeof segment == "function"){
1953+
if (typeof segment == "function"){
19541954
throw new YUITest.Wait(segment, actualDelay);
19551955
} else {
19561956
throw new YUITest.Wait(function(){

0 commit comments

Comments
 (0)