File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1937
1937
"no-script-url" : {
1938
1938
"type" : " suggestion" ,
1939
1939
"docs" : {
1940
- "description" : " Disallow `javascript:` urls " ,
1940
+ "description" : " Disallow `javascript:` URLs " ,
1941
1941
"recommended" : false ,
1942
1942
"url" : " https://eslint.org/docs/latest/rules/no-script-url"
1943
1943
}
Original file line number Diff line number Diff line change 1
1
/**
2
- * @fileoverview Rule to flag when using javascript: urls
2
+ * @fileoverview Rule to disallow ` javascript:` URLs
3
3
* @author Ilya Volodin
4
4
*/
5
5
/* eslint no-script-url: 0 -- Code is checking to report such URLs */
@@ -18,7 +18,7 @@ module.exports = {
18
18
type : "suggestion" ,
19
19
20
20
docs : {
21
- description : "Disallow `javascript:` urls " ,
21
+ description : "Disallow `javascript:` URLs " ,
22
22
recommended : false ,
23
23
url : "https://eslint.org/docs/latest/rules/no-script-url"
24
24
} ,
@@ -33,7 +33,7 @@ module.exports = {
33
33
create ( context ) {
34
34
35
35
/**
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.
37
37
* And report an error for unexpected script URL.
38
38
* @param {ASTNode } node node to check
39
39
* @returns {void }
You can’t perform that action at this time.
0 commit comments