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