Skip to content

Commit f2257ce

Browse files
authored
docs: update comments and description of no-script-url (#19203)
1 parent 365f0f4 commit f2257ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/src/_data/rules_meta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1937,7 +1937,7 @@
19371937
"no-script-url": {
19381938
"type": "suggestion",
19391939
"docs": {
1940-
"description": "Disallow `javascript:` urls",
1940+
"description": "Disallow `javascript:` URLs",
19411941
"recommended": false,
19421942
"url": "https://eslint.org/docs/latest/rules/no-script-url"
19431943
}

lib/rules/no-script-url.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview Rule to flag when using javascript: urls
2+
* @fileoverview Rule to disallow `javascript:` URLs
33
* @author Ilya Volodin
44
*/
55
/* eslint no-script-url: 0 -- Code is checking to report such URLs */
@@ -18,7 +18,7 @@ module.exports = {
1818
type: "suggestion",
1919

2020
docs: {
21-
description: "Disallow `javascript:` urls",
21+
description: "Disallow `javascript:` URLs",
2222
recommended: false,
2323
url: "https://eslint.org/docs/latest/rules/no-script-url"
2424
},
@@ -33,7 +33,7 @@ module.exports = {
3333
create(context) {
3434

3535
/**
36-
* Check whether a node's static value starts with "javascript:" or not.
36+
* Check whether a node's static value starts with `javascript:` or not.
3737
* And report an error for unexpected script URL.
3838
* @param {ASTNode} node node to check
3939
* @returns {void}

0 commit comments

Comments
 (0)