-
-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy path.prettydiffrc
More file actions
33 lines (25 loc) · 742 Bytes
/
.prettydiffrc
File metadata and controls
33 lines (25 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// http://prettydiff.com/.prettydiffrc
//
// JSON format is supported, so please feel free to replace the contents of
// this file with JSON. Example:
//
// {"indent_size": 3, "wrap":80}
//
// Instead, you can also define the values using logic into the space
// provided. Example:
//
// option.indent_size = 3;
// if (option.mode === "beautify" || option.lang === "auto") {
// option.wrap = 120;
// }
//
// Only accepts documented option names with values in documented data types.
(function rc() {
"use strict";
const rclogic = function rc_logic(options) {
// edit below this line
// edit above this line
return options;
};
module.exports = rclogic;
}());