File tree 2 files changed +37
-0
lines changed
2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 69
69
::
70
70
71
71
$ coala
72
+
73
+ coala-quickstart can also generate configuration files in TOML.
74
+ To generate a configuration file in TOML use
75
+
76
+ ::
77
+
78
+ $ coala-quickstart - T
79
+
80
+ Once you have completed these steps just execute coala from your project's
81
+ root:
82
+
83
+ ::
84
+
85
+ $ coala -T
Original file line number Diff line number Diff line change @@ -356,3 +356,26 @@ Using the above rules we get a configuration file in TOML
356
356
appends = 'bears'
357
357
language = 'Python'
358
358
remove_all_unused_imports = true
359
+
360
+ Configuration Converter Tool
361
+ -----------------------------
362
+
363
+ coala provides a tool to convert a coafile to a TOML file and vice
364
+ versa. You can use it by running
365
+
366
+ ::
367
+
368
+ $ coala -cc input_file output_file
369
+
370
+
371
+ -cc is short for --config-converter. It requires two arguments,
372
+ input configuration file and output configuration file.
373
+
374
+ For example
375
+
376
+ ::
377
+
378
+ $ coala -cc .coafile .coafile.toml
379
+
380
+
381
+ generates .coafile.toml from .coafile
You can’t perform that action at this time.
0 commit comments