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