prettydocs-jekyll 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +5 -5
  2. data/_data/default/faqs.yml +24 -1
  3. data/_data/default/timeline.yml +2 -8
  4. data/_includes/_partials/social-buttons.html +4 -4
  5. data/_includes/_partials/toc.html +10 -9
  6. data/_includes/_sections/blog_post.html +2 -2
  7. data/_includes/_sections/cards.html +1 -1
  8. data/_includes/_sections/contact.html +3 -3
  9. data/_includes/_sections/faqs.html +1 -1
  10. data/_includes/_sections/timeline.html +38 -35
  11. data/_includes/_theme/footer.html +1 -1
  12. data/_includes/_theme/head.html +9 -4
  13. data/_includes/_theme/header.html +7 -3
  14. data/_includes/_theme/js.html +21 -6
  15. data/_layouts/default.html +1 -3
  16. data/_layouts/faqs.html +19 -5
  17. data/_layouts/page.html +17 -13
  18. data/_layouts/post.html +40 -2
  19. data/_sass/prettydocs-jekyll.scss +1 -18
  20. data/_sass/vendor/_prettydocs.scss +47 -0
  21. data/_sass/vendor/prettydocs/_base.scss +343 -0
  22. data/_sass/{partials → vendor/prettydocs}/_doc.scss +250 -24
  23. data/_sass/{partials/_contact.scss → vendor/prettydocs/_extra.scss} +2 -4
  24. data/_sass/{partials/_cards.scss → vendor/prettydocs/_landing.scss} +101 -6
  25. data/_sass/vendor/prettydocs/_mixins.scss +175 -0
  26. data/_sass/vendor/prettydocs/config.codekit3 +2439 -0
  27. data/assets/js/main.js +12 -28
  28. metadata +18 -26
  29. data/_sass/globals/_base.scss +0 -44
  30. data/_sass/globals/_mixins.scss +0 -175
  31. data/_sass/partials/_base.scss +0 -109
  32. data/_sass/partials/_buttons.scss +0 -97
  33. data/_sass/partials/_footer.scss +0 -8
  34. data/_sass/partials/_header.scss +0 -91
  35. data/_sass/partials/_helper.scss +0 -42
  36. data/_sass/partials/_landing.scss +0 -61
  37. data/_sass/partials/_post.scss +0 -32
  38. data/_sass/partials/_resources.scss +0 -10
  39. data/_sass/partials/_toc.scss +0 -163
