Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ use this to disable script tags containing template syntax.

This plugin focuses on applying ESLint rules on inline scripts contained in HTML. It does not
provide any rule related to HTML. For that, you can use other plugins like
[`@eslint-html`](https://yeonjuan.github.io/html-eslint/) or
[@html-eslint](https://html-eslint.org) or
[@angular-eslint](https://github.com/angular-eslint/angular-eslint). `eslint-plugin-html` is
compatible with those plugins and can be used along them.

Expand Down Expand Up @@ -166,7 +166,7 @@ This plugin parses HTML and XML markup slightly differently, mainly when conside
sections:

- in XML, any data inside a `CDATA` section will be considered as raw text (not XML) and the `CDATA`
delimiter will be droped ;
delimiter will be dropped ;
- in HTML, there is no such thing for `<script>` tags: the `CDATA` delimiter is considered as normal
text and thus, part of the script.

Expand Down Expand Up @@ -195,7 +195,7 @@ export default [
]
```

Note: you need to specify extensions twice, which is not ideal. This should be imporved in the
Note: you need to specify extensions twice, which is not ideal. This should be improved in the
future.

</details>
Expand Down Expand Up @@ -234,7 +234,7 @@ export default [
]
```

Note: you need to specify extensions twice, which is not ideal. This should be imporved in the
Note: you need to specify extensions twice, which is not ideal. This should be improved in the
future.

</details>
Expand Down Expand Up @@ -494,7 +494,7 @@ exclusively and remove `eslint-plugin-html` from your dependencies if you still
### To v4

`eslint-plugin-html` v4 requires at least ESLint v4.7. This is because a lot of internal changes
occured in ESLint v4.7, including a [new API to support autofixing in
occurred in ESLint v4.7, including a [new API to support autofixing in
preprocessors](https://eslint.org/docs/developer-guide/working-with-plugins#processors-in-plugins).
If you are still using an older version of ESLint, please consider upgrading, or keep using
`eslint-plugin-html` v3.
Expand Down
Loading