# eslint-plugin-script-tags
**Repository Path**: mirrors_mapbox/eslint-plugin-script-tags
## Basic Information
- **Project Name**: eslint-plugin-script-tags
- **Description**: Lint the content of script tags in arbitrary text
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-09
- **Last Updated**: 2025-10-04
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# @mapbox/eslint-plugin-script-tags
[](https://travis-ci.com/mapbox/eslint-plugin-script-tags)
An ESLint plugin that allows you to lint the content of `
'''
```
(If you want to lint JS fenced code blocks, use [eslint-plugin-markdown](https://github.com/eslint/eslint-plugin-markdown)).
The disadvantage of using a regular expression, of course, is that it's not as robust as a real parser. If your `
```
So I wouldn't do that.
### Arbitrary tags
Ideally this module could allow you to arbitrarily modify the expected tags regular expression, from `` to something like `{% highlight js %}...{% endhighlight %}` or `[javascript-block]...[end javascript-block]`, etc. However, to do so would require adding *options*, and it doesn't seem that ESLint's built options into the processor API. If you would like this feature and want to work on adding options, your help would be welcome.