Skip to content

Commit fb31442

Browse files
committed
fix linting errors
1 parent 700b19d commit fb31442

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

bin/webpack-dev-server.js

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -18,48 +18,48 @@ var webpack = require("webpack");
1818

1919
var optimist = require("optimist")
2020

21-
.usage("webpack-dev-server " + require("../package.json").version + "\n" +
22-
"Usage: http://webpack.github.io/docs/webpack-dev-server.html")
21+
.usage("webpack-dev-server " + require("../package.json").version + "\n" +
22+
"Usage: http://webpack.github.io/docs/webpack-dev-server.html")
2323

24-
.boolean("lazy").describe("lazy")
24+
.boolean("lazy").describe("lazy")
2525

26-
.boolean("stdin").describe("stdin", "close when stdin ends")
26+
.boolean("stdin").describe("stdin", "close when stdin ends")
2727

28-
.boolean("info").describe("info").default("info", true)
28+
.boolean("info").describe("info").default("info", true)
2929

30-
.boolean("quiet").describe("quiet")
30+
.boolean("quiet").describe("quiet")
3131

32-
.boolean("inline").describe("inline", "Inline the webpack-dev-server logic into the bundle.")
32+
.boolean("inline").describe("inline", "Inline the webpack-dev-server logic into the bundle.")
3333

34-
.boolean("https").describe("https")
34+
.boolean("https").describe("https")
3535

36-
.string("key").describe("key", "Path to a SSL key.")
36+
.string("key").describe("key", "Path to a SSL key.")
3737

38-
.string("cert").describe("cert", "Path to a SSL certificate.")
38+
.string("cert").describe("cert", "Path to a SSL certificate.")
3939

40-
.string("cacert").describe("cacert", "Path to a SSL CA certificate.")
40+
.string("cacert").describe("cacert", "Path to a SSL CA certificate.")
4141

42-
.string("pfx").describe("pfx", "Path to a SSL pfx file.")
42+
.string("pfx").describe("pfx", "Path to a SSL pfx file.")
4343

44-
.string("pfx-passphrase").describe("pfx-passphrase", "Passphrase for pfx file.")
44+
.string("pfx-passphrase").describe("pfx-passphrase", "Passphrase for pfx file.")
4545

46-
.string("content-base").describe("content-base", "A directory or URL to serve HTML content from.")
46+
.string("content-base").describe("content-base", "A directory or URL to serve HTML content from.")
4747

48-
.string("content-base-target").describe("content-base-target", "Proxy requests to this target.")
48+
.string("content-base-target").describe("content-base-target", "Proxy requests to this target.")
4949

50-
.boolean("history-api-fallback").describe("history-api-fallback", "Fallback to /index.html for Single Page Applications.")
50+
.boolean("history-api-fallback").describe("history-api-fallback", "Fallback to /index.html for Single Page Applications.")
5151

52-
.string("client-log-level").describe("client-log-level", "Log level in the browser (info, warning, error or none)").default("client-log-level", "info")
52+
.string("client-log-level").describe("client-log-level", "Log level in the browser (info, warning, error or none)").default("client-log-level", "info")
5353

54-
.boolean("compress").describe("compress", "enable gzip compression")
54+
.boolean("compress").describe("compress", "enable gzip compression")
5555

56-
.boolean("open").describe("open", "Open default browser")
56+
.boolean("open").describe("open", "Open default browser")
5757

58-
.describe("port", "The port").default("port", 8080)
58+
.describe("port", "The port").default("port", 8080)
5959

60-
.describe("public", "The public hostname/ip address of the server")
60+
.describe("public", "The public hostname/ip address of the server")
6161

62-
.describe("host", "The hostname/ip address the server will bind to").default("host", "localhost");
62+
.describe("host", "The hostname/ip address the server will bind to").default("host", "localhost");
6363

6464
require("webpack/bin/config-optimist")(optimist);
6565

0 commit comments

Comments
 (0)