Merge pull request #7988 from Snuffleupagus/eslint-more-rules-2
Enable the `no-empty-pattern`/`no-floating-decimal`/`no-self-compare`/`no-delete-var`/`no-new-object` ESLint rules
This commit is contained in:
commit
ca74e15a46
@ -47,11 +47,13 @@
|
|||||||
"eqeqeq": ["error", "always"],
|
"eqeqeq": ["error", "always"],
|
||||||
"no-caller": "error",
|
"no-caller": "error",
|
||||||
"no-else-return": "error",
|
"no-else-return": "error",
|
||||||
|
"no-empty-pattern": "error",
|
||||||
"no-eval": "error",
|
"no-eval": "error",
|
||||||
"no-extend-native": "error",
|
"no-extend-native": "error",
|
||||||
"no-extra-bind": "error",
|
"no-extra-bind": "error",
|
||||||
"no-extra-label": "error",
|
"no-extra-label": "error",
|
||||||
"no-fallthrough": "error",
|
"no-fallthrough": "error",
|
||||||
|
"no-floating-decimal": "error",
|
||||||
"no-global-assign": "error",
|
"no-global-assign": "error",
|
||||||
"no-implied-eval": "error",
|
"no-implied-eval": "error",
|
||||||
"no-lone-blocks": "error",
|
"no-lone-blocks": "error",
|
||||||
@ -64,6 +66,7 @@
|
|||||||
"no-octal": "error",
|
"no-octal": "error",
|
||||||
"no-redeclare": "error",
|
"no-redeclare": "error",
|
||||||
"no-self-assign": "error",
|
"no-self-assign": "error",
|
||||||
|
"no-self-compare": "error",
|
||||||
"no-unused-expressions": "error",
|
"no-unused-expressions": "error",
|
||||||
"no-unused-labels": "error",
|
"no-unused-labels": "error",
|
||||||
"no-useless-call": "error",
|
"no-useless-call": "error",
|
||||||
@ -76,6 +79,7 @@
|
|||||||
|
|
||||||
// Variables
|
// Variables
|
||||||
"no-catch-shadow": "error",
|
"no-catch-shadow": "error",
|
||||||
|
"no-delete-var": "error",
|
||||||
"no-label-var": "error",
|
"no-label-var": "error",
|
||||||
"no-shadow-restricted-names": "error",
|
"no-shadow-restricted-names": "error",
|
||||||
"no-undef-init": "error",
|
"no-undef-init": "error",
|
||||||
@ -97,6 +101,7 @@
|
|||||||
"new-parens": "error",
|
"new-parens": "error",
|
||||||
"no-array-constructor": "error",
|
"no-array-constructor": "error",
|
||||||
"no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 0, "maxBOF": 1, }],
|
"no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 0, "maxBOF": 1, }],
|
||||||
|
"no-new-object": "error",
|
||||||
"no-tabs": "error",
|
"no-tabs": "error",
|
||||||
"no-trailing-spaces": ["error", { "skipBlankLines": false, }],
|
"no-trailing-spaces": ["error", { "skipBlankLines": false, }],
|
||||||
"no-whitespace-before-property": "error",
|
"no-whitespace-before-property": "error",
|
||||||
|
@ -2121,7 +2121,7 @@ var Font = (function FontClosure() {
|
|||||||
op >= 0xC0 && op <= 0xDF ? -1 : op >= 0xE0 ? -2 : 0;
|
op >= 0xC0 && op <= 0xDF ? -1 : op >= 0xE0 ? -2 : 0;
|
||||||
if (op >= 0x71 && op <= 0x75) {
|
if (op >= 0x71 && op <= 0x75) {
|
||||||
n = stack.pop();
|
n = stack.pop();
|
||||||
if (n === n) {
|
if (!isNaN(n)) {
|
||||||
stackDelta = -n * 2;
|
stackDelta = -n * 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user