isml-linter 5.39.1 → 5.40.0

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