You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,7 @@ You can even create a global config. Just go to your users home and create a `.s
45
45
-[emoji](#emoji)
46
46
-[types](#types)
47
47
-[rules](#rules)
48
+
-[inherit](#inherit)
48
49
49
50
### questions
50
51
@@ -180,3 +181,28 @@ Example:
180
181
}
181
182
}
182
183
```
184
+
185
+
### inherit
186
+
187
+
**Type:**`boolean | array`
188
+
189
+
**Default:**`false`
190
+
191
+
This will inherit every object entry which is given in the array. If this is set to true everything is inherited. The own configuration won't get overwritten.
192
+
193
+
Example:
194
+
```js
195
+
// following set "emoji" to true, and will inherit everything except "emoji" from the defaults.
196
+
{
197
+
"emoji":true,
198
+
"inherit":true
199
+
}
200
+
201
+
// following has "emoji" to true and just types are "types" from the defaults.
0 commit comments