This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 886
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added no-this-reassignment rule (#2931)
- Loading branch information
Showing
9 changed files
with
235 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
/** | ||
* @license | ||
* Copyright 2017 Palantir Technologies, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import * as utils from "tsutils"; | ||
import * as ts from "typescript"; | ||
|
||
import * as Lint from "../index"; | ||
|
||
const ALLOW_THIS_DESTRUCTURING = "allow-destructuring"; | ||
const ALLOWED_THIS_NAMES = "allowed-names"; | ||
|
||
interface Options { | ||
allowedNames: string[]; | ||
allowDestructuring: boolean; | ||
} | ||
|
||
interface ConfigOptions { | ||
"allow-destructuring"?: boolean; | ||
"allowed-names"?: string[]; | ||
} | ||
|
||
const parseConfigOptions = (configOptions: ConfigOptions | undefined): Options => { | ||
const allowedNames: string[] = []; | ||
let allowDestructuring = false; | ||
|
||
if (configOptions !== undefined) { | ||
allowDestructuring = !!configOptions[ALLOW_THIS_DESTRUCTURING]; | ||
|
||
if (configOptions[ALLOWED_THIS_NAMES] !== undefined) { | ||
allowedNames.push(...configOptions[ALLOWED_THIS_NAMES]!); | ||
} | ||
} | ||
|
||
return { allowedNames, allowDestructuring }; | ||
}; | ||
|
||
export class Rule extends Lint.Rules.AbstractRule { | ||
public static metadata: Lint.IRuleMetadata = { | ||
description: "Disallows unnecessary references to `this`.", | ||
optionExamples: [ | ||
true, | ||
[ | ||
true, | ||
{ | ||
[ALLOWED_THIS_NAMES]: ["^self$"], | ||
[ALLOW_THIS_DESTRUCTURING]: true, | ||
}, | ||
], | ||
], | ||
options: { | ||
additionalProperties: false, | ||
properties: { | ||
[ALLOW_THIS_DESTRUCTURING]: { | ||
type: "boolean", | ||
}, | ||
[ALLOWED_THIS_NAMES]: { | ||
listType: "string", | ||
type: "list", | ||
}, | ||
}, | ||
type: "object", | ||
}, | ||
optionsDescription: Lint.Utils.dedent` | ||
Two options may be provided on an object: | ||
* \`${ALLOW_THIS_DESTRUCTURING}\` allows using destructuring to access members of \`this\` (e.g. \`{ foo, bar } = this;\`). | ||
* \`${ALLOWED_THIS_NAMES}\` may be specified as a list of regular expressions to match allowed variable names.`, | ||
rationale: "Assigning a variable to `this` instead of properly using arrow lambdas" | ||
+ "may be a symptom of pre-ES6 practices or not manging scope well.", | ||
ruleName: "no-this-assignment", | ||
type: "functionality", | ||
typescriptOnly: false, | ||
}; | ||
|
||
public static FAILURE_STRING_BINDINGS = "Don't assign members of `this` to local variables."; | ||
|
||
public static FAILURE_STRING_FACTORY_IDENTIFIERS(name: string) { | ||
return `Assigning \`this\` reference to local variable not allowed: ${name}.`; | ||
} | ||
|
||
public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] { | ||
const options = parseConfigOptions((this.ruleArguments as [ConfigOptions])[0]); | ||
const noThisAssignmentWalker = new NoThisAssignmentWalker(sourceFile, this.ruleName, options); | ||
|
||
return this.applyWithWalker(noThisAssignmentWalker); | ||
} | ||
} | ||
|
||
class NoThisAssignmentWalker extends Lint.AbstractWalker<Options> { | ||
private readonly allowedThisNameTesters = this.options.allowedNames.map( | ||
(allowedThisName) => new RegExp(allowedThisName)); | ||
|
||
public walk(sourceFile: ts.SourceFile): void { | ||
ts.forEachChild(sourceFile, this.visitNode); | ||
} | ||
|
||
private visitNode = (node: ts.Node): void => { | ||
if (utils.isVariableDeclaration(node)) { | ||
this.visitVariableDeclaration(node); | ||
} | ||
|
||
ts.forEachChild(node, this.visitNode); | ||
} | ||
|
||
private visitVariableDeclaration(node: ts.VariableDeclaration): void { | ||
if (node.initializer === undefined || node.initializer.kind !== ts.SyntaxKind.ThisKeyword) { | ||
return; | ||
} | ||
|
||
switch (node.name.kind) { | ||
case ts.SyntaxKind.Identifier: | ||
if (this.variableNameIsBanned(node.name.text)) { | ||
this.addFailureAtNode(node, Rule.FAILURE_STRING_FACTORY_IDENTIFIERS(node.name.text)); | ||
} | ||
break; | ||
|
||
default: | ||
if (!this.options.allowDestructuring) { | ||
this.addFailureAtNode(node, Rule.FAILURE_STRING_BINDINGS); | ||
} | ||
} | ||
} | ||
|
||
private variableNameIsBanned(name: string): boolean { | ||
for (const tester of this.allowedThisNameTesters) { | ||
if (tester.test(name)) { | ||
return false; | ||
} | ||
} | ||
|
||
return true; | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
test/rules/no-this-assignment/allow-destructuring/test.ts.lint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
const { length } = this; | ||
|
||
const { length, toString } = this; | ||
|
||
const [foo] = this; | ||
|
||
const [foo, bar] = this; | ||
|
||
const self = this; | ||
~~~~~~~~~~~ [name % ('self')] | ||
|
||
[name]: Assigning `this` reference to local variable not allowed: %s. | ||
|
7 changes: 7 additions & 0 deletions
7
test/rules/no-this-assignment/allow-destructuring/tslint.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"rules": { | ||
"no-this-assignment": [true, { | ||
"allow-destructuring": true | ||
}] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const start = this; | ||
|
||
const startEnd = this; | ||
|
||
const endStart = this; | ||
~~~~~~~~~~~~~~~ [name % ('endStart')] | ||
|
||
[name]: Assigning `this` reference to local variable not allowed: %s. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"rules": { | ||
"no-this-assignment": [true, { | ||
"allowed-names": ["^start"] | ||
}] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
var unscoped = this; | ||
~~~~~~~~~~~~~~~ [identifier % ('unscoped')] | ||
|
||
function testFunction() { | ||
let inFunction = this; | ||
~~~~~~~~~~~~~~~~~ [identifier % ('inFunction')] | ||
} | ||
|
||
const testLambda = () => { | ||
const inLambda = this; | ||
~~~~~~~~~~~~~~~ [identifier % ('inLambda')] | ||
}; | ||
|
||
class TestClass { | ||
constructor() { | ||
const inConstructor = this; | ||
~~~~~~~~~~~~~~~~~~~~ [identifier % ('inConstructor')] | ||
|
||
const asThis: this = this; | ||
~~~~~~~~~~~~~~~~~~~ [identifier % ('asThis')] | ||
|
||
const asString = "this"; | ||
const asArray = [this]; | ||
const asArrayString = ["this"]; | ||
} | ||
|
||
public act(scope: this = this) { | ||
const inMemberFunction = this; | ||
~~~~~~~~~~~~~~~~~~~~~~~ [identifier % ('inMemberFunction')] | ||
|
||
const { act } = this; | ||
~~~~~~~~~~~~~~ [binding] | ||
|
||
const { act, constructor } = this; | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~ [binding] | ||
|
||
const [foo] = this; | ||
~~~~~~~~~~~~ [binding] | ||
|
||
const [foo, bar] = this; | ||
~~~~~~~~~~~~~~~~~ [binding] | ||
} | ||
} | ||
|
||
[binding]: Don't assign members of `this` to local variables. | ||
[identifier]: Assigning `this` reference to local variable not allowed: %s. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"rules": { | ||
"no-this-assignment": true | ||
} | ||
} |