Blame view

node_modules/eslint-plugin-html/CHANGELOG.md 3.16 KB
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
  2018-09-22 v4.0.6
  * Ignore script tags with a `src` attribute #102
  
  2018-06-20 v4.0.5
  * Fix typo regression from v4.0.4
  
  2018-06-20 v4.0.4
  * Request detailed informations when ESLint is not found
  
  2018-04-11 v4.0.3
  * Prevent patching ESLint multiple times #89
  
  2018-01-24 v4.0.2
  * Fix compatibility with tslint #85
  
  2017-11-22 v4.0.1
  * Fix processing files after processing a HTML file without script tag #82
  
  2017-11-12 v4.0.0
  * **Breaking: drop ESLint < 4.7 support**
  * **Breaking: Non-module script tags are sharing the global scope** #66
  * Lint script tags with `type="module"` by default
  
  2017-09-16 v3.2.2
  * Fix ESLint 4.7 support
  
  2017-09-03 v3.2.1
  * Fix ESLint 4.6 support #77
  
  2017-08-12 v3.2.0
  * improve compatibility with the `prettier` plugin by ignoring the first empty script line #76
  * fix compatibility with the `eslint-comments` plugin #70
  * add some *Troubleshooting* documentation about linting template markup and Vue files
  
  2017-07-18 v3.1.1
  * Fix node 4 support #71 #72
  
  2017-07-11 v3.1.0
  * Remap messages "source" property to fix custom formatters support #69
  
  2017-06-12 v3.0.0 [migration guide](MIGRATION_TO_V3.md)
  * **Breaking: lint script tags separately** #49 #55 #56
  * ESLint 4 support #57
  * Support nested settings in a "html" object #58
  
  2017-05-06 v2.0.3
  * No change, new version to work around a publish issue
  
  2017-05-06 v2.0.2
  * Support self-closing script tags in XHTML #52
  * Fix tests for ESLint 4.0.0-alpha.{0-2}
  
  2017-02-16 v2.0.1
  * Support for empty filenames #48
  * Support for empty files #46
  
  2017-01-25 v2.0.0
  * **Breaking: drop `html/xml-mode` setting**
  * `eslint --fix` support #23
  * Allow configuring HTML and XML extensions via ESLint config
  * Allow configuring JS MIME types via ESLint config
  * Report correct end locations of error messages
  * Report correct fix ranges of error messages
  
  2016-11-18 v1.7.0
  * Ignore all warnings for non-script lines #37
  
  2016-11-05 v1.6.0
  * Patch all loaded eslint packages #28
  
  2016-10-23 v1.5.5
  * Fix typo in handlebars extension #36
  
  2016-10-22 v1.5.4
  * Support `.nunjucks` files #35
  
  2016-09-24 v1.5.3
  * Fix tests for ESLint 3.6.0 #32
  * Support `.we` files #30
  
  2016-08-06 v1.5.2
  * Laxer way to retrieve the eslint package #27
  * Support `.erb` files #26
  * Support `.tag` files #25
  
  2016-05-22 v1.5.1
  * Republish v1.5.0 on NPM, files were missing because of npm/npm#5082
  
  2016-05-22 v1.5.0
  * Support `.handlebars` files
  * Introduce the `html/xml-mode` setting and parse XML files as XML #20
  * Support `.twig` files #21
  * Support the `text/ecmascript-6` mime type #17
  
  2016-02-16 v1.4.0
  * Support `.php` files
  
  2016-01-27 v1.3.0
  * Fix crlf newlines support #16
  * Introduce the `html/report-bad-indent` setting
  * Introduce the `html/indent` setting
  * Support more standard JS MIME types #15
  
  2016-01-15 v1.2.0
  * Support the `text/babel` mime type
  * Support `.mustache` files #11
  
  2015-11-02 v1.1.0
  * Stop non-JS lines breaking `no-multiple-empty-lines` #8
  
  2015-08-22 v1.0.4
  * Check if there is some lines before striping the last line spaces #7
  
  2015-08-17 v1.0.3
  * Support `.hbs` files
  
  2015-06-30 v1.0.2
  * Support `.vue` files #4
  
  2015-04-18 v1.0.1
  * Fix space eating issue
  * Introduce unit tests
  
  2015-04-05 v1.0.0
  * Add README
  * Initial commit