Browse Source

Add readme

tags/v0.1.1
Dylan Baker 4 years ago
parent
commit
3e246faf91
1 changed files with 30 additions and 0 deletions
  1. 30
    0
      README.md

+ 30
- 0
README.md View File

@@ -0,0 +1,30 @@
1
+# prettier-default-config
2
+
3
+This is a small CLI tool that dumps all of prettier's default configuration
4
+options to a file in the format of your choice.
5
+
6
+## Installation
7
+
8
+```
9
+npm install -g prettier-default-config
10
+```
11
+
12
+## Usage
13
+
14
+```
15
+USAGE
16
+    prettier-default-config [OPTIONS]
17
+
18
+OPTIONS:
19
+    --format <FORMAT> The config file format to generate.
20
+                      <json|yaml|toml|js|package.json>
21
+                      default: json
22
+
23
+    --stdout          Write config to STDOUT rather than to a file
24
+
25
+    --help            Prints help information
26
+```
27
+
28
+## License
29
+
30
+MIT

Loading…
Cancel
Save