Skip to content

Commit 4070992

Browse files
author
Felicity Chapman
committed
Fix sort order
1 parent 587dd54 commit 4070992

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

change-notes/1.23/analysis-javascript.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939

4040
| **Query** | **Expected impact** | **Change** |
4141
|--------------------------------|------------------------------|---------------------------------------------------------------------------|
42-
| Incomplete string escaping or encoding (`js/incomplete-sanitization`) | Fewer false positive results | This rule now recognizes additional ways delimiters can be stripped away. |
4342
| Client-side cross-site scripting (`js/xss`) | More results, fewer false positive results | More potential vulnerabilities involving functions that manipulate DOM attributes are now recognized, and more sanitizers are detected. |
4443
| Code injection (`js/code-injection`) | More results | More potential vulnerabilities involving functions that manipulate DOM event handler attributes are now recognized. |
4544
| Hard-coded credentials (`js/hardcoded-credentials`) | Fewer false positive results | This rule now flags fewer password examples. |
4645
| Illegal invocation (`js/illegal-invocation`) | Fewer false positive results | This rule now correctly handles methods named `call` and `apply`. |
46+
| Incomplete string escaping or encoding (`js/incomplete-sanitization`) | Fewer false positive results | This rule now recognizes additional ways delimiters can be stripped away. |
4747
| Incorrect suffix check (`js/incorrect-suffix-check`) | Fewer false positive results | The query recognizes valid checks in more cases. |
4848
| Network data written to file (`js/http-to-file-access`) | Fewer false positive results | This query has been renamed to better match its intended purpose, and now only considers network data untrusted. |
4949
| Password in configuration file (`js/password-in-configuration-file`) | Fewer false positive results | This rule now flags fewer password examples. |
@@ -67,16 +67,16 @@
6767

6868
The following queries (deprecated since 1.17) are no longer available in the distribution:
6969

70+
* Bad parity check (js/incomplete-parity-check)
7071
* Builtin redefined (js/builtin-redefinition)
72+
* Call to parseInt without radix (js/parseint-without-radix)
7173
* Inefficient method definition (js/method-definition-in-constructor)
72-
* Bad parity check (js/incomplete-parity-check)
73-
* Potentially misspelled property or variable name (js/wrong-capitalization)
74-
* Unknown JSDoc tag (js/jsdoc/unknown-tag-type)
7574
* Invalid JSLint directive (js/jslint/invalid-directive)
7675
* Malformed JSLint directive (js/jslint/malformed-directive)
77-
* Use of HTML comments (js/html-comment)
7876
* Multi-line string literal (js/multi-line-string)
7977
* Octal literal (js/octal-literal)
78+
* Potentially misspelled property or variable name (js/wrong-capitalization)
8079
* Reserved word used as variable name (js/use-of-reserved-word)
8180
* Trailing comma in array or object expressions (js/trailing-comma-in-array-or-object)
82-
* Call to parseInt without radix (js/parseint-without-radix)
81+
* Unknown JSDoc tag (js/jsdoc/unknown-tag-type)
82+
* Use of HTML comments (js/html-comment)

0 commit comments

Comments
 (0)