diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-14 11:24:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 11:24:43 -0500 |
commit | 0117df6bd8b1603fec0eb5b8d840e777372f47c8 (patch) | |
tree | af4ca3c9fd329c180c280e41a4de9294c281e3d9 /dev/lint/html-scripts.js | |
parent | e419a418f6f03ef0a24330b67e7b76c5e3a7c22d (diff) |
Update lint and tests (#1388)
* Update paths to no longer use bg/, fg/, or mixed/
* Only allow modal-jquery.js to use jQuery
Diffstat (limited to 'dev/lint/html-scripts.js')
-rw-r--r-- | dev/lint/html-scripts.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/lint/html-scripts.js b/dev/lint/html-scripts.js index 04d5cc84..dec8a3dd 100644 --- a/dev/lint/html-scripts.js +++ b/dev/lint/html-scripts.js @@ -63,7 +63,7 @@ function main() { try { const extDir = path.resolve(__dirname, '..', '..', 'ext'); const pattern = /\.html$/; - const ignorePattern = /[\\/]ext[\\/]mixed[\\/]lib[\\/]/; + const ignorePattern = /[\\/]ext[\\/]lib[\\/]/; const fileNames = getAllFiles(extDir, null, (f) => pattern.test(f) && !ignorePattern.test(f)); for (const fileName of fileNames) { validateHtmlScripts(fileName, extDir); |