@@ -0,0 +1,175 @@
1
+ @mixin text-shadow ($string: 0 1px 3px rgba(0, 0, 0, 0.25)) {
2
+ text-shadow: $string;
3
+ }
4
+ @mixin box-shadow ($string) {
5
+ -webkit-box-shadow: $string;
6
+ -moz-box-shadow: $string;
7
+ box-shadow: $string;
8
+ }
9
+
10
+ @mixin box-sizing ($type: border-box) {
11
+ -webkit-box-sizing: $type;
12
+ -moz-box-sizing: $type;
13
+ box-sizing: $type;
14
+ }
15
+
16
+ @mixin border-radius ($radius: 5px) {
17
+ -webkit-border-radius: $radius;
18
+ -moz-border-radius: $radius;
19
+ -ms-border-radius: $radius;
20
+ -o-border-radius: $radius;
21
+ border-radius: $radius;
22
+
23
+ -moz-background-clip: padding;
24
+ -webkit-background-clip: padding-box;
25
+ background-clip: padding-box;
26
+ }
27
+ @mixin border-radiuses ($topright: 0, $bottomright: 0, $bottomleft: 0, $topleft: 0) {
28
+ -webkit-border-top-right-radius: $topright;
29
+ -webkit-border-bottom-right-radius: $bottomright;
30
+ -webkit-border-bottom-left-radius: $bottomleft;
31
+ -webkit-border-top-left-radius: $topleft;
32
+
33
+ -moz-border-radius-topright: $topright;
34
+ -moz-border-radius-bottomright: $bottomright;
35
+ -moz-border-radius-bottomleft: $bottomleft;
36
+ -moz-border-radius-topleft: $topleft;
37
+
38
+ border-top-right-radius: $topright;
39
+ border-bottom-right-radius: $bottomright;
40
+ border-bottom-left-radius: $bottomleft;
41
+ border-top-left-radius: $topleft;
42
+
43
+ -moz-background-clip: padding;
44
+ -webkit-background-clip: padding-box;
45
+ background-clip: padding-box;
46
+ }
47
+
48
+ @mixin opacity ($opacity: 0.5) {
49
+ -webkit-opacity: $opacity;
50
+ -moz-opacity: $opacity;
51
+ opacity: $opacity;
52
+ }
53
+
54
+ @mixin gradient ($startColor: #eee, $endColor: white) {
55
+ background-color: $startColor;
56
+ background: -webkit-gradient(linear, left top, left bottom, from($startColor), to($endColor));
57
+ background: -webkit-linear-gradient(top, $startColor, $endColor);
58
+ background: -moz-linear-gradient(top, $startColor, $endColor);
59
+ background: -ms-linear-gradient(top, $startColor, $endColor);
60
+ background: -o-linear-gradient(top, $startColor, $endColor);
61
+ }
62
+ @mixin horizontal-gradient ($startColor: #eee, $endColor: white) {
63
+ background-color: $startColor;
64
+ background-image: -webkit-gradient(linear, left top, right top, from($startColor), to($endColor));
65
+ background-image: -webkit-linear-gradient(left, $startColor, $endColor);
66
+ background-image: -moz-linear-gradient(left, $startColor, $endColor);
67
+ background-image: -ms-linear-gradient(left, $startColor, $endColor);
68
+ background-image: -o-linear-gradient(left, $startColor, $endColor);
69
+ }
70
+
71
+ @mixin animation ($name, $duration: 300ms, $delay: 0, $ease: ease) {
72
+ -webkit-animation: $name $duration $delay $ease;
73
+ -moz-animation: $name $duration $delay $ease;
74
+ -ms-animation: $name $duration $delay $ease;
75
+ }
76
+
77
+ @mixin transition ($transition) {
78
+ -webkit-transition: $transition;
79
+ -moz-transition: $transition;
80
+ -ms-transition: $transition;
81
+ -o-transition: $transition;
82
+ }
83
+ @mixin transform($string){
84
+ -webkit-transform: $string;
85
+ -moz-transform: $string;
86
+ -ms-transform: $string;
87
+ -o-transform: $string;
88
+ }
89
+ @mixin scale ($factor) {
90
+ -webkit-transform: scale($factor);
91
+ -moz-transform: scale($factor);
92
+ -ms-transform: scale($factor);
93
+ -o-transform: scale($factor);
94
+ }
95
+ @mixin rotate ($deg) {
96
+ -webkit-transform: rotate($deg);
97
+ -moz-transform: rotate($deg);
98
+ -ms-transform: rotate($deg);
99
+ -o-transform: rotate($deg);
100
+ }
101
+ @mixin skew ($deg, $deg2) {
102
+ -webkit-transform: skew($deg, $deg2);
103
+ -moz-transform: skew($deg, $deg2);
104
+ -ms-transform: skew($deg, $deg2);
105
+ -o-transform: skew($deg, $deg2);
106
+ }
107
+ @mixin translate ($x, $y:0) {
108
+ -webkit-transform: translate($x, $y);
109
+ -moz-transform: translate($x, $y);
110
+ -ms-transform: translate($x, $y);
111
+ -o-transform: translate($x, $y);
112
+ }
113
+ @mixin translate3d ($x, $y: 0, $z: 0) {
114
+ -webkit-transform: translate3d($x, $y, $z);
115
+ -moz-transform: translate3d($x, $y, $z);
116
+ -ms-transform: translate3d($x, $y, $z);
117
+ -o-transform: translate3d($x, $y, $z);
118
+ }
119
+ @mixin perspective ($value: 1000) {
120
+ -webkit-perspective: $value;
121
+ -moz-perspective: $value;
122
+ -ms-perspective: $value;
123
+ perspective: $value;
124
+ }
125
+ @mixin transform-origin ($x:center, $y:center) {
126
+ -webkit-transform-origin: $x $y;
127
+ -moz-transform-origin: $x $y;
128
+ -ms-transform-origin: $x $y;
129
+ -o-transform-origin: $x $y;
130
+ }
131
+
132
+ @mixin reset-box-sizing ($size:content-box) {
133
+ &,
134
+ *,
135
+ *:before,
136
+ *:after {
137
+ @include box-sizing($size);
138
+ }
139
+ }
140
+
141
+ @mixin truncate ($max-width: 250px) {
142
+ max-width: $max-width;
143
+ white-space: nowrap;
144
+ overflow: hidden;
145
+ text-overflow: ellipsis;
146
+ }
147
+
148
+ @mixin background-size ($string: contain) {
149
+ -webkit-background-size: $string;
150
+ -moz-background-size: $string;
151
+ -o-background-size: $string;
152
+ background-size: $string;
153
+ }
154
+
155
+ @mixin placeholder ($color: #999) {
156
+ &::-webkit-input-placeholder { /* WebKit browsers */
157
+ color: $color;
158
+ }
159
+ &:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
160
+ color: $color;
161
+ }
162
+ &::-moz-placeholder { /* Mozilla Firefox 19+ */
163
+ color: $color;
164
+ }
165
+ &:-ms-input-placeholder { /* Internet Explorer 10+ */
166
+ color: $color;
167
+ }
168
+ }
169
+
170
+
171
+
172
+
173
+
174
+
175
+
@@ -0,0 +1,2439 @@
1
+ {
2
+ "AAInfo": "This is a CodeKit 3 project config file. MODIFYING THE CONTENTS OF THIS FILE IS A POOR LIFE DECISION. Doing so will cause CodeKit to crash and/or corrupt your project. I know it looks like JSON, but it is *not*. Many numbers in this file are 64-bit long long bitFlags, which JSON does not support. These numbers *cannot* be treated as discrete values and if you attempt to parse this file as standard JSON with any public JSON parser, these values will be corrupted. This file is not backwards-compatible with CodeKit 1 or 2. For more information, see https://codekitapp.com/",
3
+ "buildSteps": [
4
+ {
5
+ "name": "Process All Remaining Files and Folders",
6
+ "stepType": 1,
7
+ "uuidString": "42AC6E17-C560-4DF4-974F-BAE8DF455050"
8
+ }
9
+ ],
10
+ "creatorBuild": "29156",
11
+ "files": {
12
+ "/_base.scss": {
13
+ "aP": 0,
14
+ "bl": 0,
15
+ "dP": 10,
16
+ "dS": 0,
17
+ "ft": 4,
18
+ "ma": 0,
19
+ "oA": 1,
20
+ "oAP": "/_base.css",
21
+ "oF": 0,
22
+ "oS": 0,
23
+ "uL": 1
24
+ },
25
+ "/_doc.scss": {
26
+ "aP": 0,
27
+ "bl": 0,
28
+ "dP": 10,
29
+ "dS": 0,
30
+ "ft": 4,
31
+ "ma": 0,
32
+ "oA": 1,
33
+ "oAP": "/_doc.css",
34
+ "oF": 0,
35
+ "oS": 0,
36
+ "uL": 1
37
+ },
38
+ "/_landing.scss": {
39
+ "aP": 0,
40
+ "bl": 0,
41
+ "dP": 10,
42
+ "dS": 0,
43
+ "ft": 4,
44
+ "ma": 0,
45
+ "oA": 1,
46
+ "oAP": "/_landing.css",
47
+ "oF": 0,
48
+ "oS": 0,
49
+ "uL": 1
50
+ },
51
+ "/_mixins.scss": {
52
+ "aP": 0,
53
+ "bl": 0,
54
+ "dP": 10,
55
+ "dS": 0,
56
+ "ft": 4,
57
+ "ma": 0,
58
+ "oA": 1,
59
+ "oAP": "/_mixins.css",
60
+ "oF": 0,
61
+ "oS": 0,
62
+ "uL": 1
63
+ },
64
+ "/styles.scss": {
65
+ "aP": 0,
66
+ "bl": 0,
67
+ "dP": 10,
68
+ "dS": 0,
69
+ "ft": 4,
70
+ "ma": 0,
71
+ "oA": 0,
72
+ "oAP": "/Users/Riley/Sites/htdocs/prettydocs-bs4/prettydocs-git/assets/css/styles.css",
73
+ "oF": 7,
74
+ "oS": 1,
75
+ "uL": 1
76
+ }
77
+ },
78
+ "hooks": [
79
+ ],
80
+ "manualImportLinks": {
81
+ },
82
+ "projectAttributes": {
83
+ "creationDate": 553597188,
84
+ "displayValue": "PrettyDocs BS4 Git",
85
+ "displayValueWasSetByUser": 1,
86
+ "iconImageName": "meme-drunkArcher",
87
+ "iconImageWasSetByUser": 0
88
+ },
89
+ "projectSettings": {
90
+ "abortBuildOnError": 1,
91
+ "alwaysUseExternalServer": 0,
92
+ "animateCSSInjections": 1,
93
+ "autoBuildNewItems": 1,
94
+ "autoprefixerEnableIEGrid": 0,
95
+ "babel7PresetType": 1,
96
+ "babelAllowRCFiles": 0,
97
+ "babelAuxiliaryCommentAfter": "",
98
+ "babelAuxiliaryCommentBefore": "",
99
+ "babelConfigType": 0,
100
+ "babelCustomPluginsList": "",
101
+ "babelCustomPresetsList": "",
102
+ "babelInsertModuleIDs": 0,
103
+ "babelModuleID": "",
104
+ "babelNoComments": 0,
105
+ "babelPlugins": {
106
+ "arrow-functions": {
107
+ "active": 0
108
+ },
109
+ "async-generator-functions": {
110
+ "active": 0
111
+ },
112
+ "async-to-generator": {
113
+ "active": 0
114
+ },
115
+ "block-scoped-functions": {
116
+ "active": 0
117
+ },
118
+ "block-scoping": {
119
+ "active": 0
120
+ },
121
+ "class-properties": {
122
+ "active": 0
123
+ },
124
+ "classes": {
125
+ "active": 0
126
+ },
127
+ "computed-properties": {
128
+ "active": 0
129
+ },
130
+ "decorators": {
131
+ "active": 0
132
+ },
133
+ "destructuring": {
134
+ "active": 0
135
+ },
136
+ "do-expressions": {
137
+ "active": 0
138
+ },
139
+ "dotall-regex": {
140
+ "active": 0
141
+ },
142
+ "duplicate-keys": {
143
+ "active": 0
144
+ },
145
+ "exponentiation-operator": {
146
+ "active": 0
147
+ },
148
+ "export-default-from": {
149
+ "active": 0
150
+ },
151
+ "export-namespace-from": {
152
+ "active": 0
153
+ },
154
+ "external-helpers": {
155
+ "active": 0
156
+ },
157
+ "flow-strip-types": {
158
+ "active": 0
159
+ },
160
+ "for-of": {
161
+ "active": 0
162
+ },
163
+ "function-bind": {
164
+ "active": 0
165
+ },
166
+ "function-name": {
167
+ "active": 0
168
+ },
169
+ "function-sent": {
170
+ "active": 0
171
+ },
172
+ "inline-consecutive-adds": {
173
+ "active": 0
174
+ },
175
+ "inline-environment-variables": {
176
+ "active": 0
177
+ },
178
+ "instanceof": {
179
+ "active": 0
180
+ },
181
+ "jscript": {
182
+ "active": 0
183
+ },
184
+ "literals": {
185
+ "active": 0
186
+ },
187
+ "logical-assignment-operators": {
188
+ "active": 0
189
+ },
190
+ "member-expression-literals": {
191
+ "active": 0
192
+ },
193
+ "merge-sibling-variables": {
194
+ "active": 0
195
+ },
196
+ "minify-booleans": {
197
+ "active": 0
198
+ },
199
+ "minify-builtins": {
200
+ "active": 0
201
+ },
202
+ "minify-constant-folding": {
203
+ "active": 0
204
+ },
205
+ "minify-dead-code-elimination": {
206
+ "active": 0
207
+ },
208
+ "minify-flip-comparisons": {
209
+ "active": 0
210
+ },
211
+ "minify-guarded-expressions": {
212
+ "active": 0
213
+ },
214
+ "minify-infinity": {
215
+ "active": 0
216
+ },
217
+ "minify-mangle-names": {
218
+ "active": 0
219
+ },
220
+ "minify-numeric-literals": {
221
+ "active": 0
222
+ },
223
+ "minify-simplify": {
224
+ "active": 0
225
+ },
226
+ "minify-type-constructors": {
227
+ "active": 0
228
+ },
229
+ "modules-amd": {
230
+ "active": 0
231
+ },
232
+ "modules-commonjs": {
233
+ "active": 0
234
+ },
235
+ "modules-systemjs": {
236
+ "active": 0
237
+ },
238
+ "modules-umd": {
239
+ "active": 0
240
+ },
241
+ "new-target": {
242
+ "active": 0
243
+ },
244
+ "node-env-inline": {
245
+ "active": 0
246
+ },
247
+ "nullish-coalescing-operator": {
248
+ "active": 0
249
+ },
250
+ "numeric-separator": {
251
+ "active": 0
252
+ },
253
+ "object-assign": {
254
+ "active": 0
255
+ },
256
+ "object-rest-spread": {
257
+ "active": 0
258
+ },
259
+ "object-set-prototype-of-to-assign": {
260
+ "active": 0
261
+ },
262
+ "object-super": {
263
+ "active": 0
264
+ },
265
+ "optional-catch-binding": {
266
+ "active": 0
267
+ },
268
+ "optional-chaining": {
269
+ "active": 0
270
+ },
271
+ "parameters": {
272
+ "active": 0
273
+ },
274
+ "pipeline-operator": {
275
+ "active": 0
276
+ },
277
+ "private-methods": {
278
+ "active": 0
279
+ },
280
+ "property-literals": {
281
+ "active": 0
282
+ },
283
+ "property-mutators": {
284
+ "active": 0
285
+ },
286
+ "proto-to-assign": {
287
+ "active": 0
288
+ },
289
+ "react-constant-elements": {
290
+ "active": 0
291
+ },
292
+ "react-display-name": {
293
+ "active": 0
294
+ },
295
+ "react-inline-elements": {
296
+ "active": 0
297
+ },
298
+ "react-jsx": {
299
+ "active": 0
300
+ },
301
+ "react-jsx-compat": {
302
+ "active": 0
303
+ },
304
+ "react-jsx-self": {
305
+ "active": 0
306
+ },
307
+ "react-jsx-source": {
308
+ "active": 0
309
+ },
310
+ "regenerator": {
311
+ "active": 0
312
+ },
313
+ "regexp-constructors": {
314
+ "active": 0
315
+ },
316
+ "remove-console": {
317
+ "active": 0
318
+ },
319
+ "remove-debugger": {
320
+ "active": 0
321
+ },
322
+ "remove-undefined": {
323
+ "active": 0
324
+ },
325
+ "reserved-words": {
326
+ "active": 0
327
+ },
328
+ "runtime": {
329
+ "active": 0
330
+ },
331
+ "shorthand-properties": {
332
+ "active": 0
333
+ },
334
+ "simplify-comparison-operators": {
335
+ "active": 0
336
+ },
337
+ "spread": {
338
+ "active": 0
339
+ },
340
+ "sticky-regex": {
341
+ "active": 0
342
+ },
343
+ "strict-mode": {
344
+ "active": 0
345
+ },
346
+ "template-literals": {
347
+ "active": 0
348
+ },
349
+ "throw-expressions": {
350
+ "active": 0
351
+ },
352
+ "typeof-symbol": {
353
+ "active": 0
354
+ },
355
+ "undefined-to-void": {
356
+ "active": 0
357
+ },
358
+ "unicode-property-regex": {
359
+ "active": 0
360
+ },
361
+ "unicode-regex": {
362
+ "active": 0
363
+ }
364
+ },
365
+ "babelRetainLines": 0,
366
+ "bowerAbbreviatedPath": "bower_components",
367
+ "bowerAutoCreateInfoFile": 1,
368
+ "bowerInstallDevDependencies": 0,
369
+ "bowerSaveDependencies": 1,
370
+ "bowerSaveDevDependencies": 0,
371
+ "bowerUseExactVersion": 0,
372
+ "browserRefreshDelay": 0,
373
+ "browserslistString": ">0.2%, last 2 versions, Firefox ESR, not dead",
374
+ "buildFolderActive": 0,
375
+ "buildFolderName": "build",
376
+ "cleanBuild": 1,
377
+ "coffeeLintFlags2": {
378
+ "arrow_spacing": {
379
+ "active": 0,
380
+ "flagValue": -1
381
+ },
382
+ "camel_case_classes": {
383
+ "active": 1,
384
+ "flagValue": -1
385
+ },
386
+ "colon_assignment_spacing": {
387
+ "active": 0,
388
+ "flagValue": 1
389
+ },
390
+ "cyclomatic_complexity": {
391
+ "active": 0,
392
+ "flagValue": 10
393
+ },
394
+ "duplicate_key": {
395
+ "active": 1,
396
+ "flagValue": -1
397
+ },
398
+ "empty_constructor_needs_parens": {
399
+ "active": 0,
400
+ "flagValue": -1
401
+ },
402
+ "ensure_comprehensions": {
403
+ "active": 1,
404
+ "flagValue": -1
405
+ },
406
+ "indentation": {
407
+ "active": 1,
408
+ "flagValue": 2
409
+ },
410
+ "line_endings": {
411
+ "active": 0,
412
+ "flagValue": 0
413
+ },
414
+ "max_line_length": {
415
+ "active": 0,
416
+ "flagValue": 150
417
+ },
418
+ "missing_fat_arrows": {
419
+ "active": 0,
420
+ "flagValue": -1
421
+ },
422
+ "newlines_after_classes": {
423
+ "active": 0,
424
+ "flagValue": 3
425
+ },
426
+ "no_backticks": {
427
+ "active": 1,
428
+ "flagValue": -1
429
+ },
430
+ "no_debugger": {
431
+ "active": 1,
432
+ "flagValue": -1
433
+ },
434
+ "no_empty_functions": {
435
+ "active": 0,
436
+ "flagValue": -1
437
+ },
438
+ "no_empty_param_list": {
439
+ "active": 0,
440
+ "flagValue": -1
441
+ },
442
+ "no_implicit_braces": {
443
+ "active": 1,
444
+ "flagValue": -1
445
+ },
446
+ "no_implicit_parens": {
447
+ "active": 0,
448
+ "flagValue": -1
449
+ },
450
+ "no_interpolation_in_single_quotes": {
451
+ "active": 0,
452
+ "flagValue": -1
453
+ },
454
+ "no_nested_string_interpolation": {
455
+ "active": 1,
456
+ "flagValue": -1
457
+ },
458
+ "no_plusplus": {
459
+ "active": 0,
460
+ "flagValue": -1
461
+ },
462
+ "no_private_function_fat_arrows": {
463
+ "active": 1,
464
+ "flagValue": -1
465
+ },
466
+ "no_stand_alone_at": {
467
+ "active": 1,
468
+ "flagValue": -1
469
+ },
470
+ "no_tabs": {
471
+ "active": 1,
472
+ "flagValue": -1
473
+ },
474
+ "no_this": {
475
+ "active": 0,
476
+ "flagValue": -1
477
+ },
478
+ "no_throwing_strings": {
479
+ "active": 1,
480
+ "flagValue": -1
481
+ },
482
+ "no_trailing_semicolons": {
483
+ "active": 1,
484
+ "flagValue": -1
485
+ },
486
+ "no_trailing_whitespace": {
487
+ "active": 1,
488
+ "flagValue": -1
489
+ },
490
+ "no_unnecessary_double_quotes": {
491
+ "active": 0,
492
+ "flagValue": -1
493
+ },
494
+ "no_unnecessary_fat_arrows": {
495
+ "active": 1,
496
+ "flagValue": -1
497
+ },
498
+ "non_empty_constructor_needs_parens": {
499
+ "active": 0,
500
+ "flagValue": -1
501
+ },
502
+ "prefer_english_operator": {
503
+ "active": 0,
504
+ "flagValue": -1
505
+ },
506
+ "space_operators": {
507
+ "active": 0,
508
+ "flagValue": -1
509
+ },
510
+ "spacing_after_comma": {
511
+ "active": 1,
512
+ "flagValue": -1
513
+ }
514
+ },
515
+ "esLintConfigFileHandlingType": 0,
516
+ "esLintECMAVersion": 7,
517
+ "esLintEnvironmentsMask": 1,
518
+ "esLintRules": {
519
+ "accessor-pairs": {
520
+ "active": 0,
521
+ "optionString": "{'setWithoutGet': true, 'getWithoutSet': false}"
522
+ },
523
+ "array-bracket-newline": {
524
+ "active": 0,
525
+ "optionString": "{'multiline': true, 'minItems': null}"
526
+ },
527
+ "array-bracket-spacing": {
528
+ "active": 0,
529
+ "optionString": "'never', {'singleValue': false, 'objectsInArrays': false, 'arraysInArrays': false}"
530
+ },
531
+ "array-callback-return": {
532
+ "active": 0,
533
+ "optionString": "{'allowImplicit': false}"
534
+ },
535
+ "array-element-newline": {
536
+ "active": 0,
537
+ "optionString": "'always'"
538
+ },
539
+ "arrow-body-style": {
540
+ "active": 0,
541
+ "optionString": "'as-needed', {'requireReturnForObjectLiteral': false}"
542
+ },
543
+ "arrow-parens": {
544
+ "active": 0,
545
+ "optionString": "'always'"
546
+ },
547
+ "arrow-spacing": {
548
+ "active": 0,
549
+ "optionString": "{'before': true, 'after': true}"
550
+ },
551
+ "block-scoped-var": {
552
+ "active": 0,
553
+ "optionString": ""
554
+ },
555
+ "block-spacing": {
556
+ "active": 0,
557
+ "optionString": "'always'"
558
+ },
559
+ "brace-style": {
560
+ "active": 0,
561
+ "optionString": "'1tbs', {'allowSingleLine': true}"
562
+ },
563
+ "callback-return": {
564
+ "active": 0,
565
+ "optionString": "['callback', 'cb', 'next']"
566
+ },
567
+ "camelcase": {
568
+ "active": 0,
569
+ "optionString": "{'properties': 'always'}"
570
+ },
571
+ "capitalized-comments": {
572
+ "active": 0,
573
+ "optionString": "'always', {'ignoreInlineComments': false, 'ignoreConsecutiveComments': false}"
574
+ },
575
+ "class-methods-use-this": {
576
+ "active": 0,
577
+ "optionString": "{'exceptMethods': []}"
578
+ },
579
+ "comma-dangle": {
580
+ "active": 1,
581
+ "optionString": "'never'"
582
+ },
583
+ "comma-spacing": {
584
+ "active": 0,
585
+ "optionString": "{'before': false, 'after': true}"
586
+ },
587
+ "comma-style": {
588
+ "active": 0,
589
+ "optionString": "'last'"
590
+ },
591
+ "complexity": {
592
+ "active": 0,
593
+ "optionString": "20"
594
+ },
595
+ "computed-property-spacing": {
596
+ "active": 0,
597
+ "optionString": "'never'"
598
+ },
599
+ "consistent-return": {
600
+ "active": 0,
601
+ "optionString": "{'treatUndefinedAsUnspecified': false}"
602
+ },
603
+ "consistent-this": {
604
+ "active": 0,
605
+ "optionString": "'that'"
606
+ },
607
+ "constructor-super": {
608
+ "active": 1,
609
+ "optionString": ""
610
+ },
611
+ "curly": {
612
+ "active": 0,
613
+ "optionString": "'all'"
614
+ },
615
+ "default-case": {
616
+ "active": 0,
617
+ "optionString": ""
618
+ },
619
+ "dot-location": {
620
+ "active": 0,
621
+ "optionString": "'object'"
622
+ },
623
+ "dot-notation": {
624
+ "active": 0,
625
+ "optionString": "{'allowKeywords': false}"
626
+ },
627
+ "eol-last": {
628
+ "active": 0,
629
+ "optionString": "'always'"
630
+ },
631
+ "eqeqeq": {
632
+ "active": 0,
633
+ "optionString": "'always', {'null': 'always'}"
634
+ },
635
+ "for-direction": {
636
+ "active": 0,
637
+ "optionString": ""
638
+ },
639
+ "func-call-spacing": {
640
+ "active": 0,
641
+ "optionString": "'never'"
642
+ },
643
+ "func-name-matching": {
644
+ "active": 0,
645
+ "optionString": "'always', {'includeCommonJSModuleExports': false}"
646
+ },
647
+ "func-names": {
648
+ "active": 0,
649
+ "optionString": "'always'"
650
+ },
651
+ "func-style": {
652
+ "active": 0,
653
+ "optionString": "'expression'"
654
+ },
655
+ "function-paren-newline": {
656
+ "active": 0,
657
+ "optionString": "'multiline'"
658
+ },
659
+ "generator-star-spacing": {
660
+ "active": 0,
661
+ "optionString": "{'before': true, 'after': false}"
662
+ },
663
+ "getter-return": {
664
+ "active": 0,
665
+ "optionString": "{'allowImplicit': false}"
666
+ },
667
+ "global-require": {
668
+ "active": 0,
669
+ "optionString": ""
670
+ },
671
+ "guard-for-in": {
672
+ "active": 0,
673
+ "optionString": ""
674
+ },
675
+ "handle-callback-err": {
676
+ "active": 0,
677
+ "optionString": "'err'"
678
+ },
679
+ "id-blacklist": {
680
+ "active": 0,
681
+ "optionString": "'data', 'err', 'e', 'cb', 'callback'"
682
+ },
683
+ "id-length": {
684
+ "active": 0,
685
+ "optionString": "{'min': 2, 'max': 1000, 'properties': 'always', 'exceptions': ['x', 'i', 'y']}"
686
+ },
687
+ "id-match": {
688
+ "active": 0,
689
+ "optionString": "'^[a-z]+([A-Z][a-z]+)*$', {'properties': false, 'onlyDeclarations': true}"
690
+ },
691
+ "implicit-arrow-linebreak": {
692
+ "active": 0,
693
+ "optionString": "'beside'"
694
+ },
695
+ "indent": {
696
+ "active": 0,
697
+ "optionString": "4, {'SwitchCase': 0, 'VariableDeclarator': 1, 'outerIIFEBody': 1 }"
698
+ },
699
+ "init-declarations": {
700
+ "active": 0,
701
+ "optionString": "'always', {'ignoreForLoopInit': true}"
702
+ },
703
+ "jsx-quotes": {
704
+ "active": 0,
705
+ "optionString": "'prefer-double'"
706
+ },
707
+ "key-spacing": {
708
+ "active": 0,
709
+ "optionString": "{'singleLine': {'beforeColon': false, 'afterColon': true, 'mode':'strict'}, 'multiLine': {'beforeColon': false, 'afterColon': true, 'align': 'value', 'mode':'minimum'}}"
710
+ },
711
+ "keyword-spacing": {
712
+ "active": 0,
713
+ "optionString": "{'before': true, 'after': true, 'overrides': {}}"
714
+ },
715
+ "line-comment-position": {
716
+ "active": 0,
717
+ "optionString": "{'position': 'above'}"
718
+ },
719
+ "linebreak-style": {
720
+ "active": 0,
721
+ "optionString": "'unix'"
722
+ },
723
+ "lines-around-comment": {
724
+ "active": 0,
725
+ "optionString": "{'beforeBlockComment': true}"
726
+ },
727
+ "lines-between-class-members": {
728
+ "active": 0,
729
+ "optionString": "'always', {exceptAfterSingleLine: false}"
730
+ },
731
+ "max-classes-per-file": {
732
+ "active": 0,
733
+ "optionString": "1"
734
+ },
735
+ "max-depth": {
736
+ "active": 0,
737
+ "optionString": "{'max': 4}"
738
+ },
739
+ "max-len": {
740
+ "active": 0,
741
+ "optionString": "{'code': 80, 'comments': 80, 'tabWidth': 4, 'ignoreUrls': true, 'ignoreStrings': true, 'ignoreTemplateLiterals': true, 'ignoreRegExpLiterals': true}"
742
+ },
743
+ "max-lines": {
744
+ "active": 0,
745
+ "optionString": "{'max': 300, 'skipBlankLines': true, 'skipComments': true}"
746
+ },
747
+ "max-lines-per-function": {
748
+ "active": 0,
749
+ "optionString": "{'max': 50, 'skipBlankLines': true, 'skipComments': true, 'IIFEs': false}"
750
+ },
751
+ "max-nested-callbacks": {
752
+ "active": 0,
753
+ "optionString": "{'max': 10}"
754
+ },
755
+ "max-params": {
756
+ "active": 0,
757
+ "optionString": "{'max': 4}"
758
+ },
759
+ "max-statements": {
760
+ "active": 0,
761
+ "optionString": "{'max': 10}, {'ignoreTopLevelFunctions': true}"
762
+ },
763
+ "max-statements-per-line": {
764
+ "active": 0,
765
+ "optionString": "{'max': 1}"
766
+ },
767
+ "multiline-comment-style": {
768
+ "active": 0,
769
+ "optionString": "'starred-block'"
770
+ },
771
+ "multiline-ternary": {
772
+ "active": 0,
773
+ "optionString": "'always'"
774
+ },
775
+ "new-cap": {
776
+ "active": 0,
777
+ "optionString": "{'newIsCap': true, 'capIsNew': true, 'newIsCapExceptions': [], 'capIsNewExceptions': ['Array', 'Boolean', 'Date', 'Error', 'Function', 'Number', 'Object', 'RegExp', 'String', 'Symbol'], 'properties': true}"
778
+ },
779
+ "new-parens": {
780
+ "active": 0,
781
+ "optionString": ""
782
+ },
783
+ "newline-per-chained-call": {
784
+ "active": 0,
785
+ "optionString": "{'ignoreChainWithDepth': 2}"
786
+ },
787
+ "no-alert": {
788
+ "active": 0,
789
+ "optionString": ""
790
+ },
791
+ "no-array-constructor": {
792
+ "active": 0,
793
+ "optionString": ""
794
+ },
795
+ "no-async-promise-executor": {
796
+ "active": 0,
797
+ "optionString": ""
798
+ },
799
+ "no-await-in-loop": {
800
+ "active": 0,
801
+ "optionString": ""
802
+ },
803
+ "no-bitwise": {
804
+ "active": 0,
805
+ "optionString": "{'allow': ['~'], 'int32Hint': true}"
806
+ },
807
+ "no-buffer-constructor": {
808
+ "active": 0,
809
+ "optionString": ""
810
+ },
811
+ "no-caller": {
812
+ "active": 0,
813
+ "optionString": ""
814
+ },
815
+ "no-case-declarations": {
816
+ "active": 1,
817
+ "optionString": ""
818
+ },
819
+ "no-class-assign": {
820
+ "active": 1,
821
+ "optionString": ""
822
+ },
823
+ "no-compare-neg-zero": {
824
+ "active": 0,
825
+ "optionString": ""
826
+ },
827
+ "no-cond-assign": {
828
+ "active": 1,
829
+ "optionString": "'except-parens'"
830
+ },
831
+ "no-confusing-arrow": {
832
+ "active": 0,
833
+ "optionString": "{'allowParens': false}"
834
+ },
835
+ "no-console": {
836
+ "active": 1,
837
+ "optionString": "{'allow': ['warn', 'error']}"
838
+ },
839
+ "no-const-assign": {
840
+ "active": 1,
841
+ "optionString": ""
842
+ },
843
+ "no-constant-condition": {
844
+ "active": 1,
845
+ "optionString": "{'checkLoops': true}"
846
+ },
847
+ "no-continue": {
848
+ "active": 0,
849
+ "optionString": ""
850
+ },
851
+ "no-control-regex": {
852
+ "active": 1,
853
+ "optionString": ""
854
+ },
855
+ "no-debugger": {
856
+ "active": 1,
857
+ "optionString": ""
858
+ },
859
+ "no-delete-var": {
860
+ "active": 1,
861
+ "optionString": ""
862
+ },
863
+ "no-div-regex": {
864
+ "active": 0,
865
+ "optionString": ""
866
+ },
867
+ "no-dupe-args": {
868
+ "active": 1,
869
+ "optionString": ""
870
+ },
871
+ "no-dupe-class-members": {
872
+ "active": 1,
873
+ "optionString": ""
874
+ },
875
+ "no-dupe-keys": {
876
+ "active": 1,
877
+ "optionString": ""
878
+ },
879
+ "no-duplicate-imports": {
880
+ "active": 0,
881
+ "optionString": "{'includeExports': false}"
882
+ },
883
+ "no-else-return": {
884
+ "active": 0,
885
+ "optionString": ""
886
+ },
887
+ "no-empty": {
888
+ "active": 1,
889
+ "optionString": "{'allowEmptyCatch': false}"
890
+ },
891
+ "no-empty-character-class": {
892
+ "active": 1,
893
+ "optionString": ""
894
+ },
895
+ "no-empty-function": {
896
+ "active": 0,
897
+ "optionString": "{'allow': []}"
898
+ },
899
+ "no-empty-pattern": {
900
+ "active": 1,
901
+ "optionString": ""
902
+ },
903
+ "no-eq-null": {
904
+ "active": 0,
905
+ "optionString": ""
906
+ },
907
+ "no-eval": {
908
+ "active": 0,
909
+ "optionString": "{'allowIndirect': false}"
910
+ },
911
+ "no-ex-assign": {
912
+ "active": 1,
913
+ "optionString": ""
914
+ },
915
+ "no-extend-native": {
916
+ "active": 0,
917
+ "optionString": "{'exceptions': []}"
918
+ },
919
+ "no-extra-bind": {
920
+ "active": 0,
921
+ "optionString": ""
922
+ },
923
+ "no-extra-boolean-cast": {
924
+ "active": 1,
925
+ "optionString": ""
926
+ },
927
+ "no-extra-labels": {
928
+ "active": 0,
929
+ "optionString": ""
930
+ },
931
+ "no-extra-parens": {
932
+ "active": 0,
933
+ "optionString": "'all', {'conditionalAssign': false, 'returnAssign': false, 'nestedBinaryExpressions': false, 'ignoreJSX': 'none', 'enforceForArrowConditionals': false}"
934
+ },
935
+ "no-extra-semi": {
936
+ "active": 1,
937
+ "optionString": ""
938
+ },
939
+ "no-fallthrough": {
940
+ "active": 1,
941
+ "optionString": ""
942
+ },
943
+ "no-floating-decimal": {
944
+ "active": 0,
945
+ "optionString": ""
946
+ },
947
+ "no-func-assign": {
948
+ "active": 1,
949
+ "optionString": ""
950
+ },
951
+ "no-global-assign": {
952
+ "active": 1,
953
+ "optionString": "{'exceptions': []}"
954
+ },
955
+ "no-implicit-coercion": {
956
+ "active": 0,
957
+ "optionString": "{'boolean': true, 'number': true, 'string': true, 'allow': []}"
958
+ },
959
+ "no-implicit-globals": {
960
+ "active": 0,
961
+ "optionString": ""
962
+ },
963
+ "no-implied-eval": {
964
+ "active": 0,
965
+ "optionString": ""
966
+ },
967
+ "no-inline-comments": {
968
+ "active": 0,
969
+ "optionString": ""
970
+ },
971
+ "no-inner-declarations": {
972
+ "active": 1,
973
+ "optionString": "'functions'"
974
+ },
975
+ "no-invalid-regexp": {
976
+ "active": 1,
977
+ "optionString": "{'allowConstructorFlags': ['u', 'y']}"
978
+ },
979
+ "no-invalid-this": {
980
+ "active": 0,
981
+ "optionString": ""
982
+ },
983
+ "no-irregular-whitespace": {
984
+ "active": 1,
985
+ "optionString": "{'skipStrings': true, 'skipComments': false, 'skipRegExps': true, 'skipTemplates': true}"
986
+ },
987
+ "no-iterator": {
988
+ "active": 0,
989
+ "optionString": ""
990
+ },
991
+ "no-label-var": {
992
+ "active": 0,
993
+ "optionString": ""
994
+ },
995
+ "no-labels": {
996
+ "active": 0,
997
+ "optionString": "{'allowLoop': false, 'allowSwitch': false}"
998
+ },
999
+ "no-lone-blocks": {
1000
+ "active": 0,
1001
+ "optionString": ""
1002
+ },
1003
+ "no-lonely-if": {
1004
+ "active": 0,
1005
+ "optionString": ""
1006
+ },
1007
+ "no-loop-func": {
1008
+ "active": 0,
1009
+ "optionString": ""
1010
+ },
1011
+ "no-magic-numbers": {
1012
+ "active": 0,
1013
+ "optionString": "{'ignore': [], 'ignoreArrayIndexes': true, 'enforceConst': false, 'detectObjects': false}"
1014
+ },
1015
+ "no-misleading-character-class": {
1016
+ "active": 0,
1017
+ "optionString": ""
1018
+ },
1019
+ "no-mixed-operators": {
1020
+ "active": 0,
1021
+ "optionString": "{'groups': [['+', '-', '*', '/', '%', '**'], ['&', '|', '^', '~', '<<', '>>', '>>>'], ['==', '!=', '===', '!==', '>', '>=', '<', '<='], ['&&', '||'], ['in', 'instanceof']], 'allowSamePrecedence': true}"
1022
+ },
1023
+ "no-mixed-requires": {
1024
+ "active": 0,
1025
+ "optionString": "{'grouping': false, 'allowCall': false }"
1026
+ },
1027
+ "no-mixed-spaces-and-tabs": {
1028
+ "active": 0,
1029
+ "optionString": ""
1030
+ },
1031
+ "no-multi-assign": {
1032
+ "active": 0,
1033
+ "optionString": ""
1034
+ },
1035
+ "no-multi-spaces": {
1036
+ "active": 0,
1037
+ "optionString": "{'exceptions': {'Property': true, 'BinaryExpression': false, 'VariableDeclarator': false, 'ImportDeclaration': false}}"
1038
+ },
1039
+ "no-multi-str": {
1040
+ "active": 0,
1041
+ "optionString": ""
1042
+ },
1043
+ "no-multiple-empty-lines": {
1044
+ "active": 0,
1045
+ "optionString": "{'max': 2, 'maxBOF': 2, 'maxEOF': 2}"
1046
+ },
1047
+ "no-negated-condition": {
1048
+ "active": 0,
1049
+ "optionString": ""
1050
+ },
1051
+ "no-nested-ternary": {
1052
+ "active": 0,
1053
+ "optionString": ""
1054
+ },
1055
+ "no-new": {
1056
+ "active": 0,
1057
+ "optionString": ""
1058
+ },
1059
+ "no-new-func": {
1060
+ "active": 0,
1061
+ "optionString": ""
1062
+ },
1063
+ "no-new-object": {
1064
+ "active": 0,
1065
+ "optionString": ""
1066
+ },
1067
+ "no-new-require": {
1068
+ "active": 0,
1069
+ "optionString": ""
1070
+ },
1071
+ "no-new-symbol": {
1072
+ "active": 1,
1073
+ "optionString": ""
1074
+ },
1075
+ "no-new-wrappers": {
1076
+ "active": 0,
1077
+ "optionString": ""
1078
+ },
1079
+ "no-obj-calls": {
1080
+ "active": 1,
1081
+ "optionString": ""
1082
+ },
1083
+ "no-octal": {
1084
+ "active": 1,
1085
+ "optionString": ""
1086
+ },
1087
+ "no-octal-escape": {
1088
+ "active": 0,
1089
+ "optionString": ""
1090
+ },
1091
+ "no-param-reassign": {
1092
+ "active": 0,
1093
+ "optionString": "{'props': false}"
1094
+ },
1095
+ "no-path-concat": {
1096
+ "active": 0,
1097
+ "optionString": ""
1098
+ },
1099
+ "no-plusplus": {
1100
+ "active": 0,
1101
+ "optionString": "{'allowForLoopAfterthoughts': false}"
1102
+ },
1103
+ "no-process-env": {
1104
+ "active": 0,
1105
+ "optionString": ""
1106
+ },
1107
+ "no-process-exit": {
1108
+ "active": 0,
1109
+ "optionString": ""
1110
+ },
1111
+ "no-proto": {
1112
+ "active": 0,
1113
+ "optionString": ""
1114
+ },
1115
+ "no-prototype-builtins": {
1116
+ "active": 0,
1117
+ "optionString": ""
1118
+ },
1119
+ "no-redeclare": {
1120
+ "active": 1,
1121
+ "optionString": "{'builtinGlobals': false}"
1122
+ },
1123
+ "no-regex-spaces": {
1124
+ "active": 1,
1125
+ "optionString": ""
1126
+ },
1127
+ "no-restricted-globals": {
1128
+ "active": 0,
1129
+ "optionString": "'event', 'fdescribe'"
1130
+ },
1131
+ "no-restricted-imports": {
1132
+ "active": 0,
1133
+ "optionString": ""
1134
+ },
1135
+ "no-restricted-modules": {
1136
+ "active": 0,
1137
+ "optionString": ""
1138
+ },
1139
+ "no-restricted-properties": {
1140
+ "active": 0,
1141
+ "optionString": "[{'object': 'disallowedObjectName', 'property': 'disallowedPropertyName'}, {'object': 'disallowedObjectName', 'property': 'anotherDisallowedPropertyName', 'message': 'Please use allowedObjectName.allowedPropertyName.'}]"
1142
+ },
1143
+ "no-restricted-syntax": {
1144
+ "active": 0,
1145
+ "optionString": "'FunctionExpression', 'WithStatement'"
1146
+ },
1147
+ "no-return-assign": {
1148
+ "active": 0,
1149
+ "optionString": "'except-parens'"
1150
+ },
1151
+ "no-return-await": {
1152
+ "active": 0,
1153
+ "optionString": ""
1154
+ },
1155
+ "no-script-url": {
1156
+ "active": 0,
1157
+ "optionString": ""
1158
+ },
1159
+ "no-self-assign": {
1160
+ "active": 1,
1161
+ "optionString": "{'props': false}"
1162
+ },
1163
+ "no-self-compare": {
1164
+ "active": 0,
1165
+ "optionString": ""
1166
+ },
1167
+ "no-sequences": {
1168
+ "active": 0,
1169
+ "optionString": ""
1170
+ },
1171
+ "no-shadow": {
1172
+ "active": 0,
1173
+ "optionString": "{'builtinGlobals': false, 'hoist': 'functions', 'allow': []}"
1174
+ },
1175
+ "no-shadow-restricted-names": {
1176
+ "active": 0,
1177
+ "optionString": ""
1178
+ },
1179
+ "no-sparse-arrays": {
1180
+ "active": 1,
1181
+ "optionString": ""
1182
+ },
1183
+ "no-sync": {
1184
+ "active": 0,
1185
+ "optionString": "{'allowAtRootLevel': false}"
1186
+ },
1187
+ "no-tabs": {
1188
+ "active": 0,
1189
+ "optionString": ""
1190
+ },
1191
+ "no-template-curly-in-string": {
1192
+ "active": 0,
1193
+ "optionString": ""
1194
+ },
1195
+ "no-ternary": {
1196
+ "active": 0,
1197
+ "optionString": ""
1198
+ },
1199
+ "no-this-before-super": {
1200
+ "active": 1,
1201
+ "optionString": ""
1202
+ },
1203
+ "no-throw-literal": {
1204
+ "active": 0,
1205
+ "optionString": ""
1206
+ },
1207
+ "no-trailing-spaces": {
1208
+ "active": 0,
1209
+ "optionString": "{'skipBlankLines': false, 'ignoreComments': false}"
1210
+ },
1211
+ "no-undef": {
1212
+ "active": 1,
1213
+ "optionString": "{'typeof': false}"
1214
+ },
1215
+ "no-undef-init": {
1216
+ "active": 0,
1217
+ "optionString": ""
1218
+ },
1219
+ "no-undefined": {
1220
+ "active": 0,
1221
+ "optionString": ""
1222
+ },
1223
+ "no-underscore-dangle": {
1224
+ "active": 0,
1225
+ "optionString": "{'allow': [], 'allowAfterThis': false, 'allowAfterSuper': false, 'enforceInMethodNames': false}"
1226
+ },
1227
+ "no-unexpected-multiline": {
1228
+ "active": 1,
1229
+ "optionString": ""
1230
+ },
1231
+ "no-unmodified-loop-condition": {
1232
+ "active": 0,
1233
+ "optionString": ""
1234
+ },
1235
+ "no-unneeded-ternary": {
1236
+ "active": 0,
1237
+ "optionString": "{'defaultAssignment': true}"
1238
+ },
1239
+ "no-unreachable": {
1240
+ "active": 1,
1241
+ "optionString": ""
1242
+ },
1243
+ "no-unsafe-finally": {
1244
+ "active": 1,
1245
+ "optionString": ""
1246
+ },
1247
+ "no-unsafe-negation": {
1248
+ "active": 1,
1249
+ "optionString": ""
1250
+ },
1251
+ "no-unused-expressions": {
1252
+ "active": 0,
1253
+ "optionString": "{'allowShortCircuit': false, 'allowTernary': false, 'allowTaggedTemplates': false}"
1254
+ },
1255
+ "no-unused-labels": {
1256
+ "active": 1,
1257
+ "optionString": ""
1258
+ },
1259
+ "no-unused-vars": {
1260
+ "active": 1,
1261
+ "optionString": "{'vars': 'all', 'args': 'after-used', 'caughtErrors': 'none', 'ignoreRestSiblings': false}"
1262
+ },
1263
+ "no-use-before-define": {
1264
+ "active": 0,
1265
+ "optionString": "{'functions': true, 'classes': true, 'variables': true}"
1266
+ },
1267
+ "no-useless-call": {
1268
+ "active": 0,
1269
+ "optionString": ""
1270
+ },
1271
+ "no-useless-catch": {
1272
+ "active": 0,
1273
+ "optionString": ""
1274
+ },
1275
+ "no-useless-computed-key": {
1276
+ "active": 0,
1277
+ "optionString": ""
1278
+ },
1279
+ "no-useless-concat": {
1280
+ "active": 0,
1281
+ "optionString": ""
1282
+ },
1283
+ "no-useless-constructor": {
1284
+ "active": 0,
1285
+ "optionString": ""
1286
+ },
1287
+ "no-useless-escape": {
1288
+ "active": 0,
1289
+ "optionString": ""
1290
+ },
1291
+ "no-useless-rename": {
1292
+ "active": 0,
1293
+ "optionString": "{'ignoreDestructuring': false, 'ignoreImport': false, 'ignoreExport': false}"
1294
+ },
1295
+ "no-useless-return": {
1296
+ "active": 0,
1297
+ "optionString": ""
1298
+ },
1299
+ "no-var": {
1300
+ "active": 0,
1301
+ "optionString": ""
1302
+ },
1303
+ "no-void": {
1304
+ "active": 0,
1305
+ "optionString": ""
1306
+ },
1307
+ "no-warning-comments": {
1308
+ "active": 0,
1309
+ "optionString": "{'terms': ['todo', 'fixme', 'xxx'], 'location': 'start'}"
1310
+ },
1311
+ "no-whitespace-before-property": {
1312
+ "active": 0,
1313
+ "optionString": ""
1314
+ },
1315
+ "no-with": {
1316
+ "active": 0,
1317
+ "optionString": ""
1318
+ },
1319
+ "nonblock-statement-body-position": {
1320
+ "active": 0,
1321
+ "optionString": "'beside'"
1322
+ },
1323
+ "object-curly-newline": {
1324
+ "active": 0,
1325
+ "optionString": "{'ObjectExpression': {'multiline': true}, 'ObjectPattern': {'multiline': true}}"
1326
+ },
1327
+ "object-curly-spacing": {
1328
+ "active": 0,
1329
+ "optionString": "'never'"
1330
+ },
1331
+ "object-property-newline": {
1332
+ "active": 0,
1333
+ "optionString": "{'allowAllPropertiesOnSameLine': true}"
1334
+ },
1335
+ "object-shorthand": {
1336
+ "active": 0,
1337
+ "optionString": "'always', {'avoidQuotes': false, 'ignoreConstructors': false}"
1338
+ },
1339
+ "one-var": {
1340
+ "active": 0,
1341
+ "optionString": "'always'"
1342
+ },
1343
+ "one-var-declaration-per-line": {
1344
+ "active": 0,
1345
+ "optionString": "'always'"
1346
+ },
1347
+ "operator-assignment": {
1348
+ "active": 0,
1349
+ "optionString": "'always'"
1350
+ },
1351
+ "operator-linebreak": {
1352
+ "active": 0,
1353
+ "optionString": "'after', {'overrides': {'?': 'after', '+=': 'none'}}"
1354
+ },
1355
+ "padded-blocks": {
1356
+ "active": 0,
1357
+ "optionString": "{'blocks': 'always', 'switches': 'always', 'classes': 'always'}"
1358
+ },
1359
+ "padding-line-between-statements": {
1360
+ "active": 0,
1361
+ "optionString": "{blankLine: 'always', prev:'*', next:'return'}"
1362
+ },
1363
+ "prefer-arrow-callback": {
1364
+ "active": 0,
1365
+ "optionString": ""
1366
+ },
1367
+ "prefer-const": {
1368
+ "active": 0,
1369
+ "optionString": "{'destructuring': 'any', 'ignoreReadBeforeAssign': false}"
1370
+ },
1371
+ "prefer-destructuring": {
1372
+ "active": 0,
1373
+ "optionString": "{'array': true, 'object': true}, {'enforceForRenamedProperties': false}"
1374
+ },
1375
+ "prefer-numeric-literals": {
1376
+ "active": 0,
1377
+ "optionString": ""
1378
+ },
1379
+ "prefer-object-spread": {
1380
+ "active": 0,
1381
+ "optionString": ""
1382
+ },
1383
+ "prefer-promise-reject-errors": {
1384
+ "active": 0,
1385
+ "optionString": "{'allowEmptyReject': false}"
1386
+ },
1387
+ "prefer-rest-params": {
1388
+ "active": 0,
1389
+ "optionString": ""
1390
+ },
1391
+ "prefer-spread": {
1392
+ "active": 0,
1393
+ "optionString": ""
1394
+ },
1395
+ "prefer-template": {
1396
+ "active": 0,
1397
+ "optionString": ""
1398
+ },
1399
+ "quote-props": {
1400
+ "active": 0,
1401
+ "optionString": "'always'"
1402
+ },
1403
+ "quotes": {
1404
+ "active": 0,
1405
+ "optionString": "'double', {'avoidEscape': true, 'allowTemplateLiterals': true}"
1406
+ },
1407
+ "radix": {
1408
+ "active": 0,
1409
+ "optionString": "'always'"
1410
+ },
1411
+ "require-atomic-updates": {
1412
+ "active": 0,
1413
+ "optionString": ""
1414
+ },
1415
+ "require-await": {
1416
+ "active": 0,
1417
+ "optionString": ""
1418
+ },
1419
+ "require-jsdoc": {
1420
+ "active": 0,
1421
+ "optionString": "{'require': {'FunctionDeclaration': true, 'MethodDefinition': false, 'ClassDeclaration': false, 'ArrowFunctionExpression': false}}"
1422
+ },
1423
+ "require-unicode-regexp": {
1424
+ "active": 0,
1425
+ "optionString": ""
1426
+ },
1427
+ "require-yield": {
1428
+ "active": 1,
1429
+ "optionString": ""
1430
+ },
1431
+ "rest-spread-spacing": {
1432
+ "active": 0,
1433
+ "optionString": "'never'"
1434
+ },
1435
+ "semi": {
1436
+ "active": 0,
1437
+ "optionString": "'always', {'omitLastInOneLineBlock': false}"
1438
+ },
1439
+ "semi-spacing": {
1440
+ "active": 0,
1441
+ "optionString": "{'before': false, 'after': true}"
1442
+ },
1443
+ "semi-style": {
1444
+ "active": 0,
1445
+ "optionString": "'last'"
1446
+ },
1447
+ "sort-imports": {
1448
+ "active": 0,
1449
+ "optionString": "{'ignoreCase': false, 'ignoreMemberSort': true, 'memberSyntaxSortOrder': ['none', 'all', 'multiple', 'single']}"
1450
+ },
1451
+ "sort-keys": {
1452
+ "active": 0,
1453
+ "optionString": "'asc', {'caseSensitive': true, 'natural': false}"
1454
+ },
1455
+ "sort-vars": {
1456
+ "active": 0,
1457
+ "optionString": "{'ignoreCase': false}"
1458
+ },
1459
+ "space-before-blocks": {
1460
+ "active": 0,
1461
+ "optionString": "{'functions': 'always', 'keywords': 'always', 'classes': 'always'}"
1462
+ },
1463
+ "space-before-function-paren": {
1464
+ "active": 0,
1465
+ "optionString": "{'anonymous': 'always', 'named': 'never'}"
1466
+ },
1467
+ "space-in-parens": {
1468
+ "active": 0,
1469
+ "optionString": "'never', {'exceptions': []}"
1470
+ },
1471
+ "space-infix-ops": {
1472
+ "active": 0,
1473
+ "optionString": "{'int32Hint': false}"
1474
+ },
1475
+ "space-unary-ops": {
1476
+ "active": 0,
1477
+ "optionString": "{'words': true, 'nonwords': false, 'overrides': {}}"
1478
+ },
1479
+ "spaced-comment": {
1480
+ "active": 0,
1481
+ "optionString": "'always', {'line': {'markers': ['/'], 'exceptions': ['-', '+']}, 'block': {'markers': ['!'], 'exceptions': ['*'], 'balanced': false}}"
1482
+ },
1483
+ "strict": {
1484
+ "active": 0,
1485
+ "optionString": "'safe'"
1486
+ },
1487
+ "switch-colon-spacing": {
1488
+ "active": 0,
1489
+ "optionString": "{'after': true, 'before': false}"
1490
+ },
1491
+ "symbol-description": {
1492
+ "active": 0,
1493
+ "optionString": ""
1494
+ },
1495
+ "template-curly-spacing": {
1496
+ "active": 0,
1497
+ "optionString": "'never'"
1498
+ },
1499
+ "template-tag-spacing": {
1500
+ "active": 0,
1501
+ "optionString": "'never'"
1502
+ },
1503
+ "unicode-bom": {
1504
+ "active": 0,
1505
+ "optionString": "'never'"
1506
+ },
1507
+ "use-isnan": {
1508
+ "active": 1,
1509
+ "optionString": ""
1510
+ },
1511
+ "valid-jsdoc": {
1512
+ "active": 0,
1513
+ "optionString": "{'prefer': {'return': 'returns'}, 'requireReturn': true, 'requireReturnDescription': true, 'requireReturnType': true, 'requireParamDescription': true}"
1514
+ },
1515
+ "valid-typeof": {
1516
+ "active": 1,
1517
+ "optionString": "{'requireStringLiterals': true}"
1518
+ },
1519
+ "vars-on-top": {
1520
+ "active": 0,
1521
+ "optionString": ""
1522
+ },
1523
+ "wrap-iife": {
1524
+ "active": 0,
1525
+ "optionString": "'outside'"
1526
+ },
1527
+ "wrap-regex": {
1528
+ "active": 0,
1529
+ "optionString": ""
1530
+ },
1531
+ "yield-star-spacing": {
1532
+ "active": 0,
1533
+ "optionString": "{'before': false, 'after': true}"
1534
+ },
1535
+ "yoda": {
1536
+ "active": 0,
1537
+ "optionString": "'never', {'exceptRange': false, 'onlyEquality': false}"
1538
+ }
1539
+ },
1540
+ "esLintSourceType": 0,
1541
+ "externalServerAddress": "http://localhost:8888",
1542
+ "gitIgnoreBuildFolder": 1,
1543
+ "hideConfigFile": 0,
1544
+ "jsCheckerReservedNamesString": "",
1545
+ "jsHintFlags2": {
1546
+ "asi": {
1547
+ "active": 0,
1548
+ "flagValue": -1
1549
+ },
1550
+ "bitwise": {
1551
+ "active": 1,
1552
+ "flagValue": -1
1553
+ },
1554
+ "boss": {
1555
+ "active": 0,
1556
+ "flagValue": -1
1557
+ },
1558
+ "browser": {
1559
+ "active": 1,
1560
+ "flagValue": -1
1561
+ },
1562
+ "browserify": {
1563
+ "active": 0,
1564
+ "flagValue": -1
1565
+ },
1566
+ "camelcase": {
1567
+ "active": 0,
1568
+ "flagValue": -1
1569
+ },
1570
+ "couch": {
1571
+ "active": 0,
1572
+ "flagValue": -1
1573
+ },
1574
+ "curly": {
1575
+ "active": 1,
1576
+ "flagValue": -1
1577
+ },
1578
+ "debug": {
1579
+ "active": 0,
1580
+ "flagValue": -1
1581
+ },
1582
+ "devel": {
1583
+ "active": 0,
1584
+ "flagValue": -1
1585
+ },
1586
+ "dojo": {
1587
+ "active": 0,
1588
+ "flagValue": -1
1589
+ },
1590
+ "elision": {
1591
+ "active": 1,
1592
+ "flagValue": -1
1593
+ },
1594
+ "eqeqeq": {
1595
+ "active": 1,
1596
+ "flagValue": -1
1597
+ },
1598
+ "eqnull": {
1599
+ "active": 0,
1600
+ "flagValue": -1
1601
+ },
1602
+ "es3": {
1603
+ "active": 0,
1604
+ "flagValue": -1
1605
+ },
1606
+ "esnext": {
1607
+ "active": 0,
1608
+ "flagValue": -1
1609
+ },
1610
+ "evil": {
1611
+ "active": 0,
1612
+ "flagValue": -1
1613
+ },
1614
+ "expr": {
1615
+ "active": 0,
1616
+ "flagValue": -1
1617
+ },
1618
+ "forin": {
1619
+ "active": 0,
1620
+ "flagValue": -1
1621
+ },
1622
+ "freeze": {
1623
+ "active": 1,
1624
+ "flagValue": -1
1625
+ },
1626
+ "funcscope": {
1627
+ "active": 0,
1628
+ "flagValue": -1
1629
+ },
1630
+ "futurehostile": {
1631
+ "active": 0,
1632
+ "flagValue": -1
1633
+ },
1634
+ "globalstrict": {
1635
+ "active": 0,
1636
+ "flagValue": -1
1637
+ },
1638
+ "immed": {
1639
+ "active": 0,
1640
+ "flagValue": -1
1641
+ },
1642
+ "indent": {
1643
+ "active": 0,
1644
+ "flagValue": 4
1645
+ },
1646
+ "iterator": {
1647
+ "active": 0,
1648
+ "flagValue": -1
1649
+ },
1650
+ "jasmine": {
1651
+ "active": 0,
1652
+ "flagValue": -1
1653
+ },
1654
+ "jquery": {
1655
+ "active": 1,
1656
+ "flagValue": -1
1657
+ },
1658
+ "lastsemic": {
1659
+ "active": 0,
1660
+ "flagValue": -1
1661
+ },
1662
+ "latedef": {
1663
+ "active": 1,
1664
+ "flagValue": -1
1665
+ },
1666
+ "laxbreak": {
1667
+ "active": 0,
1668
+ "flagValue": -1
1669
+ },
1670
+ "laxcomma": {
1671
+ "active": 0,
1672
+ "flagValue": -1
1673
+ },
1674
+ "loopfunc": {
1675
+ "active": 0,
1676
+ "flagValue": -1
1677
+ },
1678
+ "maxcomplexity": {
1679
+ "active": 0,
1680
+ "flagValue": 10
1681
+ },
1682
+ "maxdepth": {
1683
+ "active": 0,
1684
+ "flagValue": 3
1685
+ },
1686
+ "maxlen": {
1687
+ "active": 0,
1688
+ "flagValue": 150
1689
+ },
1690
+ "maxparams": {
1691
+ "active": 0,
1692
+ "flagValue": 3
1693
+ },
1694
+ "maxstatements": {
1695
+ "active": 0,
1696
+ "flagValue": 4
1697
+ },
1698
+ "mocha": {
1699
+ "active": 0,
1700
+ "flagValue": -1
1701
+ },
1702
+ "mootools": {
1703
+ "active": 0,
1704
+ "flagValue": -1
1705
+ },
1706
+ "moz": {
1707
+ "active": 0,
1708
+ "flagValue": -1
1709
+ },
1710
+ "multistr": {
1711
+ "active": 0,
1712
+ "flagValue": -1
1713
+ },
1714
+ "newcap": {
1715
+ "active": 1,
1716
+ "flagValue": -1
1717
+ },
1718
+ "noarg": {
1719
+ "active": 1,
1720
+ "flagValue": -1
1721
+ },
1722
+ "nocomma": {
1723
+ "active": 0,
1724
+ "flagValue": -1
1725
+ },
1726
+ "node": {
1727
+ "active": 0,
1728
+ "flagValue": -1
1729
+ },
1730
+ "noempty": {
1731
+ "active": 0,
1732
+ "flagValue": -1
1733
+ },
1734
+ "nonbsp": {
1735
+ "active": 0,
1736
+ "flagValue": -1
1737
+ },
1738
+ "nonew": {
1739
+ "active": 1,
1740
+ "flagValue": -1
1741
+ },
1742
+ "nonstandard": {
1743
+ "active": 0,
1744
+ "flagValue": -1
1745
+ },
1746
+ "notypeof": {
1747
+ "active": 1,
1748
+ "flagValue": -1
1749
+ },
1750
+ "noyield": {
1751
+ "active": 0,
1752
+ "flagValue": -1
1753
+ },
1754
+ "onecase": {
1755
+ "active": 0,
1756
+ "flagValue": -1
1757
+ },
1758
+ "phantom": {
1759
+ "active": 0,
1760
+ "flagValue": -1
1761
+ },
1762
+ "plusplus": {
1763
+ "active": 0,
1764
+ "flagValue": -1
1765
+ },
1766
+ "proto": {
1767
+ "active": 0,
1768
+ "flagValue": -1
1769
+ },
1770
+ "prototypejs": {
1771
+ "active": 0,
1772
+ "flagValue": -1
1773
+ },
1774
+ "qunit": {
1775
+ "active": 0,
1776
+ "flagValue": -1
1777
+ },
1778
+ "regexp": {
1779
+ "active": 1,
1780
+ "flagValue": -1
1781
+ },
1782
+ "rhino": {
1783
+ "active": 0,
1784
+ "flagValue": -1
1785
+ },
1786
+ "scripturl": {
1787
+ "active": 0,
1788
+ "flagValue": -1
1789
+ },
1790
+ "shadow": {
1791
+ "active": 0,
1792
+ "flagValue": -1
1793
+ },
1794
+ "shelljs": {
1795
+ "active": 0,
1796
+ "flagValue": -1
1797
+ },
1798
+ "singleGroups": {
1799
+ "active": 0,
1800
+ "flagValue": -1
1801
+ },
1802
+ "strict": {
1803
+ "active": 0,
1804
+ "flagValue": -1
1805
+ },
1806
+ "sub": {
1807
+ "active": 0,
1808
+ "flagValue": -1
1809
+ },
1810
+ "supernew": {
1811
+ "active": 0,
1812
+ "flagValue": -1
1813
+ },
1814
+ "typed": {
1815
+ "active": 0,
1816
+ "flagValue": -1
1817
+ },
1818
+ "undef": {
1819
+ "active": 1,
1820
+ "flagValue": -1
1821
+ },
1822
+ "unused": {
1823
+ "active": 1,
1824
+ "flagValue": -1
1825
+ },
1826
+ "varstmt": {
1827
+ "active": 0,
1828
+ "flagValue": -1
1829
+ },
1830
+ "withstmt": {
1831
+ "active": 0,
1832
+ "flagValue": -1
1833
+ },
1834
+ "worker": {
1835
+ "active": 0,
1836
+ "flagValue": -1
1837
+ },
1838
+ "wsh": {
1839
+ "active": 0,
1840
+ "flagValue": -1
1841
+ },
1842
+ "yui": {
1843
+ "active": 0,
1844
+ "flagValue": -1
1845
+ }
1846
+ },
1847
+ "jsLintFlags2": {
1848
+ "bitwise": {
1849
+ "active": 0,
1850
+ "flagValue": -1
1851
+ },
1852
+ "browser": {
1853
+ "active": 1,
1854
+ "flagValue": -1
1855
+ },
1856
+ "couch": {
1857
+ "active": 0,
1858
+ "flagValue": -1
1859
+ },
1860
+ "devel": {
1861
+ "active": 0,
1862
+ "flagValue": -1
1863
+ },
1864
+ "es6": {
1865
+ "active": 0,
1866
+ "flagValue": -1
1867
+ },
1868
+ "eval": {
1869
+ "active": 0,
1870
+ "flagValue": -1
1871
+ },
1872
+ "for": {
1873
+ "active": 0,
1874
+ "flagValue": -1
1875
+ },
1876
+ "maxlen": {
1877
+ "active": 0,
1878
+ "flagValue": 150
1879
+ },
1880
+ "node": {
1881
+ "active": 0,
1882
+ "flagValue": -1
1883
+ },
1884
+ "this": {
1885
+ "active": 0,
1886
+ "flagValue": -1
1887
+ },
1888
+ "white": {
1889
+ "active": 0,
1890
+ "flagValue": -1
1891
+ }
1892
+ },
1893
+ "languageDefaultsCOFFEE": {
1894
+ "autoOutputAction": 0,
1895
+ "autoOutputPathFilenamePattern": "*.js",
1896
+ "autoOutputPathRelativePath": "",
1897
+ "autoOutputPathReplace1": "",
1898
+ "autoOutputPathReplace2": "",
1899
+ "autoOutputPathStyle": 0,
1900
+ "createSourceMap": 0,
1901
+ "minifyOutput": 1,
1902
+ "outputStyle": 0,
1903
+ "syntaxCheckerStyle": 1,
1904
+ "transpilerStyle": 1
1905
+ },
1906
+ "languageDefaultsCSS": {
1907
+ "autoOutputAction": 0,
1908
+ "autoOutputPathFilenamePattern": "*-min.css",
1909
+ "autoOutputPathRelativePath": "",
1910
+ "autoOutputPathReplace1": "",
1911
+ "autoOutputPathReplace2": "",
1912
+ "autoOutputPathStyle": 0,
1913
+ "createSourceMap": 0,
1914
+ "outputStyle": 3,
1915
+ "shouldRunAutoprefixer": 1,
1916
+ "shouldRunBless": 0
1917
+ },
1918
+ "languageDefaultsGIF": {
1919
+ "autoOutputAction": 0,
1920
+ "autoOutputPathFilenamePattern": "*.gif",
1921
+ "autoOutputPathRelativePath": "",
1922
+ "autoOutputPathReplace1": "",
1923
+ "autoOutputPathReplace2": "",
1924
+ "autoOutputPathStyle": 0
1925
+ },
1926
+ "languageDefaultsHAML": {
1927
+ "autoOutputAction": 0,
1928
+ "autoOutputPathFilenamePattern": "*.html",
1929
+ "autoOutputPathRelativePath": "",
1930
+ "autoOutputPathReplace1": "",
1931
+ "autoOutputPathReplace2": "",
1932
+ "autoOutputPathStyle": 0,
1933
+ "escapeHTMLCharacters": 0,
1934
+ "noEscapeInAttributes": 0,
1935
+ "outputFormat": 2,
1936
+ "shouldRunCacheBuster": 0,
1937
+ "shouldRunHTMLMinifier": 0,
1938
+ "useCDATA": 0,
1939
+ "useDoubleQuotes": 0,
1940
+ "useUnixNewlines": 0
1941
+ },
1942
+ "languageDefaultsJPG": {
1943
+ "autoOutputAction": 0,
1944
+ "autoOutputPathFilenamePattern": "*.jpg",
1945
+ "autoOutputPathRelativePath": "",
1946
+ "autoOutputPathReplace1": "",
1947
+ "autoOutputPathReplace2": "",
1948
+ "autoOutputPathStyle": 0,
1949
+ "outputFormat": 0,
1950
+ "quality": 100
1951
+ },
1952
+ "languageDefaultsJS": {
1953
+ "autoOutputAction": 0,
1954
+ "autoOutputPathFilenamePattern": "*-min.js",
1955
+ "autoOutputPathRelativePath": "/min",
1956
+ "autoOutputPathReplace1": "",
1957
+ "autoOutputPathReplace2": "",
1958
+ "autoOutputPathStyle": 0,
1959
+ "bundleFormat": 0,
1960
+ "createSourceMap": 0,
1961
+ "minifyOutput": 1,
1962
+ "syntaxCheckerStyle": 3,
1963
+ "transpilerStyle": 0
1964
+ },
1965
+ "languageDefaultsJSON": {
1966
+ "autoOutputAction": 1,
1967
+ "autoOutputPathFilenamePattern": "*-min.json",
1968
+ "autoOutputPathRelativePath": "",
1969
+ "autoOutputPathReplace1": "",
1970
+ "autoOutputPathReplace2": "",
1971
+ "autoOutputPathStyle": 0,
1972
+ "orderOutput": 0,
1973
+ "outputStyle": 1
1974
+ },
1975
+ "languageDefaultsKIT": {
1976
+ "autoOutputAction": 0,
1977
+ "autoOutputPathFilenamePattern": "*.html",
1978
+ "autoOutputPathRelativePath": "",
1979
+ "autoOutputPathReplace1": "kit",
1980
+ "autoOutputPathReplace2": "html",
1981
+ "autoOutputPathStyle": 0,
1982
+ "shouldRunCacheBuster": 0,
1983
+ "shouldRunHTMLMinifier": 0
1984
+ },
1985
+ "languageDefaultsLESS": {
1986
+ "allowInsecureImports": 0,
1987
+ "autoOutputAction": 0,
1988
+ "autoOutputPathFilenamePattern": "*.css",
1989
+ "autoOutputPathRelativePath": "../css",
1990
+ "autoOutputPathReplace1": "less",
1991
+ "autoOutputPathReplace2": "css",
1992
+ "autoOutputPathStyle": 0,
1993
+ "createSourceMap": 1,
1994
+ "enableJavascript": 0,
1995
+ "ieCompatibility": 1,
1996
+ "mathStyle": 0,
1997
+ "outputStyle": 0,
1998
+ "rewriteURLStyle": 0,
1999
+ "shouldRunAutoprefixer": 0,
2000
+ "shouldRunBless": 0,
2001
+ "strictImports": 0,
2002
+ "strictUnits": 0
2003
+ },
2004
+ "languageDefaultsMARKDOWN": {
2005
+ "autoOutputAction": 0,
2006
+ "autoOutputPathFilenamePattern": "*.html",
2007
+ "autoOutputPathRelativePath": "",
2008
+ "autoOutputPathReplace1": "",
2009
+ "autoOutputPathReplace2": "",
2010
+ "autoOutputPathStyle": 0,
2011
+ "criticStyle": 0,
2012
+ "enableFootnotes": 1,
2013
+ "enableLabels": 1,
2014
+ "enableSmartQuotes": 1,
2015
+ "maskEmailAddresses": 1,
2016
+ "outputFormat": 0,
2017
+ "outputStyle": 0,
2018
+ "parseMetadata": 1,
2019
+ "processHTML": 0,
2020
+ "randomFootnoteNumbers": 0,
2021
+ "shouldRunCacheBuster": 0,
2022
+ "shouldRunHTMLMinifier": 0,
2023
+ "useCompatibilityMode": 0
2024
+ },
2025
+ "languageDefaultsOTHER": {
2026
+ "autoOutputAction": 0,
2027
+ "autoOutputPathFilenamePattern": "*.*",
2028
+ "autoOutputPathRelativePath": "",
2029
+ "autoOutputPathReplace1": "",
2030
+ "autoOutputPathReplace2": "",
2031
+ "autoOutputPathStyle": 0,
2032
+ "shouldRunCacheBuster": 0,
2033
+ "shouldRunHTMLMinifier": 0
2034
+ },
2035
+ "languageDefaultsPNG": {
2036
+ "autoOutputAction": 0,
2037
+ "autoOutputPathFilenamePattern": "*.png",
2038
+ "autoOutputPathRelativePath": "",
2039
+ "autoOutputPathReplace1": "",
2040
+ "autoOutputPathReplace2": "",
2041
+ "autoOutputPathStyle": 0,
2042
+ "optimizerType": 1,
2043
+ "quality": 100
2044
+ },
2045
+ "languageDefaultsPUG": {
2046
+ "autoOutputAction": 0,
2047
+ "autoOutputPathFilenamePattern": "*.html",
2048
+ "autoOutputPathRelativePath": "",
2049
+ "autoOutputPathReplace1": "",
2050
+ "autoOutputPathReplace2": "",
2051
+ "autoOutputPathStyle": 0,
2052
+ "compileDebug": 1,
2053
+ "outputStyle": 0,
2054
+ "shouldRunCacheBuster": 0,
2055
+ "shouldRunHTMLMinifier": 0
2056
+ },
2057
+ "languageDefaultsSASS": {
2058
+ "autoOutputAction": 0,
2059
+ "autoOutputPathFilenamePattern": "*.css",
2060
+ "autoOutputPathRelativePath": "../css",
2061
+ "autoOutputPathReplace1": "sass",
2062
+ "autoOutputPathReplace2": "css",
2063
+ "autoOutputPathStyle": 0,
2064
+ "createSourceMap": 0,
2065
+ "debugStyle": 0,
2066
+ "decimalPrecision": 10,
2067
+ "outputStyle": 0,
2068
+ "shouldRunAutoprefixer": 0,
2069
+ "shouldRunBless": 0,
2070
+ "useLibsass": 1
2071
+ },
2072
+ "languageDefaultsSLIM": {
2073
+ "autoOutputAction": 0,
2074
+ "autoOutputPathFilenamePattern": "*.html",
2075
+ "autoOutputPathRelativePath": "",
2076
+ "autoOutputPathReplace1": "",
2077
+ "autoOutputPathReplace2": "",
2078
+ "autoOutputPathStyle": 0,
2079
+ "compileOnly": 0,
2080
+ "logicless": 0,
2081
+ "outputFormat": 0,
2082
+ "outputStyle": 1,
2083
+ "railsCompatible": 0,
2084
+ "shouldRunCacheBuster": 0,
2085
+ "shouldRunHTMLMinifier": 0
2086
+ },
2087
+ "languageDefaultsSTYLUS": {
2088
+ "autoOutputAction": 0,
2089
+ "autoOutputPathFilenamePattern": "*.css",
2090
+ "autoOutputPathRelativePath": "../css",
2091
+ "autoOutputPathReplace1": "stylus",
2092
+ "autoOutputPathReplace2": "css",
2093
+ "autoOutputPathStyle": 0,
2094
+ "createSourceMap": 0,
2095
+ "debugStyle": 0,
2096
+ "importCSS": 0,
2097
+ "outputStyle": 0,
2098
+ "resolveRelativeURLS": 0,
2099
+ "shouldRunAutoprefixer": 0,
2100
+ "shouldRunBless": 0
2101
+ },
2102
+ "languageDefaultsSVG": {
2103
+ "autoOutputAction": 2,
2104
+ "autoOutputPathFilenamePattern": "*.svg",
2105
+ "autoOutputPathRelativePath": "",
2106
+ "autoOutputPathReplace1": "",
2107
+ "autoOutputPathReplace2": "",
2108
+ "autoOutputPathStyle": 0,
2109
+ "pluginMask": 3758088159
2110
+ },
2111
+ "languageDefaultsTS": {
2112
+ "autoOutputAction": 0,
2113
+ "autoOutputPathFilenamePattern": "*.js",
2114
+ "autoOutputPathRelativePath": "/js",
2115
+ "autoOutputPathReplace1": "",
2116
+ "autoOutputPathReplace2": "",
2117
+ "autoOutputPathStyle": 0,
2118
+ "createDeclarationFile": 0,
2119
+ "createSourceMap": 0,
2120
+ "minifyOutput": 0,
2121
+ "moduleResolutionType": 0,
2122
+ "moduleType": 2,
2123
+ "removeComments": 0,
2124
+ "targetECMAVersion": 0
2125
+ },
2126
+ "languageDefaultsUserDefined": [
2127
+ ],
2128
+ "overrideExternalServerCSS": 0,
2129
+ "previewPathAddition": "",
2130
+ "skippedFoldersString": "log, _logs, logs, _cache, cache, .idea, /storage/framework/sessions, node_modules",
2131
+ "sourceFolderName": "source",
2132
+ "susyVersion": 3,
2133
+ "tsAllowSyntheticDefaultImports": 0,
2134
+ "tsAllowUnreachableCode": 0,
2135
+ "tsAllowUnusedLabels": 0,
2136
+ "tsAlwaysStrict": 0,
2137
+ "tsDownlevelIteration": 0,
2138
+ "tsEmitBOM": 0,
2139
+ "tsEmitDecoratorMetadata": 0,
2140
+ "tsESModuleInterop": 0,
2141
+ "tsForceConsistentCasingInFileNames": 0,
2142
+ "tsImportHelpers": 0,
2143
+ "tsIsolatedModules": 0,
2144
+ "tsJSXFactory": "React.createElement",
2145
+ "tsKeyofStringsOnly": 0,
2146
+ "tsNoEmitHelpers": 0,
2147
+ "tsNoFallthroughCasesInSwitch": 0,
2148
+ "tsNoImplicitAny": 0,
2149
+ "tsNoImplicitReturns": 0,
2150
+ "tsNoImplicitThis": 0,
2151
+ "tsNoImplicitUseStrict": 0,
2152
+ "tsNoLib": 0,
2153
+ "tsNoResolve": 0,
2154
+ "tsNoStrictGenericChecks": 0,
2155
+ "tsNoUnusedLocals": 0,
2156
+ "tsNoUnusedParameters": 0,
2157
+ "tsPreserveConstEnums": 0,
2158
+ "tsPreserveSymlinks": 0,
2159
+ "tsResolveJsonModule": 0,
2160
+ "tsSkipLibCheck": 0,
2161
+ "tsStrictFunctionTypes": 0,
2162
+ "tsStrictNullChecks": 0,
2163
+ "tsStrictPropertyInitialization": 0,
2164
+ "tsStripInternal": 0,
2165
+ "tsSuppressExcessPropertyErrors": 0,
2166
+ "tsSuppressImplicitAnyIndexErrors": 0,
2167
+ "uglifyDefinesString": "",
2168
+ "uglifyFlags2": {
2169
+ "arguments": {
2170
+ "active": 1,
2171
+ "flagValue": -1
2172
+ },
2173
+ "arrows": {
2174
+ "active": 1,
2175
+ "flagValue": -1
2176
+ },
2177
+ "ascii_only": {
2178
+ "active": 0,
2179
+ "flagValue": -1
2180
+ },
2181
+ "booleans": {
2182
+ "active": 1,
2183
+ "flagValue": -1
2184
+ },
2185
+ "booleans_as_integers": {
2186
+ "active": 0,
2187
+ "flagValue": -1
2188
+ },
2189
+ "braces": {
2190
+ "active": 0,
2191
+ "flagValue": -1
2192
+ },
2193
+ "collapse_vars": {
2194
+ "active": 1,
2195
+ "flagValue": -1
2196
+ },
2197
+ "comments": {
2198
+ "active": 0,
2199
+ "flagValue": -1
2200
+ },
2201
+ "comparisons": {
2202
+ "active": 1,
2203
+ "flagValue": -1
2204
+ },
2205
+ "computed_props": {
2206
+ "active": 1,
2207
+ "flagValue": -1
2208
+ },
2209
+ "conditionals": {
2210
+ "active": 1,
2211
+ "flagValue": -1
2212
+ },
2213
+ "dead_code": {
2214
+ "active": 0,
2215
+ "flagValue": -1
2216
+ },
2217
+ "directives": {
2218
+ "active": 1,
2219
+ "flagValue": -1
2220
+ },
2221
+ "drop_console": {
2222
+ "active": 0,
2223
+ "flagValue": -1
2224
+ },
2225
+ "drop_debugger": {
2226
+ "active": 1,
2227
+ "flagValue": -1
2228
+ },
2229
+ "ecma": {
2230
+ "active": 1,
2231
+ "flagValue": 5
2232
+ },
2233
+ "eval": {
2234
+ "active": 0,
2235
+ "flagValue": -1
2236
+ },
2237
+ "evaluate": {
2238
+ "active": 1,
2239
+ "flagValue": -1
2240
+ },
2241
+ "expression": {
2242
+ "active": 0,
2243
+ "flagValue": -1
2244
+ },
2245
+ "hoist_funs": {
2246
+ "active": 1,
2247
+ "flagValue": -1
2248
+ },
2249
+ "hoist_props": {
2250
+ "active": 1,
2251
+ "flagValue": -1
2252
+ },
2253
+ "hoist_vars": {
2254
+ "active": 0,
2255
+ "flagValue": -1
2256
+ },
2257
+ "ie8": {
2258
+ "active": 0,
2259
+ "flagValue": -1
2260
+ },
2261
+ "if_return": {
2262
+ "active": 1,
2263
+ "flagValue": -1
2264
+ },
2265
+ "indent_level": {
2266
+ "active": 0,
2267
+ "flagValue": 4
2268
+ },
2269
+ "indent_start": {
2270
+ "active": 0,
2271
+ "flagValue": 0
2272
+ },
2273
+ "inline": {
2274
+ "active": 1,
2275
+ "flagValue": 3
2276
+ },
2277
+ "inline_script": {
2278
+ "active": 1,
2279
+ "flagValue": -1
2280
+ },
2281
+ "join_vars": {
2282
+ "active": 1,
2283
+ "flagValue": -1
2284
+ },
2285
+ "keep_classnames": {
2286
+ "active": 0,
2287
+ "flagValue": -1
2288
+ },
2289
+ "keep_fargs": {
2290
+ "active": 0,
2291
+ "flagValue": -1
2292
+ },
2293
+ "keep_fnames": {
2294
+ "active": 0,
2295
+ "flagValue": -1
2296
+ },
2297
+ "keep_infinity": {
2298
+ "active": 0,
2299
+ "flagValue": -1
2300
+ },
2301
+ "keep_quoted_props": {
2302
+ "active": 0,
2303
+ "flagValue": -1
2304
+ },
2305
+ "loops": {
2306
+ "active": 1,
2307
+ "flagValue": -1
2308
+ },
2309
+ "max_line_len": {
2310
+ "active": 1,
2311
+ "flagValue": 32000
2312
+ },
2313
+ "module": {
2314
+ "active": 0,
2315
+ "flagValue": -1
2316
+ },
2317
+ "negate_iife": {
2318
+ "active": 1,
2319
+ "flagValue": -1
2320
+ },
2321
+ "passes": {
2322
+ "active": 1,
2323
+ "flagValue": 1
2324
+ },
2325
+ "properties": {
2326
+ "active": 1,
2327
+ "flagValue": -1
2328
+ },
2329
+ "pure_getters": {
2330
+ "active": 0,
2331
+ "flagValue": -1
2332
+ },
2333
+ "quote_keys": {
2334
+ "active": 0,
2335
+ "flagValue": -1
2336
+ },
2337
+ "quote_style": {
2338
+ "active": 1,
2339
+ "flagValue": 0
2340
+ },
2341
+ "reduce_funcs": {
2342
+ "active": 1,
2343
+ "flagValue": -1
2344
+ },
2345
+ "reduce_vars": {
2346
+ "active": 1,
2347
+ "flagValue": -1
2348
+ },
2349
+ "safari10": {
2350
+ "active": 0,
2351
+ "flagValue": -1
2352
+ },
2353
+ "semicolons": {
2354
+ "active": 1,
2355
+ "flagValue": -1
2356
+ },
2357
+ "sequences": {
2358
+ "active": 1,
2359
+ "flagValue": -1
2360
+ },
2361
+ "shebang": {
2362
+ "active": 1,
2363
+ "flagValue": -1
2364
+ },
2365
+ "side_effects": {
2366
+ "active": 1,
2367
+ "flagValue": -1
2368
+ },
2369
+ "switches": {
2370
+ "active": 1,
2371
+ "flagValue": -1
2372
+ },
2373
+ "toplevel": {
2374
+ "active": 0,
2375
+ "flagValue": -1
2376
+ },
2377
+ "typeofs": {
2378
+ "active": 1,
2379
+ "flagValue": -1
2380
+ },
2381
+ "unsafe": {
2382
+ "active": 0,
2383
+ "flagValue": -1
2384
+ },
2385
+ "unsafe_arrows": {
2386
+ "active": 0,
2387
+ "flagValue": -1
2388
+ },
2389
+ "unsafe_comps": {
2390
+ "active": 0,
2391
+ "flagValue": -1
2392
+ },
2393
+ "unsafe_Function": {
2394
+ "active": 0,
2395
+ "flagValue": -1
2396
+ },
2397
+ "unsafe_math": {
2398
+ "active": 0,
2399
+ "flagValue": -1
2400
+ },
2401
+ "unsafe_methods": {
2402
+ "active": 0,
2403
+ "flagValue": -1
2404
+ },
2405
+ "unsafe_proto": {
2406
+ "active": 0,
2407
+ "flagValue": -1
2408
+ },
2409
+ "unsafe_regexp": {
2410
+ "active": 0,
2411
+ "flagValue": -1
2412
+ },
2413
+ "unsafe_undefined": {
2414
+ "active": 0,
2415
+ "flagValue": -1
2416
+ },
2417
+ "unused": {
2418
+ "active": 0,
2419
+ "flagValue": -1
2420
+ },
2421
+ "warnings": {
2422
+ "active": 0,
2423
+ "flagValue": -1
2424
+ },
2425
+ "webkit": {
2426
+ "active": 0,
2427
+ "flagValue": -1
2428
+ },
2429
+ "wrap_iife": {
2430
+ "active": 0,
2431
+ "flagValue": -1
2432
+ }
2433
+ },
2434
+ "uglifyMangleNames": 1,
2435
+ "uglifyReservedNamesString": "$",
2436
+ "websiteRelativeRoot": ""
2437
+ },
2438
+ "settingsFileVersion": "3"
2439
+ }