isml-linter 5.39.3 → 5.39.4
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.
- package/CHANGELOG.md +1167 -1159
- package/LICENSE +21 -21
- package/README.md +245 -245
- package/bin/isml-linter.js +32 -32
- package/ismllinter.config.js +33 -33
- package/package.json +53 -53
- package/scaffold_files/ismllinter.config.js +47 -47
- package/src/Builder.js +15 -15
- package/src/Constants.js +139 -139
- package/src/IsmlLinter.js +255 -255
- package/src/enums/ParseStatus.js +5 -5
- package/src/enums/SfccTagContainer.js +287 -287
- package/src/isml_tree/ContainerNode.js +38 -38
- package/src/isml_tree/IsmlNode.js +684 -684
- package/src/isml_tree/MaskUtils.js +421 -421
- package/src/isml_tree/ParseUtils.js +514 -506
- package/src/isml_tree/TreeBuilder.js +273 -273
- package/src/publicApi.js +24 -24
- package/src/rules/line_by_line/enforce-isprint.js +53 -53
- package/src/rules/line_by_line/enforce-require.js +35 -35
- package/src/rules/line_by_line/lowercase-filename.js +29 -29
- package/src/rules/line_by_line/max-lines.js +37 -37
- package/src/rules/line_by_line/no-br.js +36 -36
- package/src/rules/line_by_line/no-git-conflict.js +43 -43
- package/src/rules/line_by_line/no-import-package.js +34 -34
- package/src/rules/line_by_line/no-inline-style.js +34 -34
- package/src/rules/line_by_line/no-isscript.js +34 -34
- package/src/rules/line_by_line/no-space-only-lines.js +47 -47
- package/src/rules/line_by_line/no-tabs.js +38 -38
- package/src/rules/line_by_line/no-trailing-spaces.js +52 -52
- package/src/rules/prototypes/RulePrototype.js +79 -79
- package/src/rules/prototypes/SingleLineRulePrototype.js +47 -47
- package/src/rules/prototypes/TreeRulePrototype.js +84 -84
- package/src/rules/tree/align-isset.js +87 -87
- package/src/rules/tree/contextual-attrs.js +105 -105
- package/src/rules/tree/custom-tags.js +54 -54
- package/src/rules/tree/disallow-tags.js +39 -39
- package/src/rules/tree/empty-eof.js +66 -66
- package/src/rules/tree/enforce-security.js +85 -85
- package/src/rules/tree/eslint-to-isscript.js +179 -179
- package/src/rules/tree/indent.js +853 -853
- package/src/rules/tree/leading-iscache.js +39 -39
- package/src/rules/tree/leading-iscontent.js +35 -35
- package/src/rules/tree/max-depth.js +54 -54
- package/src/rules/tree/no-deprecated-attrs.js +67 -67
- package/src/rules/tree/no-embedded-isml.js +17 -17
- package/src/rules/tree/no-hardcode.js +51 -51
- package/src/rules/tree/no-iselse-slash.js +35 -35
- package/src/rules/tree/no-redundant-context.js +134 -134
- package/src/rules/tree/no-require-in-loop.js +63 -63
- package/src/rules/tree/one-element-per-line.js +76 -76
- package/src/util/CommandLineUtils.js +19 -19
- package/src/util/ConfigUtils.js +219 -219
- package/src/util/ConsoleUtils.js +327 -327
- package/src/util/CustomTagContainer.js +45 -45
- package/src/util/ExceptionUtils.js +149 -149
- package/src/util/FileUtils.js +79 -79
- package/src/util/GeneralUtils.js +60 -60
- package/src/util/NativeExtensionUtils.js +6 -6
- package/src/util/RuleUtils.js +295 -295
- package/src/util/TempRuleUtils.js +232 -232
package/CHANGELOG.md
CHANGED
|
@@ -1,1159 +1,1167 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [5.39.
|
|
4
|
-
|
|
5
|
-
### Fixed
|
|
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
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
- "
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
### Fixed
|
|
89
|
-
-
|
|
90
|
-
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
- "indent" rule -
|
|
97
|
-
- "indent" rule -
|
|
98
|
-
|
|
99
|
-
## [5.36.
|
|
100
|
-
|
|
101
|
-
### Fixed
|
|
102
|
-
- "indent" rule - autofix to keep
|
|
103
|
-
- "indent" rule - attribute
|
|
104
|
-
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
- "indent" rule -
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
-
|
|
241
|
-
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
-
|
|
457
|
-
|
|
458
|
-
## [5.22.
|
|
459
|
-
|
|
460
|
-
###
|
|
461
|
-
- [Issue #
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
-
|
|
541
|
-
-
|
|
542
|
-
|
|
543
|
-
## [5.18.
|
|
544
|
-
|
|
545
|
-
### Fixed
|
|
546
|
-
-
|
|
547
|
-
-
|
|
548
|
-
-
|
|
549
|
-
|
|
550
|
-
## [5.18.
|
|
551
|
-
|
|
552
|
-
###
|
|
553
|
-
- "
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
-
|
|
679
|
-
|
|
680
|
-
###
|
|
681
|
-
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
###
|
|
766
|
-
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
-
|
|
818
|
-
-
|
|
819
|
-
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
-
|
|
862
|
-
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
###
|
|
887
|
-
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
###
|
|
897
|
-
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
###
|
|
958
|
-
-
|
|
959
|
-
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
[5.
|
|
1006
|
-
[5.
|
|
1007
|
-
[5.
|
|
1008
|
-
[5.
|
|
1009
|
-
[5.
|
|
1010
|
-
[5.
|
|
1011
|
-
[5.
|
|
1012
|
-
[5.
|
|
1013
|
-
[5.
|
|
1014
|
-
[5.
|
|
1015
|
-
[5.
|
|
1016
|
-
[5.
|
|
1017
|
-
[5.
|
|
1018
|
-
[5.
|
|
1019
|
-
[5.
|
|
1020
|
-
[5.
|
|
1021
|
-
[5.
|
|
1022
|
-
[5.
|
|
1023
|
-
[5.
|
|
1024
|
-
[5.35.
|
|
1025
|
-
[5.35.
|
|
1026
|
-
[5.35.
|
|
1027
|
-
[5.
|
|
1028
|
-
[5.
|
|
1029
|
-
[5.
|
|
1030
|
-
[5.
|
|
1031
|
-
[5.
|
|
1032
|
-
[5.
|
|
1033
|
-
[5.
|
|
1034
|
-
[5.
|
|
1035
|
-
[5.
|
|
1036
|
-
[5.
|
|
1037
|
-
[5.
|
|
1038
|
-
[5.
|
|
1039
|
-
[5.
|
|
1040
|
-
[5.
|
|
1041
|
-
[5.
|
|
1042
|
-
[5.
|
|
1043
|
-
[5.
|
|
1044
|
-
[5.
|
|
1045
|
-
[5.
|
|
1046
|
-
[5.26.
|
|
1047
|
-
[5.26.
|
|
1048
|
-
[5.
|
|
1049
|
-
[5.
|
|
1050
|
-
[5.
|
|
1051
|
-
[5.
|
|
1052
|
-
[5.
|
|
1053
|
-
[5.
|
|
1054
|
-
[5.
|
|
1055
|
-
[5.
|
|
1056
|
-
[5.
|
|
1057
|
-
[5.
|
|
1058
|
-
[5.
|
|
1059
|
-
[5.
|
|
1060
|
-
[5.
|
|
1061
|
-
[5.
|
|
1062
|
-
[5.
|
|
1063
|
-
[5.
|
|
1064
|
-
[5.
|
|
1065
|
-
[5.
|
|
1066
|
-
[5.
|
|
1067
|
-
[5.
|
|
1068
|
-
[5.
|
|
1069
|
-
[5.
|
|
1070
|
-
[5.
|
|
1071
|
-
[5.
|
|
1072
|
-
[5.
|
|
1073
|
-
[5.
|
|
1074
|
-
[5.
|
|
1075
|
-
[5.
|
|
1076
|
-
[5.
|
|
1077
|
-
[5.
|
|
1078
|
-
[5.18.
|
|
1079
|
-
[5.
|
|
1080
|
-
[5.
|
|
1081
|
-
[5.
|
|
1082
|
-
[5.
|
|
1083
|
-
[5.
|
|
1084
|
-
[5.
|
|
1085
|
-
[5.
|
|
1086
|
-
[5.
|
|
1087
|
-
[5.
|
|
1088
|
-
[5.
|
|
1089
|
-
[5.
|
|
1090
|
-
[5.
|
|
1091
|
-
[5.
|
|
1092
|
-
[5.
|
|
1093
|
-
[5.
|
|
1094
|
-
[5.
|
|
1095
|
-
[5.
|
|
1096
|
-
[5.
|
|
1097
|
-
[5.
|
|
1098
|
-
[5.
|
|
1099
|
-
[5.
|
|
1100
|
-
[5.
|
|
1101
|
-
[5.
|
|
1102
|
-
[5.
|
|
1103
|
-
[5.
|
|
1104
|
-
[5.
|
|
1105
|
-
[5.
|
|
1106
|
-
[5.
|
|
1107
|
-
[5.
|
|
1108
|
-
[5.
|
|
1109
|
-
[5.
|
|
1110
|
-
[5.
|
|
1111
|
-
[5.
|
|
1112
|
-
[5.
|
|
1113
|
-
[5.3
|
|
1114
|
-
[5.2
|
|
1115
|
-
[5.1
|
|
1116
|
-
[5.0
|
|
1117
|
-
[5.
|
|
1118
|
-
[5.
|
|
1119
|
-
[5.
|
|
1120
|
-
[4.0
|
|
1121
|
-
[
|
|
1122
|
-
[
|
|
1123
|
-
[
|
|
1124
|
-
[
|
|
1125
|
-
[
|
|
1126
|
-
[
|
|
1127
|
-
[
|
|
1128
|
-
[
|
|
1129
|
-
[
|
|
1130
|
-
|
|
1131
|
-
[
|
|
1132
|
-
[
|
|
1133
|
-
[
|
|
1134
|
-
[
|
|
1135
|
-
[
|
|
1136
|
-
[
|
|
1137
|
-
[
|
|
1138
|
-
|
|
1139
|
-
[issue#
|
|
1140
|
-
[issue#
|
|
1141
|
-
[issue#
|
|
1142
|
-
[issue#
|
|
1143
|
-
[issue#
|
|
1144
|
-
[issue#
|
|
1145
|
-
[issue#
|
|
1146
|
-
[issue#
|
|
1147
|
-
|
|
1148
|
-
[
|
|
1149
|
-
[
|
|
1150
|
-
[
|
|
1151
|
-
|
|
1152
|
-
[
|
|
1153
|
-
[
|
|
1154
|
-
[
|
|
1155
|
-
|
|
1156
|
-
[
|
|
1157
|
-
[
|
|
1158
|
-
[
|
|
1159
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [5.39.4] - 2022-01-30
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- "empty-eof" rule - line number for a last "isif" element;
|
|
7
|
+
- Handle "isscript" tag content as text;
|
|
8
|
+
- Allow custom node type to contain "-" character;
|
|
9
|
+
|
|
10
|
+
## [5.39.3] - 2021-10-02
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- [Issue #31][issue#31] - Attribute parse for 2-level embedded `<isif>` tags indentation;
|
|
14
|
+
- Tree build - When a node has a hardcode element as first child;
|
|
15
|
+
|
|
16
|
+
### Security
|
|
17
|
+
- Upgraded dependencies;
|
|
18
|
+
|
|
19
|
+
## [5.39.2] - 2021-09-26
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
- [Issue #31][issue#31] - Attribute parse for 2-level embedded `<isif>` tags;
|
|
23
|
+
- Tree build - When a node has a hardcode element as first child;
|
|
24
|
+
|
|
25
|
+
## [5.39.1] - 2021-09-19
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
- Details to "verbose" global configuration option;
|
|
29
|
+
|
|
30
|
+
### Security
|
|
31
|
+
- Upgraded dependencies;
|
|
32
|
+
|
|
33
|
+
## [5.39.0] - 2021-09-17
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
- [Issue #31][issue#31] - "verbose" global configuration option;
|
|
37
|
+
|
|
38
|
+
## [5.38.5] - 2021-09-12
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
- "[eslint-to-isscript][eslint-to-isscript-readme]" rule;
|
|
42
|
+
|
|
43
|
+
## [5.38.4] - 2021-09-11
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
- Tree build edge case;
|
|
47
|
+
- DOM element attributes parse;
|
|
48
|
+
- "no-require-in-loop" rule - occurrence line number;
|
|
49
|
+
- Displayed message when rule-specific unexpected error occurs;
|
|
50
|
+
|
|
51
|
+
## [5.38.3] - 2021-09-01
|
|
52
|
+
|
|
53
|
+
### Fixed
|
|
54
|
+
- [Issue #30][issue#30]: allow custom tags to be non-self-closing;
|
|
55
|
+
|
|
56
|
+
## [5.38.2] - 2021-08-31
|
|
57
|
+
|
|
58
|
+
### Changed
|
|
59
|
+
- Default value of "[indent][indent-readme]" rule's "quote" option to "never";
|
|
60
|
+
- Improved "[indent][indent-readme]" rule's "standAloneClosingChars" configuration occurrence messages;
|
|
61
|
+
|
|
62
|
+
### Fixed
|
|
63
|
+
- "[indent][indent-readme]" rule - tags closing character global position;
|
|
64
|
+
|
|
65
|
+
## [5.38.1] - 2021-08-29
|
|
66
|
+
|
|
67
|
+
### Fixed
|
|
68
|
+
- "[indent][indent-readme]" rule autofix - removed buggy optimization;
|
|
69
|
+
|
|
70
|
+
## [5.38.0] - 2021-08-29
|
|
71
|
+
|
|
72
|
+
### Added
|
|
73
|
+
- "standAloneClosingChars" configuration attribute to the "[indent][indent-readme]" rule;
|
|
74
|
+
|
|
75
|
+
### Fixed
|
|
76
|
+
- "indent" rule - duplicated attribute parse;
|
|
77
|
+
|
|
78
|
+
## [5.37.0] - 2021-08-22
|
|
79
|
+
|
|
80
|
+
### Added
|
|
81
|
+
- "except" and "allowHtmlEntities" configuration attributes to the "[no-hardcode][no-hardcode-readme]" rule;
|
|
82
|
+
|
|
83
|
+
## [5.36.5] - 2021-08-18
|
|
84
|
+
|
|
85
|
+
### Changed
|
|
86
|
+
- Removed redundant information from "invalid character found" error message;
|
|
87
|
+
|
|
88
|
+
### Fixed
|
|
89
|
+
- Unbalanced element position detection;
|
|
90
|
+
- Tree build parse on edge cases;
|
|
91
|
+
- "[no-inline-style][no-inline-style-readme]" rule - allow `<isprint>` tag to have "style" attribute;
|
|
92
|
+
|
|
93
|
+
## [5.36.4] - 2021-08-15
|
|
94
|
+
|
|
95
|
+
### Fixed
|
|
96
|
+
- "indent" rule - "isif"-nested value indentation;
|
|
97
|
+
- "indent" rule - attribute multi-line value indentation;
|
|
98
|
+
|
|
99
|
+
## [5.36.3] - 2021-08-13
|
|
100
|
+
|
|
101
|
+
### Fixed
|
|
102
|
+
- "indent" rule - autofix to keep space between tag attributes;
|
|
103
|
+
- "indent" rule - expression attribute indentation fix;
|
|
104
|
+
- "indent" rule - indentation of attribute value with embedded "isif" in it;
|
|
105
|
+
|
|
106
|
+
## [5.36.2] - 2021-08-11
|
|
107
|
+
|
|
108
|
+
### Fixed
|
|
109
|
+
- "indent" rule - autofix to keep duplicate spaces between tag attributes;
|
|
110
|
+
- "indent" rule - attribute value indentation;
|
|
111
|
+
- Tree build - unbalanced element detection;
|
|
112
|
+
- Tree build - "script" tag with attribute parse;
|
|
113
|
+
|
|
114
|
+
## [5.36.1] - 2021-08-09
|
|
115
|
+
|
|
116
|
+
### Fixed
|
|
117
|
+
- "indent" rule - indentation of tag attribute values that are in same line as attribute name;
|
|
118
|
+
|
|
119
|
+
### Deprecated
|
|
120
|
+
- "[no-br][no-br-readme]" and "[no-isscript][no-isscript-readme]" rules in favor of "[disallow-tags][disallow-tags-readme]" rule;
|
|
121
|
+
|
|
122
|
+
## [5.36.0] - 2021-08-07
|
|
123
|
+
|
|
124
|
+
### Added
|
|
125
|
+
- "no-redundant-context" rule;
|
|
126
|
+
|
|
127
|
+
## [5.35.10] - 2021-07-31
|
|
128
|
+
|
|
129
|
+
### Fixed
|
|
130
|
+
- "indent" rule - indentation of tag attributes' values in separate lines;
|
|
131
|
+
- "indent" rule - keep single quotes on attribute values on autofix;
|
|
132
|
+
|
|
133
|
+
## [5.35.9] - 2021-07-27
|
|
134
|
+
|
|
135
|
+
### Fixed
|
|
136
|
+
- "indent" rule - indentation of tag attributes in separate lines;
|
|
137
|
+
|
|
138
|
+
### Security
|
|
139
|
+
- Upgraded dependencies;
|
|
140
|
+
|
|
141
|
+
## [5.35.8] - 2021-07-24
|
|
142
|
+
|
|
143
|
+
### Fixed
|
|
144
|
+
- "indent" rule application for attributes in separate lines;
|
|
145
|
+
- Sort template occurrences by line number;
|
|
146
|
+
|
|
147
|
+
### Security
|
|
148
|
+
- Upgraded dependencies;
|
|
149
|
+
|
|
150
|
+
## [5.35.7] - 2021-06-27
|
|
151
|
+
|
|
152
|
+
### Fixed
|
|
153
|
+
- "indent" rule;
|
|
154
|
+
|
|
155
|
+
## [5.35.6] - 2021-06-27
|
|
156
|
+
|
|
157
|
+
### Fixed
|
|
158
|
+
- "indent" rule;
|
|
159
|
+
|
|
160
|
+
## [5.35.5] - 2021-06-26
|
|
161
|
+
|
|
162
|
+
### Changed
|
|
163
|
+
- Refactoring to keep compatibility with older Node versions;
|
|
164
|
+
|
|
165
|
+
## [5.35.4] - 2021-06-26
|
|
166
|
+
|
|
167
|
+
### Fixed
|
|
168
|
+
- "indent" rule autofix feature;
|
|
169
|
+
|
|
170
|
+
## [5.35.3] - 2021-06-12
|
|
171
|
+
|
|
172
|
+
### Changed
|
|
173
|
+
- [Issue #29][issue#29]: Behaviour unification with other linters:
|
|
174
|
+
- Removed progress bar;
|
|
175
|
+
- Removed success message;
|
|
176
|
+
|
|
177
|
+
### Fixed
|
|
178
|
+
- Circular dependency warning;
|
|
179
|
+
|
|
180
|
+
## [5.35.2] - 2021-06-10
|
|
181
|
+
|
|
182
|
+
### Fixed
|
|
183
|
+
- [Issue #26][issue#26]: issue with "script" tag content;
|
|
184
|
+
|
|
185
|
+
### Removed
|
|
186
|
+
- Unused dev dependencies;
|
|
187
|
+
|
|
188
|
+
## [5.35.1] - 2021-03-20
|
|
189
|
+
|
|
190
|
+
### Fixed
|
|
191
|
+
- [Issue #23][issue#23]: "columnNumber" attribute to "eslint-to-isscript" rule result;
|
|
192
|
+
|
|
193
|
+
### Security
|
|
194
|
+
- Upgraded dependencies;
|
|
195
|
+
|
|
196
|
+
## [5.35.0] - 2021-03-14
|
|
197
|
+
|
|
198
|
+
### Added
|
|
199
|
+
- [Issue #23][issue#23]: "columnNumber" attribute to lint result;
|
|
200
|
+
|
|
201
|
+
## [5.30.4] - 2021-03-07
|
|
202
|
+
|
|
203
|
+
### Added
|
|
204
|
+
- "config" optional parameter to [public API][api-docs]'s "parse" method;
|
|
205
|
+
|
|
206
|
+
### Fixed
|
|
207
|
+
- [Issue #23][issue#23]: "indent" rule "value" attribute;
|
|
208
|
+
|
|
209
|
+
### Changed
|
|
210
|
+
- Package name from "Isml Linter" to "ISML Linter";
|
|
211
|
+
|
|
212
|
+
### Security
|
|
213
|
+
- Upgraded dependencies;
|
|
214
|
+
|
|
215
|
+
### Deprecated
|
|
216
|
+
- Global "indent" attribute in favor of "indent" rule's "value" attribute;
|
|
217
|
+
|
|
218
|
+
## [5.30.3] - 2021-02-13
|
|
219
|
+
|
|
220
|
+
### Fixed
|
|
221
|
+
- Tree unbalance position detection;
|
|
222
|
+
|
|
223
|
+
### Changed
|
|
224
|
+
- Re-added VSCode extension README section;
|
|
225
|
+
|
|
226
|
+
## [5.30.2] - 2021-01-17
|
|
227
|
+
|
|
228
|
+
### Fixed
|
|
229
|
+
- "max-depth" rule;
|
|
230
|
+
- "empty-eof" rule;
|
|
231
|
+
|
|
232
|
+
## [5.30.1] - 2021-01-14
|
|
233
|
+
|
|
234
|
+
### Fixed
|
|
235
|
+
- "indent" rule;
|
|
236
|
+
|
|
237
|
+
## [5.30.0] - 2021-01-12
|
|
238
|
+
|
|
239
|
+
### Changed
|
|
240
|
+
- Complete tree build redesign, ISML Linter now runs 40 times faster;
|
|
241
|
+
- Treat <iscomment> tag children as plain text;
|
|
242
|
+
- ESLint indentation reporting;
|
|
243
|
+
|
|
244
|
+
### Fixed
|
|
245
|
+
- "indent" rule;
|
|
246
|
+
- "max-depth" rule;
|
|
247
|
+
- Some occurrences length;
|
|
248
|
+
- autofix issue due to "enableCache" option;
|
|
249
|
+
|
|
250
|
+
### Deprecated
|
|
251
|
+
- "enableCache" option;
|
|
252
|
+
|
|
253
|
+
## [5.29.2] - 2020-12-27
|
|
254
|
+
|
|
255
|
+
### Fixed
|
|
256
|
+
- Tree build;
|
|
257
|
+
- "indent" rule;
|
|
258
|
+
|
|
259
|
+
## [5.29.1] - 2020-12-10
|
|
260
|
+
|
|
261
|
+
### Security
|
|
262
|
+
- Upgraded dependencies;
|
|
263
|
+
|
|
264
|
+
## [5.29.0] - 2020-12-06
|
|
265
|
+
|
|
266
|
+
### Added
|
|
267
|
+
- [Issue #8][issue#8]: "non-tag" and "iscomment" exception options to "one-element-per-line" rule;
|
|
268
|
+
|
|
269
|
+
### Fixed
|
|
270
|
+
- Tree build edge case;
|
|
271
|
+
- "indent" rule edge case;
|
|
272
|
+
|
|
273
|
+
## [5.28.1] - 2020-11-29
|
|
274
|
+
|
|
275
|
+
### Fixed
|
|
276
|
+
- "ignoreUnparseable" config option;
|
|
277
|
+
|
|
278
|
+
## [5.28.0] - 2020-11-28
|
|
279
|
+
|
|
280
|
+
### Changed
|
|
281
|
+
- Big refactoring;
|
|
282
|
+
|
|
283
|
+
### Fixed
|
|
284
|
+
- Tree build edge case;
|
|
285
|
+
- ISML nodes global position;
|
|
286
|
+
- Rules occurrence global position;
|
|
287
|
+
- "eslint-to-isscript" rule behavior upon file change;
|
|
288
|
+
- "indent" rule various issues;
|
|
289
|
+
|
|
290
|
+
## [5.27.0] - 2020-11-15
|
|
291
|
+
|
|
292
|
+
### Added
|
|
293
|
+
- [Issue #20][issue#20]: "[enforce-security][enforce-security-readme]" rule;
|
|
294
|
+
|
|
295
|
+
## [5.26.9] - 2020-08-28
|
|
296
|
+
|
|
297
|
+
### Fixed
|
|
298
|
+
- Removed linter blocker in case "eslint-to-isscript" rule is enabled but there is no eslint file configured;
|
|
299
|
+
|
|
300
|
+
## [5.26.8] - 2020-08-06
|
|
301
|
+
|
|
302
|
+
### Changed
|
|
303
|
+
- Indent rule occurrence message;
|
|
304
|
+
|
|
305
|
+
### Fixed
|
|
306
|
+
- Indent rule;
|
|
307
|
+
|
|
308
|
+
### Removed
|
|
309
|
+
- VSCode extension README section (temporarily);
|
|
310
|
+
|
|
311
|
+
## [5.26.7] - 2020-08-02
|
|
312
|
+
|
|
313
|
+
### Changed
|
|
314
|
+
- Scaffold configuration file: removed known buggy rules and enabled cache;
|
|
315
|
+
|
|
316
|
+
### Fixed
|
|
317
|
+
- Custom tags don't need to be self-closing;
|
|
318
|
+
|
|
319
|
+
## [5.26.6] - 2020-07-26
|
|
320
|
+
|
|
321
|
+
### Fixed
|
|
322
|
+
- Command line interface parameters;
|
|
323
|
+
|
|
324
|
+
## [5.26.5] - 2020-07-18
|
|
325
|
+
|
|
326
|
+
### Fixed
|
|
327
|
+
- "indent" rule;
|
|
328
|
+
- Cross-OS issues;
|
|
329
|
+
|
|
330
|
+
## [5.26.4] - 2020-06-11
|
|
331
|
+
|
|
332
|
+
### Fixed
|
|
333
|
+
- Npm-ignore database directory;
|
|
334
|
+
|
|
335
|
+
## [5.26.3] - 2020-06-09
|
|
336
|
+
|
|
337
|
+
### Fixed
|
|
338
|
+
- Database dependency issue;
|
|
339
|
+
|
|
340
|
+
## [5.26.2] - 2020-06-07
|
|
341
|
+
|
|
342
|
+
### Fixed
|
|
343
|
+
- "no-deprecated-attrs" rule;
|
|
344
|
+
|
|
345
|
+
## [5.26.1] - 2020-05-28
|
|
346
|
+
|
|
347
|
+
### Fixed
|
|
348
|
+
- Tree build process;
|
|
349
|
+
- License in package.json, from "ISC" to "MIT", to be in accordance with the [LICENSE][license] file;
|
|
350
|
+
|
|
351
|
+
## [5.26.0] - 2020-05-26
|
|
352
|
+
|
|
353
|
+
### Added
|
|
354
|
+
- "printPartialResults" configuration option;
|
|
355
|
+
|
|
356
|
+
## [5.25.7] - 2020-05-25
|
|
357
|
+
|
|
358
|
+
### Fixed
|
|
359
|
+
- "indent" rule line number 0 issue;
|
|
360
|
+
- "no-hardcode" rule for <script> tag with ISML tags within its content;
|
|
361
|
+
|
|
362
|
+
## [5.25.6] - 2020-05-24
|
|
363
|
+
|
|
364
|
+
### Added
|
|
365
|
+
- Known "enforce-isprint" rule bug report to documentation;
|
|
366
|
+
|
|
367
|
+
### Fixed
|
|
368
|
+
- "no-hardcode" rule to ignore <style> tag content;
|
|
369
|
+
|
|
370
|
+
## [5.25.5] - 2020-05-20
|
|
371
|
+
|
|
372
|
+
### Fixed
|
|
373
|
+
- Parse handling of missing closing char ">";
|
|
374
|
+
- Parse handling of unclosed ISML deprecated comment;
|
|
375
|
+
|
|
376
|
+
## [5.25.4] - 2020-05-17
|
|
377
|
+
|
|
378
|
+
### Fixed
|
|
379
|
+
- [Issue #17][issue#17]: "contextual-attrs" rule;
|
|
380
|
+
|
|
381
|
+
## [5.25.3] - 2020-05-07
|
|
382
|
+
|
|
383
|
+
### Added
|
|
384
|
+
- License file;
|
|
385
|
+
|
|
386
|
+
### Changed
|
|
387
|
+
- Set some dependencies as "dev" dependencies;
|
|
388
|
+
|
|
389
|
+
### Security
|
|
390
|
+
- Upgraded dependencies;
|
|
391
|
+
|
|
392
|
+
## [5.25.2] - 2020-04-30
|
|
393
|
+
|
|
394
|
+
### Added
|
|
395
|
+
- Possibility for the configuration file to be ".ismllintrc.js";
|
|
396
|
+
|
|
397
|
+
### Fixed
|
|
398
|
+
- Moved database file to the proper directory;
|
|
399
|
+
|
|
400
|
+
## [5.25.1] - 2020-04-29
|
|
401
|
+
|
|
402
|
+
### Added
|
|
403
|
+
- Extra description to cache docs;
|
|
404
|
+
|
|
405
|
+
### Fixed
|
|
406
|
+
- "eslint-to-isscript" rule validation;
|
|
407
|
+
|
|
408
|
+
## [5.25.0] - 2020-04-22
|
|
409
|
+
|
|
410
|
+
### Added
|
|
411
|
+
- "[disallow-tags][disallow-tags-readme]" rule;
|
|
412
|
+
|
|
413
|
+
## [5.24.1] - 2020-03-27
|
|
414
|
+
|
|
415
|
+
### Fixed
|
|
416
|
+
- Cache feature on database creation;
|
|
417
|
+
|
|
418
|
+
### Security
|
|
419
|
+
- Updated dependencies;
|
|
420
|
+
|
|
421
|
+
## [5.24.0] - 2020-03-24
|
|
422
|
+
|
|
423
|
+
### Added
|
|
424
|
+
- Cache feature;
|
|
425
|
+
|
|
426
|
+
## [5.23.1] - 2020-03-02
|
|
427
|
+
|
|
428
|
+
### Fixed
|
|
429
|
+
- Public API print result method;
|
|
430
|
+
- Occurrence level issues;
|
|
431
|
+
|
|
432
|
+
## [5.23.0] - 2020-02-26
|
|
433
|
+
|
|
434
|
+
### Added
|
|
435
|
+
- "warning" and "info" broken rule occurrence levels;
|
|
436
|
+
|
|
437
|
+
## [5.22.4] - 2019-12-29
|
|
438
|
+
|
|
439
|
+
### Security
|
|
440
|
+
- Updated vulnerable dependencies;
|
|
441
|
+
|
|
442
|
+
## [5.22.3] - 2019-12-25
|
|
443
|
+
|
|
444
|
+
### Changed
|
|
445
|
+
- Lint result error messages;
|
|
446
|
+
|
|
447
|
+
### Fixed
|
|
448
|
+
- "custom-tags" rule;
|
|
449
|
+
|
|
450
|
+
## [5.22.2] - 2019-12-07
|
|
451
|
+
|
|
452
|
+
### Added
|
|
453
|
+
- Accepted isml configuration file names to README file;
|
|
454
|
+
|
|
455
|
+
### Fixed
|
|
456
|
+
- Command line "init" option;
|
|
457
|
+
|
|
458
|
+
## [5.22.1] - 2019-11-30
|
|
459
|
+
|
|
460
|
+
### Fixed
|
|
461
|
+
- [Issue #7][issue#7], [issue #11][issue#11]: "one-element-per-line" rule;
|
|
462
|
+
- [Issue #9][issue#9]: "empty-eof" rule;
|
|
463
|
+
- "No hardcode" and "Indent" rules: ignore <script> tag content;
|
|
464
|
+
|
|
465
|
+
## [5.22.0] - 2019-11-24
|
|
466
|
+
|
|
467
|
+
### Added
|
|
468
|
+
- [Issue #4][issue#4] ".eslintrc" filename as an acceptable config filename;
|
|
469
|
+
|
|
470
|
+
### Fixed
|
|
471
|
+
- Command Line - If no directory or template parameter is passed, configured root directory or default directory is used;
|
|
472
|
+
|
|
473
|
+
## [5.21.0] - 2019-11-17
|
|
474
|
+
|
|
475
|
+
### Added
|
|
476
|
+
- [Issue #6][issue#6] Feature to lint specific file or directory through [command line][cli-docs];
|
|
477
|
+
|
|
478
|
+
## [5.20.0] - 2019-11-09
|
|
479
|
+
|
|
480
|
+
### Added
|
|
481
|
+
- "Indent" rule autofix feature;
|
|
482
|
+
|
|
483
|
+
## [5.19.2] - 2019-11-06
|
|
484
|
+
|
|
485
|
+
### Fixed
|
|
486
|
+
- [Issue #5][issue#5] "rootDir" config option;
|
|
487
|
+
|
|
488
|
+
## [5.19.1] - 2019-09-16
|
|
489
|
+
|
|
490
|
+
### Changed
|
|
491
|
+
- Moved source code up in the directory tree;
|
|
492
|
+
|
|
493
|
+
### Fixed
|
|
494
|
+
- Tree build: Allow slashy <isif/> tag;
|
|
495
|
+
|
|
496
|
+
## [5.19.0] - 2019-09-08
|
|
497
|
+
|
|
498
|
+
### Added
|
|
499
|
+
- Line ending configuration;
|
|
500
|
+
- ESLint configuration file: ".js" is now allowed;
|
|
501
|
+
|
|
502
|
+
### Changed
|
|
503
|
+
- Optimized npm package size;
|
|
504
|
+
|
|
505
|
+
## [5.18.8] - 2019-09-05
|
|
506
|
+
|
|
507
|
+
### Fixed
|
|
508
|
+
- Configuration dynamic definition;
|
|
509
|
+
|
|
510
|
+
## [5.18.7] - 2019-09-04
|
|
511
|
+
|
|
512
|
+
### Removed
|
|
513
|
+
- "Indent" rule autofix feature due to major bugs;
|
|
514
|
+
- "One Element per Line" rule autofix feature due to major bugs;
|
|
515
|
+
|
|
516
|
+
## [5.18.6] - 2019-09-03
|
|
517
|
+
|
|
518
|
+
### Fixed
|
|
519
|
+
- "Indent" rule autofix feature;
|
|
520
|
+
|
|
521
|
+
## [5.18.5] - 2019-09-02
|
|
522
|
+
|
|
523
|
+
### Fixed
|
|
524
|
+
- "Eslint to Isscript" rule;
|
|
525
|
+
|
|
526
|
+
## [5.18.4] - 2019-09-01
|
|
527
|
+
|
|
528
|
+
### Added
|
|
529
|
+
- Minimum required Node version (>=10.0.0) to docs;
|
|
530
|
+
|
|
531
|
+
### Changed
|
|
532
|
+
- Display up to 100 errors in the output;
|
|
533
|
+
|
|
534
|
+
### Fixed
|
|
535
|
+
- Suggested initialization command;
|
|
536
|
+
|
|
537
|
+
## [5.18.3] - 2019-09-01
|
|
538
|
+
|
|
539
|
+
### Added
|
|
540
|
+
- Progress bar;
|
|
541
|
+
- "path" parameter to the API's build method;
|
|
542
|
+
|
|
543
|
+
## [5.18.2] - 2019-08-31
|
|
544
|
+
|
|
545
|
+
### Fixed
|
|
546
|
+
- HTML comments containing ISML expressions;
|
|
547
|
+
- Implicitly closed self-closing ISML tags;
|
|
548
|
+
- Minor output display fixes;
|
|
549
|
+
|
|
550
|
+
## [5.18.1] - 2019-08-27
|
|
551
|
+
|
|
552
|
+
### Fixed
|
|
553
|
+
- "Lowercase Filename" rule;
|
|
554
|
+
- Configuration load;
|
|
555
|
+
- "Missing ESLint config" error display message;
|
|
556
|
+
|
|
557
|
+
## [5.18.0] - 2019-08-25
|
|
558
|
+
|
|
559
|
+
### Added
|
|
560
|
+
- "Indent" autofix feature;
|
|
561
|
+
|
|
562
|
+
### Changed
|
|
563
|
+
- Removed empty nodes from ISML tree;
|
|
564
|
+
|
|
565
|
+
## [5.17.4] - 2019-08-24
|
|
566
|
+
|
|
567
|
+
### Fixed
|
|
568
|
+
- API should not raise an error if no config is set at require time;
|
|
569
|
+
|
|
570
|
+
## [5.17.3] - 2019-08-22
|
|
571
|
+
|
|
572
|
+
### Fixed
|
|
573
|
+
- HTML comment as first child element upon tree-based template reconstruction;
|
|
574
|
+
|
|
575
|
+
### Security
|
|
576
|
+
- Updated vulnerable dependencies;
|
|
577
|
+
|
|
578
|
+
## [5.17.2] - 2019-08-20
|
|
579
|
+
|
|
580
|
+
### Fixed
|
|
581
|
+
- Closing dynamic tag upon tree-based template reconstruction;
|
|
582
|
+
|
|
583
|
+
## [5.17.1] - 2019-08-19
|
|
584
|
+
|
|
585
|
+
### Added
|
|
586
|
+
- Indent size global configuration;
|
|
587
|
+
|
|
588
|
+
### Changed
|
|
589
|
+
- Code refactoring;
|
|
590
|
+
|
|
591
|
+
### Fixed
|
|
592
|
+
- "One Element per Line" rule custom indentation size fix;
|
|
593
|
+
|
|
594
|
+
### Deprecated
|
|
595
|
+
- "Indent" rule indentation size configuration;
|
|
596
|
+
|
|
597
|
+
## [5.17.0] - 2019-08-18
|
|
598
|
+
|
|
599
|
+
### Added
|
|
600
|
+
- "No Iselse Slash" autofix feature;
|
|
601
|
+
|
|
602
|
+
## [5.16.0] - 2019-08-16
|
|
603
|
+
|
|
604
|
+
### Added
|
|
605
|
+
- "Align Isset" rule;
|
|
606
|
+
|
|
607
|
+
### Changed
|
|
608
|
+
- Code refactoring and optimization;
|
|
609
|
+
|
|
610
|
+
## [5.15.0] - 2019-08-10
|
|
611
|
+
|
|
612
|
+
### Added
|
|
613
|
+
- "Max Lines" rule;
|
|
614
|
+
|
|
615
|
+
### Changed
|
|
616
|
+
- Rule ID as lint result object key, instead of description;
|
|
617
|
+
- Code refactoring;
|
|
618
|
+
|
|
619
|
+
## [5.14.3] - 2019-08-06
|
|
620
|
+
|
|
621
|
+
### Fixed
|
|
622
|
+
- Bug related to a node-version-problematic dependency;
|
|
623
|
+
|
|
624
|
+
### Changed
|
|
625
|
+
- Code refactoring;
|
|
626
|
+
|
|
627
|
+
## [5.14.2] - 2019-08-03
|
|
628
|
+
|
|
629
|
+
### Changed
|
|
630
|
+
- Code refactoring;
|
|
631
|
+
- Performance improvement;
|
|
632
|
+
|
|
633
|
+
## [5.14.1] - 2019-07-27
|
|
634
|
+
|
|
635
|
+
### Fixed
|
|
636
|
+
- HTML comment opening strings within HTML comments, such as: <!-- <!-- -->
|
|
637
|
+
|
|
638
|
+
## [5.14.0] - 2019-07-23
|
|
639
|
+
|
|
640
|
+
### Added
|
|
641
|
+
- Autofix feature for "Eslint to Isscript" rule;
|
|
642
|
+
- Allowance only of custom modules lowercase attributes if "Custom Tags" rule is enabled;
|
|
643
|
+
|
|
644
|
+
### Changed
|
|
645
|
+
- Code refactoring;
|
|
646
|
+
|
|
647
|
+
## [5.13.0] - 2019-07-20
|
|
648
|
+
|
|
649
|
+
### Added
|
|
650
|
+
- "Empty End-of-File" rule;
|
|
651
|
+
|
|
652
|
+
### Security
|
|
653
|
+
- Updated vulnerable dependencies;
|
|
654
|
+
|
|
655
|
+
## [5.12.4] - 2019-07-15
|
|
656
|
+
|
|
657
|
+
### Fixed
|
|
658
|
+
- ">" character occurrence within ISML expression;
|
|
659
|
+
|
|
660
|
+
## [5.12.3] - 2019-07-14
|
|
661
|
+
|
|
662
|
+
### Fixed
|
|
663
|
+
- Issues with deprecated ISML comment: <!--- --->
|
|
664
|
+
|
|
665
|
+
## [5.12.2] - 2019-07-11
|
|
666
|
+
|
|
667
|
+
### Fixed
|
|
668
|
+
- Generated-tree template reconstruction;
|
|
669
|
+
|
|
670
|
+
## [5.12.1] - 2019-07-10
|
|
671
|
+
|
|
672
|
+
### Fixed
|
|
673
|
+
- Generated-tree template reconstruction;
|
|
674
|
+
|
|
675
|
+
### Security
|
|
676
|
+
- Updated vulnerable dependencies;
|
|
677
|
+
|
|
678
|
+
## [5.12.0] - 2019-07-09
|
|
679
|
+
|
|
680
|
+
### Added
|
|
681
|
+
- "No Else Slash" rule;
|
|
682
|
+
|
|
683
|
+
### Fixed
|
|
684
|
+
- Call to an inexistent function;
|
|
685
|
+
- "iselse" tag global position and line number;
|
|
686
|
+
|
|
687
|
+
### Changed
|
|
688
|
+
- Code refactoring;
|
|
689
|
+
|
|
690
|
+
## [5.11.0] - 2019-07-07
|
|
691
|
+
|
|
692
|
+
### Added
|
|
693
|
+
- "ESLint to Isscript" rule;
|
|
694
|
+
|
|
695
|
+
### Fixed
|
|
696
|
+
- Public API dynamic content parameter;
|
|
697
|
+
|
|
698
|
+
## [5.10.1] - 2019-06-29
|
|
699
|
+
|
|
700
|
+
### Changed
|
|
701
|
+
- Code refactoring;
|
|
702
|
+
|
|
703
|
+
### Fixed
|
|
704
|
+
- Included missing rules in config file for initialization script;
|
|
705
|
+
|
|
706
|
+
## [5.10.0] - 2019-06-20
|
|
707
|
+
|
|
708
|
+
### Added
|
|
709
|
+
- "Leading Iscache" rule;
|
|
710
|
+
- "Lowercase filename" rule;
|
|
711
|
+
|
|
712
|
+
## [5.9.0] - 2019-06-16
|
|
713
|
+
|
|
714
|
+
### Added
|
|
715
|
+
- "Custom Tags" rule;
|
|
716
|
+
|
|
717
|
+
### Fixed
|
|
718
|
+
- Issue with deprecated ISML comment: <!--- --->
|
|
719
|
+
|
|
720
|
+
## [5.8.0] - 2019-06-09
|
|
721
|
+
|
|
722
|
+
### Added
|
|
723
|
+
- Autofix feature for rules:
|
|
724
|
+
- One Element per Line;
|
|
725
|
+
- Leading Iscontent;
|
|
726
|
+
- VSCode extension reference to README;
|
|
727
|
+
|
|
728
|
+
## [5.7.1] - 2019-06-06
|
|
729
|
+
|
|
730
|
+
### Fixed
|
|
731
|
+
- [Issue #3][issue#3] partially, build process now ignores files defined in the configuration file;
|
|
732
|
+
|
|
733
|
+
## [5.7.0] - 2019-06-04
|
|
734
|
+
|
|
735
|
+
### Added
|
|
736
|
+
- "Contextual Attribute" rule;
|
|
737
|
+
- "No Deprecated Attributes" rule;
|
|
738
|
+
|
|
739
|
+
## [5.6.1] - 2019-06-02
|
|
740
|
+
|
|
741
|
+
### Added
|
|
742
|
+
- Performance-Meter;
|
|
743
|
+
|
|
744
|
+
### Fixed
|
|
745
|
+
- Absolute path template as param;
|
|
746
|
+
|
|
747
|
+
### Changed
|
|
748
|
+
- Considerable code refactoring;
|
|
749
|
+
- Improved performance;
|
|
750
|
+
|
|
751
|
+
## [5.6.0] - 2019-05-28
|
|
752
|
+
|
|
753
|
+
### Added
|
|
754
|
+
- New rule - "Leading <iscontent> Tag";
|
|
755
|
+
- Output information for "unknown error" scenario;
|
|
756
|
+
|
|
757
|
+
### Changed
|
|
758
|
+
- Config file initialization: not automatic anymore. Description added to README;
|
|
759
|
+
|
|
760
|
+
## [5.5.3] - 2019-05-25
|
|
761
|
+
|
|
762
|
+
### Added
|
|
763
|
+
- Data to unparseable template result;
|
|
764
|
+
|
|
765
|
+
### Fixed
|
|
766
|
+
- Docs misspellings;
|
|
767
|
+
- Contentless tag handling;
|
|
768
|
+
- ISML node types;
|
|
769
|
+
|
|
770
|
+
## [5.5.2] - 2019-05-23
|
|
771
|
+
|
|
772
|
+
### Added
|
|
773
|
+
- "Contribute" docs;
|
|
774
|
+
|
|
775
|
+
## [5.5.1] - 2019-05-21
|
|
776
|
+
|
|
777
|
+
### Added
|
|
778
|
+
- Print lint output from API;
|
|
779
|
+
|
|
780
|
+
## [5.5.0] - 2019-05-20
|
|
781
|
+
|
|
782
|
+
### Added
|
|
783
|
+
- Optional "content" param to API;
|
|
784
|
+
- Unbalanced element information to parse output;
|
|
785
|
+
- Parsed isml node attributes for future rules;
|
|
786
|
+
- ISML node closing tag data: position and length;
|
|
787
|
+
|
|
788
|
+
### Fixed
|
|
789
|
+
- Indentation Rule output data fix;
|
|
790
|
+
|
|
791
|
+
## [5.4.3] - 2019-05-12
|
|
792
|
+
|
|
793
|
+
### Fixed
|
|
794
|
+
- Hardcode rule for edge cases:
|
|
795
|
+
- If it's the first element in the DOM;
|
|
796
|
+
- If it's the last element in the DOM;
|
|
797
|
+
- If it's the only element in the DOM;
|
|
798
|
+
|
|
799
|
+
## [5.4.2] - 2019-05-08
|
|
800
|
+
|
|
801
|
+
### Fixed
|
|
802
|
+
- Error occurrence global starting position;
|
|
803
|
+
- Rule default and custom configs handling;
|
|
804
|
+
- Single file as param to ISML Linter;
|
|
805
|
+
- Output template path for unknown error;
|
|
806
|
+
- Error occurrence length;
|
|
807
|
+
|
|
808
|
+
## [5.4.1] - 2019-05-05
|
|
809
|
+
|
|
810
|
+
### Fixed
|
|
811
|
+
- Parse output filepath for unparseable templates;
|
|
812
|
+
|
|
813
|
+
## [5.4.0] - 2019-05-05
|
|
814
|
+
|
|
815
|
+
### Added
|
|
816
|
+
- Public API's `parse()` method now also accepts array of filepaths;
|
|
817
|
+
- Preferred config filename: ismllinter.config.js;
|
|
818
|
+
- Public API backwards-compatibility objects;
|
|
819
|
+
- Rule name and description to each API output;
|
|
820
|
+
|
|
821
|
+
## [5.3.0] - 2019-04-28
|
|
822
|
+
|
|
823
|
+
### Added
|
|
824
|
+
- API docs;
|
|
825
|
+
- Project-level path to linter result;
|
|
826
|
+
- Donation button;
|
|
827
|
+
|
|
828
|
+
### Changed
|
|
829
|
+
- Heavy code refactoring;
|
|
830
|
+
|
|
831
|
+
### Fixed
|
|
832
|
+
- Hardcode-related parse bug;
|
|
833
|
+
|
|
834
|
+
## [5.2.0] - 2019-04-14
|
|
835
|
+
|
|
836
|
+
### Added
|
|
837
|
+
- "disableHtml5" config;
|
|
838
|
+
|
|
839
|
+
### Changed
|
|
840
|
+
- Improved error listing messages;
|
|
841
|
+
|
|
842
|
+
### Fixed
|
|
843
|
+
- "No-hardcode" rule;
|
|
844
|
+
- Various bugs on tree build:
|
|
845
|
+
- Allowed void elements;
|
|
846
|
+
- Allowed DOCTYPE tag;
|
|
847
|
+
- Ignored script tag content for isml parsing;
|
|
848
|
+
- Custom tags with "_" character;
|
|
849
|
+
- Allowed multiple elements;
|
|
850
|
+
- Dynamic elements: <${elem} />;
|
|
851
|
+
- Allowed empty isml expression: ${};
|
|
852
|
+
- <iscomment> element;
|
|
853
|
+
|
|
854
|
+
## [5.1.0] - 2019-04-07
|
|
855
|
+
|
|
856
|
+
### Added
|
|
857
|
+
- [Issue #2, item 1][issue#2] Rule-level ignore config;
|
|
858
|
+
|
|
859
|
+
### Fixed
|
|
860
|
+
- [Issue #2, item 2][issue#2] "Enforce Isprint" rule;
|
|
861
|
+
- "No hardcode" rule;
|
|
862
|
+
- List unparseable templates;
|
|
863
|
+
- Allowed slashy "isif" opening tag: <isif />
|
|
864
|
+
|
|
865
|
+
## [5.0.3] - 2019-04-02
|
|
866
|
+
|
|
867
|
+
### Fixed
|
|
868
|
+
- Issue on AST build;
|
|
869
|
+
- Stopped creating an empty "output" directory;
|
|
870
|
+
|
|
871
|
+
## [5.0.2] - 2019-03-30
|
|
872
|
+
|
|
873
|
+
### Added
|
|
874
|
+
- Git hooks suggestion on README;
|
|
875
|
+
|
|
876
|
+
## [5.0.1] - 2019-03-25
|
|
877
|
+
|
|
878
|
+
### Fixed
|
|
879
|
+
- Autofix was not applied to all files;
|
|
880
|
+
|
|
881
|
+
### Security
|
|
882
|
+
- Updated vulnerable dependencies;
|
|
883
|
+
|
|
884
|
+
## [5.0.0] - 2019-03-19
|
|
885
|
+
|
|
886
|
+
### Added
|
|
887
|
+
- Autofix feature;
|
|
888
|
+
- Autofix for rules:
|
|
889
|
+
- no-space-only;
|
|
890
|
+
- no-tabs;
|
|
891
|
+
- no-trailing-spaces;
|
|
892
|
+
|
|
893
|
+
### Changed
|
|
894
|
+
- Docs for scripts;
|
|
895
|
+
|
|
896
|
+
### Removed
|
|
897
|
+
- Output JSON files;
|
|
898
|
+
- Auto-update config from versions prior to v3.0.0;
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
## [4.0.3] - 2019-03-17
|
|
902
|
+
|
|
903
|
+
### Fixed
|
|
904
|
+
- 'disableTreeParse' config flag;
|
|
905
|
+
|
|
906
|
+
### Removed
|
|
907
|
+
- 'max-line' and 'complexity' rules from docs, as they are is not implemented yet;
|
|
908
|
+
|
|
909
|
+
## [4.0.2] - 2019-03-13
|
|
910
|
+
|
|
911
|
+
### Fixed
|
|
912
|
+
- npm / github code sync;
|
|
913
|
+
|
|
914
|
+
## [4.0.1] - 2019-03-10
|
|
915
|
+
|
|
916
|
+
### Fixed
|
|
917
|
+
- Unbalanced tag message fix;
|
|
918
|
+
- Issue related to <style> tag;
|
|
919
|
+
|
|
920
|
+
### Removed
|
|
921
|
+
- 'empty-eof-line' rule from docs, as it is not implemented yet;
|
|
922
|
+
|
|
923
|
+
## [4.0.0] - 2019-03-03
|
|
924
|
+
|
|
925
|
+
### Added
|
|
926
|
+
- AST build;
|
|
927
|
+
- New rules:
|
|
928
|
+
- Indentation;
|
|
929
|
+
- Max depth;
|
|
930
|
+
- No Require in Loop;
|
|
931
|
+
- No hardcode;
|
|
932
|
+
- One Element per Line;
|
|
933
|
+
- No Embedded ISML Tag;
|
|
934
|
+
|
|
935
|
+
### Removed
|
|
936
|
+
- Global installation support;
|
|
937
|
+
|
|
938
|
+
### Deprecated
|
|
939
|
+
- Output directory and json file;
|
|
940
|
+
|
|
941
|
+
## [3.0.0] - 2018-10-17
|
|
942
|
+
|
|
943
|
+
### Added
|
|
944
|
+
- Auto-conversion from old to new rule configuration keywords;
|
|
945
|
+
|
|
946
|
+
### Changed
|
|
947
|
+
- Configuration file rule definition;
|
|
948
|
+
|
|
949
|
+
### Removed
|
|
950
|
+
- BalancedIsifTagRule;
|
|
951
|
+
|
|
952
|
+
## [2.3.0] - 2018-10-07
|
|
953
|
+
|
|
954
|
+
### Added
|
|
955
|
+
- Print error list in log on build script run;
|
|
956
|
+
|
|
957
|
+
### Changed
|
|
958
|
+
- Error log in terminal instead of in a separate file;
|
|
959
|
+
- Improved README.md design;
|
|
960
|
+
- Simplified automated build script;
|
|
961
|
+
|
|
962
|
+
## [2.2.0] - 2018-10-01
|
|
963
|
+
|
|
964
|
+
### Added
|
|
965
|
+
- Configuration features: root linting directory and ignorable directories;
|
|
966
|
+
- Increased test coverage;
|
|
967
|
+
|
|
968
|
+
### Fixed
|
|
969
|
+
- Space at end of line rule for Windows;
|
|
970
|
+
- Output file line number;
|
|
971
|
+
|
|
972
|
+
## [2.0.1] - 2018-09-23
|
|
973
|
+
|
|
974
|
+
### Added
|
|
975
|
+
- Changelog file;
|
|
976
|
+
- Create error log file upon exception;
|
|
977
|
+
|
|
978
|
+
### Fixed
|
|
979
|
+
- A bug in the main script file;
|
|
980
|
+
|
|
981
|
+
## [2.0.0] - 2018-08-20
|
|
982
|
+
|
|
983
|
+
### Added
|
|
984
|
+
- Compatibility to be used by VS Code extension;
|
|
985
|
+
|
|
986
|
+
### Changed
|
|
987
|
+
- Design Refactoring;
|
|
988
|
+
|
|
989
|
+
### Security
|
|
990
|
+
- Updated vulnerable dependencies;
|
|
991
|
+
|
|
992
|
+
### Deprecated
|
|
993
|
+
- BalancedIsifTagRule;
|
|
994
|
+
|
|
995
|
+
## [1.0.1] - 2018-05-31
|
|
996
|
+
|
|
997
|
+
### Fixed
|
|
998
|
+
- Minor rules bugs;
|
|
999
|
+
|
|
1000
|
+
## 1.0.0 - 2018-05-02
|
|
1001
|
+
|
|
1002
|
+
### Added
|
|
1003
|
+
- Linter is published;
|
|
1004
|
+
|
|
1005
|
+
[5.39.4]: https://github.com/FabiowQuixada/isml-linter/compare/v5.39.3...v5.39.4
|
|
1006
|
+
[5.39.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.39.2...v5.39.3
|
|
1007
|
+
[5.39.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.39.1...v5.39.2
|
|
1008
|
+
[5.39.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.39.0...v5.39.1
|
|
1009
|
+
[5.39.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.38.5...v5.39.0
|
|
1010
|
+
[5.38.5]: https://github.com/FabiowQuixada/isml-linter/compare/v5.38.4...v5.38.5
|
|
1011
|
+
[5.38.4]: https://github.com/FabiowQuixada/isml-linter/compare/v5.38.3...v5.38.4
|
|
1012
|
+
[5.38.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.38.2...v5.38.3
|
|
1013
|
+
[5.38.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.38.1...v5.38.2
|
|
1014
|
+
[5.38.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.38.0...v5.38.1
|
|
1015
|
+
[5.38.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.38.0...v5.38.1
|
|
1016
|
+
[5.38.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.37.0...v5.38.0
|
|
1017
|
+
[5.37.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.36.5...v5.37.0
|
|
1018
|
+
[5.36.5]: https://github.com/FabiowQuixada/isml-linter/compare/v5.36.4...v5.36.5
|
|
1019
|
+
[5.36.4]: https://github.com/FabiowQuixada/isml-linter/compare/v5.36.3...v5.36.4
|
|
1020
|
+
[5.36.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.36.2...v5.36.3
|
|
1021
|
+
[5.36.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.36.1...v5.36.2
|
|
1022
|
+
[5.36.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.36.0...v5.36.1
|
|
1023
|
+
[5.36.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.35.10...v5.36.0
|
|
1024
|
+
[5.35.10]: https://github.com/FabiowQuixada/isml-linter/compare/v5.35.9...v5.35.10
|
|
1025
|
+
[5.35.9]: https://github.com/FabiowQuixada/isml-linter/compare/v5.35.8...v5.35.9
|
|
1026
|
+
[5.35.8]: https://github.com/FabiowQuixada/isml-linter/compare/v5.35.7...v5.35.8
|
|
1027
|
+
[5.35.7]: https://github.com/FabiowQuixada/isml-linter/compare/v5.35.6...v5.35.7
|
|
1028
|
+
[5.35.6]: https://github.com/FabiowQuixada/isml-linter/compare/v5.35.5...v5.35.6
|
|
1029
|
+
[5.35.5]: https://github.com/FabiowQuixada/isml-linter/compare/v5.35.4...v5.35.5
|
|
1030
|
+
[5.35.4]: https://github.com/FabiowQuixada/isml-linter/compare/v5.35.3...v5.35.4
|
|
1031
|
+
[5.35.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.35.2...v5.35.3
|
|
1032
|
+
[5.35.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.35.1...v5.35.2
|
|
1033
|
+
[5.35.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.35.0...v5.35.1
|
|
1034
|
+
[5.35.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.30.4...v5.35.0
|
|
1035
|
+
[5.30.4]: https://github.com/FabiowQuixada/isml-linter/compare/v5.30.3...v5.30.4
|
|
1036
|
+
[5.30.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.30.2...v5.30.3
|
|
1037
|
+
[5.30.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.30.1...v5.30.2
|
|
1038
|
+
[5.30.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.30.0...v5.30.1
|
|
1039
|
+
[5.30.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.29.2...v5.30.0
|
|
1040
|
+
[5.29.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.29.1...v5.29.2
|
|
1041
|
+
[5.29.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.29.0...v5.29.1
|
|
1042
|
+
[5.29.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.28.1...v5.29.0
|
|
1043
|
+
[5.28.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.28.0...v5.28.1
|
|
1044
|
+
[5.28.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.27.0...v5.28.0
|
|
1045
|
+
[5.27.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.26.9...v5.27.0
|
|
1046
|
+
[5.26.9]: https://github.com/FabiowQuixada/isml-linter/compare/v5.26.8...v5.26.9
|
|
1047
|
+
[5.26.8]: https://github.com/FabiowQuixada/isml-linter/compare/v5.26.7...v5.26.8
|
|
1048
|
+
[5.26.7]: https://github.com/FabiowQuixada/isml-linter/compare/v5.26.6...v5.26.7
|
|
1049
|
+
[5.26.6]: https://github.com/FabiowQuixada/isml-linter/compare/v5.26.5...v5.26.6
|
|
1050
|
+
[5.26.5]: https://github.com/FabiowQuixada/isml-linter/compare/v5.26.4...v5.26.5
|
|
1051
|
+
[5.26.4]: https://github.com/FabiowQuixada/isml-linter/compare/v5.26.3...v5.26.4
|
|
1052
|
+
[5.26.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.26.2...v5.26.3
|
|
1053
|
+
[5.26.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.26.1...v5.26.2
|
|
1054
|
+
[5.26.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.26.0...v5.26.1
|
|
1055
|
+
[5.26.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.25.7...v5.26.0
|
|
1056
|
+
[5.25.7]: https://github.com/FabiowQuixada/isml-linter/compare/v5.25.6...v5.25.7
|
|
1057
|
+
[5.25.6]: https://github.com/FabiowQuixada/isml-linter/compare/v5.25.5...v5.25.6
|
|
1058
|
+
[5.25.5]: https://github.com/FabiowQuixada/isml-linter/compare/v5.25.4...v5.25.5
|
|
1059
|
+
[5.25.4]: https://github.com/FabiowQuixada/isml-linter/compare/v5.25.3...v5.25.4
|
|
1060
|
+
[5.25.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.25.2...v5.25.3
|
|
1061
|
+
[5.25.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.25.1...v5.25.2
|
|
1062
|
+
[5.25.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.25.0...v5.25.1
|
|
1063
|
+
[5.25.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.24.1...v5.25.0
|
|
1064
|
+
[5.24.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.24.0...v5.24.1
|
|
1065
|
+
[5.24.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.23.1...v5.24.0
|
|
1066
|
+
[5.23.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.23.0...v5.23.1
|
|
1067
|
+
[5.23.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.22.4...v5.23.0
|
|
1068
|
+
[5.22.4]: https://github.com/FabiowQuixada/isml-linter/compare/v5.22.3...v5.22.4
|
|
1069
|
+
[5.22.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.22.2...v5.22.3
|
|
1070
|
+
[5.22.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.22.1...v5.22.2
|
|
1071
|
+
[5.22.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.22.0...v5.22.1
|
|
1072
|
+
[5.22.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.21.0...v5.22.0
|
|
1073
|
+
[5.21.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.20.0...v5.21.0
|
|
1074
|
+
[5.20.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.19.2...v5.20.0
|
|
1075
|
+
[5.19.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.19.1...v5.19.2
|
|
1076
|
+
[5.19.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.19.0...v5.19.1
|
|
1077
|
+
[5.19.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.18.8...v5.19.0
|
|
1078
|
+
[5.18.8]: https://github.com/FabiowQuixada/isml-linter/compare/v5.18.7...v5.18.8
|
|
1079
|
+
[5.18.7]: https://github.com/FabiowQuixada/isml-linter/compare/v5.18.6...v5.18.7
|
|
1080
|
+
[5.18.6]: https://github.com/FabiowQuixada/isml-linter/compare/v5.18.5...v5.18.6
|
|
1081
|
+
[5.18.5]: https://github.com/FabiowQuixada/isml-linter/compare/v5.18.4...v5.18.5
|
|
1082
|
+
[5.18.4]: https://github.com/FabiowQuixada/isml-linter/compare/v5.18.3...v5.18.4
|
|
1083
|
+
[5.18.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.18.2...v5.18.3
|
|
1084
|
+
[5.18.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.18.1...v5.18.2
|
|
1085
|
+
[5.18.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.18.0...v5.18.1
|
|
1086
|
+
[5.18.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.17.4...v5.18.0
|
|
1087
|
+
[5.17.4]: https://github.com/FabiowQuixada/isml-linter/compare/v5.17.3...v5.17.4
|
|
1088
|
+
[5.17.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.17.2...v5.17.3
|
|
1089
|
+
[5.17.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.17.1...v5.17.2
|
|
1090
|
+
[5.17.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.17.0...v5.17.1
|
|
1091
|
+
[5.17.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.16.0...v5.17.0
|
|
1092
|
+
[5.16.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.15.0...v5.16.0
|
|
1093
|
+
[5.15.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.14.3...v5.15.0
|
|
1094
|
+
[5.14.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.14.2...v5.14.3
|
|
1095
|
+
[5.14.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.14.1...v5.14.2
|
|
1096
|
+
[5.14.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.14.0...v5.14.1
|
|
1097
|
+
[5.14.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.13.0...v5.14.0
|
|
1098
|
+
[5.13.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.12.4...v5.13.0
|
|
1099
|
+
[5.12.4]: https://github.com/FabiowQuixada/isml-linter/compare/v5.12.3...v5.12.4
|
|
1100
|
+
[5.12.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.12.2...v5.12.3
|
|
1101
|
+
[5.12.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.12.1...v5.12.2
|
|
1102
|
+
[5.12.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.12.0...v5.12.1
|
|
1103
|
+
[5.12.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.11.0...v5.12.0
|
|
1104
|
+
[5.11.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.10.1...v5.11.0
|
|
1105
|
+
[5.10.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.10.0...v5.10.1
|
|
1106
|
+
[5.10.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.9.0...v5.10.0
|
|
1107
|
+
[5.9.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.8.0...v5.9.0
|
|
1108
|
+
[5.8.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.7.1...v5.8.0
|
|
1109
|
+
[5.7.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.7.0...v5.7.1
|
|
1110
|
+
[5.7.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.6.1...v5.7.0
|
|
1111
|
+
[5.6.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.6.0...v5.6.1
|
|
1112
|
+
[5.6.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.5.3...v5.6.0
|
|
1113
|
+
[5.5.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.5.2...v5.5.3
|
|
1114
|
+
[5.5.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.5.1...v5.5.2
|
|
1115
|
+
[5.5.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.5.0...v5.5.1
|
|
1116
|
+
[5.5.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.4.3...v5.5.0
|
|
1117
|
+
[5.4.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.4.2...v5.4.3
|
|
1118
|
+
[5.4.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.4.1...v5.4.2
|
|
1119
|
+
[5.4.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.4.0...v5.4.1
|
|
1120
|
+
[5.4.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.3.0...v5.4.0
|
|
1121
|
+
[5.3.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.2.0...v5.3.0
|
|
1122
|
+
[5.2.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.1.0...v5.2.0
|
|
1123
|
+
[5.1.0]: https://github.com/FabiowQuixada/isml-linter/compare/v5.0.3...v5.1.0
|
|
1124
|
+
[5.0.3]: https://github.com/FabiowQuixada/isml-linter/compare/v5.0.2...v5.0.3
|
|
1125
|
+
[5.0.2]: https://github.com/FabiowQuixada/isml-linter/compare/v5.0.1...v5.0.2
|
|
1126
|
+
[5.0.1]: https://github.com/FabiowQuixada/isml-linter/compare/v5.0.0...v5.0.1
|
|
1127
|
+
[5.0.0]: https://github.com/FabiowQuixada/isml-linter/compare/v4.0.3...v5.0.0
|
|
1128
|
+
[4.0.3]: https://github.com/FabiowQuixada/isml-linter/compare/v4.0.2...v4.0.3
|
|
1129
|
+
[4.0.2]: https://github.com/FabiowQuixada/isml-linter/compare/v4.0.1...v4.0.2
|
|
1130
|
+
[4.0.1]: https://github.com/FabiowQuixada/isml-linter/compare/v4.0.0...v4.0.1
|
|
1131
|
+
[4.0.0]: https://github.com/FabiowQuixada/isml-linter/compare/v3.0.0...v4.0.0
|
|
1132
|
+
[3.0.0]: https://github.com/FabiowQuixada/isml-linter/compare/v2.3.0...v3.0.0
|
|
1133
|
+
[2.3.0]: https://github.com/FabiowQuixada/isml-linter/compare/2.2.0...v2.3.0
|
|
1134
|
+
[2.2.0]: https://github.com/FabiowQuixada/isml-linter/compare/2.0.1...2.2.0
|
|
1135
|
+
[2.0.1]: https://github.com/FabiowQuixada/isml-linter/compare/2.0.0...2.0.1
|
|
1136
|
+
[2.0.0]: https://github.com/FabiowQuixada/isml-linter/compare/1.0.1...2.0.0
|
|
1137
|
+
[1.0.1]: https://github.com/FabiowQuixada/isml-linter/compare/1.0.0...1.0.1
|
|
1138
|
+
|
|
1139
|
+
[issue#2]: https://github.com/FabiowQuixada/isml-linter/issues/2
|
|
1140
|
+
[issue#3]: https://github.com/FabiowQuixada/isml-linter/issues/3
|
|
1141
|
+
[issue#4]: https://github.com/FabiowQuixada/isml-linter/issues/4
|
|
1142
|
+
[issue#5]: https://github.com/FabiowQuixada/isml-linter/issues/5
|
|
1143
|
+
[issue#6]: https://github.com/FabiowQuixada/isml-linter/issues/6
|
|
1144
|
+
[issue#7]: https://github.com/FabiowQuixada/isml-linter/issues/7
|
|
1145
|
+
[issue#8]: https://github.com/FabiowQuixada/isml-linter/issues/8
|
|
1146
|
+
[issue#9]: https://github.com/FabiowQuixada/isml-linter/issues/9
|
|
1147
|
+
[issue#11]: https://github.com/FabiowQuixada/isml-linter/issues/11
|
|
1148
|
+
[issue#17]: https://github.com/FabiowQuixada/isml-linter/issues/17
|
|
1149
|
+
[issue#20]: https://github.com/FabiowQuixada/isml-linter/issues/20
|
|
1150
|
+
[issue#23]: https://github.com/FabiowQuixada/isml-linter/issues/23
|
|
1151
|
+
[issue#26]: https://github.com/FabiowQuixada/isml-linter/issues/26
|
|
1152
|
+
[issue#29]: https://github.com/FabiowQuixada/isml-linter/issues/29
|
|
1153
|
+
[issue#30]: https://github.com/FabiowQuixada/isml-linter/issues/30
|
|
1154
|
+
[issue#31]: https://github.com/FabiowQuixada/isml-linter/issues/31
|
|
1155
|
+
|
|
1156
|
+
[cli-docs]: <docs/cli.md>
|
|
1157
|
+
[api-docs]: <docs/api.md>
|
|
1158
|
+
[license]: <LICENSE>
|
|
1159
|
+
|
|
1160
|
+
[disallow-tags-readme]: <docs/rules/disallow-tags.md>
|
|
1161
|
+
[no-br-readme]: <docs/rules/no-br.md>
|
|
1162
|
+
[no-inline-style-readme]: <docs/rules/no-br.md>
|
|
1163
|
+
[no-isscript-readme]: <docs/rules/no-isscript.md>
|
|
1164
|
+
[enforce-security-readme]: <docs/rules/enforce-security.md>
|
|
1165
|
+
[no-hardcode-readme]: <docs/rules/no-hardcode.md>
|
|
1166
|
+
[indent-readme]: <docs/rules/indent.md>
|
|
1167
|
+
[eslint-to-isscript-readme]: <docs/rules/eslint-to-isscript.md>
|