isml-linter 5.39.3 → 5.40.1

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