aboutsummaryrefslogtreecommitdiff
path: root/ext/js/dom/sandbox/css-style-applier.js
diff options
context:
space:
mode:
authorDarius Jahandarie <djahandarie@gmail.com>2023-10-01 07:53:28 +0000
committerGitHub <noreply@github.com>2023-10-01 07:53:28 +0000
commita7f119e5e70b2b9d61c5dca351ec2e36c9b6d00e (patch)
tree8ab1a3fa764f05a1c45b6864d3bd19e2695dc354 /ext/js/dom/sandbox/css-style-applier.js
parent8adf2a95c2b93625b168f2884f8fa0e59f7024ad (diff)
parent6a47eb02a76857a1ce2412babcc7969fd3b77bc4 (diff)
Merge pull request #251 from themoeway/dependabot/npm_and_yarn/eslint-plugin-jsdoc-46.8.2
Bump eslint-plugin-jsdoc from 39.3.6 to 46.8.2
Diffstat (limited to 'ext/js/dom/sandbox/css-style-applier.js')
-rw-r--r--ext/js/dom/sandbox/css-style-applier.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/js/dom/sandbox/css-style-applier.js b/ext/js/dom/sandbox/css-style-applier.js
index 01936d26..a47ef6ef 100644
--- a/ext/js/dom/sandbox/css-style-applier.js
+++ b/ext/js/dom/sandbox/css-style-applier.js
@@ -35,9 +35,10 @@ class CssStyleApplier {
* @property {string} value The property's value.
*/
+ /* eslint-disable jsdoc/check-line-alignment */
/**
* Creates a new instance of the class.
- * @param {string} styleDataUrl The local URL to the JSON file continaing the style rules.
+ * @param {string} styleDataUrl The local URL to the JSON file containing the style rules.
* The style rules should be of the format:
* ```
* [
@@ -57,6 +58,7 @@ class CssStyleApplier {
this._patternHtmlWhitespace = /[\t\r\n\f ]+/g;
this._patternClassNameCharacter = /[0-9a-zA-Z-_]/;
}
+ /* eslint-enable jsdoc/check-line-alignment */
/**
* Loads the data file for use.