-
-
Notifications
You must be signed in to change notification settings - Fork 861
feat(linter): no constant condition #271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Boshen
merged 6 commits into
oxc-project:main
from
mysteryven:feat/eslint-no-constant-condition
Apr 9, 2023
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
5b0ceb4
feat(linter): if statement
mysteryven abf0e88
feat: add conditionalExpression
mysteryven c59ce89
feat(linter): add test for loop
mysteryven e821cf7
Merge branch 'main' into feat/eslint-no-constant-condition
mysteryven 11dac39
chore(linter): allow too many lines
mysteryven bbcca86
refactor(linter): use GetSpan trait
mysteryven File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,382 @@ | ||
| use oxc_ast::GetSpan; | ||
| use oxc_ast::{AstKind, Span}; | ||
| use oxc_diagnostics::{ | ||
| miette::{self, Diagnostic}, | ||
| thiserror::Error, | ||
| }; | ||
| use oxc_macros::declare_oxc_lint; | ||
|
|
||
| use crate::{ast_util::IsConstant, context::LintContext, rule::Rule, AstNode}; | ||
|
|
||
| #[derive(Debug, Error, Diagnostic)] | ||
| #[error("eslint(no-constant-condition): Unexpected constant condition")] | ||
| #[diagnostic(severity(warning), help("Constant expression as a test condition is not allowed"))] | ||
| struct NoConstantConditionDiagnostic(#[label] pub Span); | ||
|
|
||
| #[derive(Debug, Default, Clone)] | ||
| pub struct NoConstantCondition { | ||
| _check_loops: bool, | ||
| } | ||
|
|
||
| declare_oxc_lint!( | ||
| /// ### What it does | ||
| /// | ||
| /// Disallow constant expressions in conditions | ||
| /// | ||
| /// ### Why is this bad? | ||
| /// | ||
| /// A constant expression (for example, a literal) as a test condition might be a typo or development trigger for a specific behavior. | ||
| /// | ||
| /// ### Example | ||
| /// | ||
| /// ```javascript | ||
| /// if (false) { | ||
| /// doSomethingUnfinished(); | ||
| /// } | ||
| /// ``` | ||
| NoConstantCondition, | ||
| nursery | ||
| ); | ||
|
|
||
| impl Rule for NoConstantCondition { | ||
| fn from_configuration(value: serde_json::Value) -> Self { | ||
| let obj = value.get(0); | ||
|
|
||
| Self { | ||
| _check_loops: obj | ||
| .and_then(|v| v.get("checkLoops")) | ||
| .and_then(serde_json::Value::as_bool) | ||
| .unwrap_or_default(), | ||
| } | ||
| } | ||
|
|
||
| fn run<'a>(&self, node: &AstNode<'a>, ctx: &LintContext<'a>) { | ||
| match node.get().kind() { | ||
| AstKind::IfStatement(if_stmt) => { | ||
| if if_stmt.test.is_constant(true, ctx) { | ||
| ctx.diagnostic(NoConstantConditionDiagnostic(if_stmt.test.span())); | ||
| } | ||
| } | ||
| AstKind::ConditionalExpression(condition_expr) => { | ||
| if condition_expr.test.is_constant(true, ctx) { | ||
| ctx.diagnostic(NoConstantConditionDiagnostic(condition_expr.test.span())); | ||
| } | ||
| } | ||
| _ => {} | ||
| } | ||
| } | ||
| } | ||
|
|
||
| #[test] | ||
| #[allow(clippy::too_many_lines)] | ||
| fn test() { | ||
| use crate::tester::Tester; | ||
|
|
||
| let pass = vec![ | ||
| ("if(a);", None), | ||
| ("if(a == 0);", None), | ||
| ("if(a = f());", None), | ||
| ("if(a += 1);", None), | ||
| ("if(a |= 1);", None), | ||
| ("if(a |= true);", None), | ||
| ("if(a |= false);", None), | ||
| ("if(a &= 1);", None), | ||
| ("if(a &= true);", None), | ||
| ("if(a &= false);", None), | ||
| ("if(a >>= 1);", None), | ||
| ("if(a >>= true);", None), | ||
| ("if(a >>= false);", None), | ||
| ("if(a >>>= 1);", None), | ||
| ("if(a ??= 1);", None), | ||
| ("if(a ??= true);", None), | ||
| ("if(a ??= false);", None), | ||
| ("if(a ||= b);", None), | ||
| ("if(a ||= false);", None), | ||
| ("if(a ||= 0);", None), | ||
| ("if(a ||= void 0);", None), | ||
| ("if(+(a ||= 1));", None), | ||
| ("if(f(a ||= true));", None), | ||
| ("if((a ||= 1) + 2);", None), | ||
| ("if(1 + (a ||= true));", None), | ||
| ("if(a ||= '' || false);", None), | ||
| ("if(a ||= void 0 || null);", None), | ||
| ("if((a ||= false) || b);", None), | ||
| ("if(a || (b ||= false));", None), | ||
| ("if((a ||= true) && b);", None), | ||
| ("if(a && (b ||= true));", None), | ||
| ("if(a &&= b);", None), | ||
| ("if(a &&= true);", None), | ||
| ("if(a &&= 1);", None), | ||
| ("if(a &&= 'foo');", None), | ||
| ("if((a &&= '') + false);", None), | ||
| ("if('' + (a &&= null));", None), | ||
| ("if(a &&= 1 && 2);", None), | ||
| ("if((a &&= true) && b);", None), | ||
| ("if(a && (b &&= true));", None), | ||
| ("if((a &&= false) || b);", None), | ||
| ("if(a || (b &&= false));", None), | ||
| ("if(a ||= b ||= false);", None), | ||
| ("if(a &&= b &&= true);", None), | ||
| ("if(a ||= b &&= false);", None), | ||
| ("if(a ||= b &&= true);", None), | ||
| ("if(a &&= b ||= false);", None), | ||
| ("if(a &&= b ||= true);", None), | ||
| ("if(1, a);", None), | ||
| ("if ('every' in []);", None), | ||
| ("if (`\\\n${a}`) {}", None), | ||
| ("if (`${a}`);", None), | ||
| ("if (`${foo()}`);", None), | ||
| ("if (`${a === 'b' && b==='a'}`);", None), | ||
| ("if (`foo${a}` === 'fooa');", None), | ||
| ("if (tag`a`);", None), | ||
| ("if (tag`${a}`);", None), | ||
| ("if (+(a || true));", None), | ||
| ("if (-(a || true));", None), | ||
| ("if (~(a || 1));", None), | ||
| ("if (+(a && 0) === +(b && 0));", None), | ||
| ("if(typeof x === 'undefined'){}", None), | ||
| ("if(`${typeof x}` === 'undefined'){}", None), | ||
| ("if(a === 'str' && typeof b){}", None), | ||
| ("typeof a == typeof b", None), | ||
| ("typeof 'a' === 'string'|| typeof b === 'string'", None), | ||
| ("`${typeof 'a'}` === 'string'|| `${typeof b}` === 'string'", None), | ||
| ("if (void a || a);", None), | ||
| ("if (a || void a);", None), | ||
| ("if(xyz === 'str1' && abc==='str2'){}", None), | ||
| ("if(xyz === 'str1' || abc==='str2'){}", None), | ||
| ("if(xyz === 'str1' || abc==='str2' && pqr === 5){}", None), | ||
| ("if(typeof abc === 'string' && abc==='str2'){}", None), | ||
| ("if(false || abc==='str'){}", None), | ||
| ("if(true && abc==='str'){}", None), | ||
| ("if(typeof 'str' && abc==='str'){}", None), | ||
| ("if(abc==='str' || false || def ==='str'){}", None), | ||
| ("if(true && abc==='str' || def ==='str'){}", None), | ||
| ("if(true && typeof abc==='string'){}", None), | ||
| ("if('str1' && a){}", None), | ||
| ("if(a && 'str'){}", None), | ||
| ("if ((foo || true) === 'baz') {}", None), | ||
| ("if ((foo || 'bar') === 'baz') {}", None), | ||
| ("if ((foo || 'bar') !== 'baz') {}", None), | ||
| ("if ((foo || 'bar') == 'baz') {}", None), | ||
| ("if ((foo || 'bar') != 'baz') {}", None), | ||
| ("if ((foo || 233) > 666) {}", None), | ||
| ("if ((foo || 233) < 666) {}", None), | ||
| ("if ((foo || 233) >= 666) {}", None), | ||
| ("if ((foo || 233) <= 666) {}", None), | ||
| ("if ((key || 'k') in obj) {}", None), | ||
| ("if ((foo || {}) instanceof obj) {}", None), | ||
| ("if ((foo || 'bar' || 'bar') === 'bar');", None), | ||
| ("if ((foo || 1n) === 'baz') {}", None), | ||
| ("if (a && 0n || b);", None), | ||
| ("if(1n && a){};", None), | ||
| ("if ('' + [y] === '' + [ty]) {}", None), | ||
| ("if ('a' === '' + [ty]) {}", None), | ||
| ("if ('' + [y, m, d] === 'a') {}", None), | ||
| ("if ('' + [y, 'm'] === '' + [ty, 'tm']) {}", None), | ||
| ("if ('' + [y, 'm'] === '' + ['ty']) {}", None), | ||
| ("if ([,] in\n\n($2))\n ;\nelse\n ;", None), | ||
| ("if ([...x]+'' === 'y'){}", None), | ||
| ("if (new Number(x) + 1 === 2) {}", None), | ||
| ("if([a]==[b]) {}", None), | ||
| ("if (+[...a]) {}", None), | ||
| ("if (+[...[...a]]) {}", None), | ||
| ("if (`${[...a]}`) {}", None), | ||
| ("if (`${[a]}`) {}", None), | ||
| ("if (+[a]) {}", None), | ||
| ("if (0 - [a]) {}", None), | ||
| ("if (1 * [a]) {}", None), | ||
| ("if (Boolean(a)) {}", None), | ||
| ("if (Boolean(...args)) {}", None), | ||
| ("if (foo.Boolean(1)) {}", None), | ||
| // TODO | ||
| // ("const undefined = 'lol'; if (undefined) {}", None), | ||
| // ("function foo(Boolean) { if (Boolean(1)) {} }", None), | ||
| // ("const Boolean = () => {}; if (Boolean(1)) {}", None), | ||
| // "if (Boolean()) {}", | ||
| // "if (undefined) {}", | ||
| ("q > 0 ? 1 : 2;", None), | ||
| ("`${a}` === a ? 1 : 2", None), | ||
| ("`foo${a}` === a ? 1 : 2", None), | ||
| ("tag`a` === a ? 1 : 2", None), | ||
| ("tag`${a}` === a ? 1 : 2", None), | ||
| //TODO | ||
| // ("while(~!a);", None), | ||
| // ("while(a = b);", None), | ||
| // ("while(`${a}`);", None), | ||
| // ("for(;x < 10;);", None), | ||
| // ("for(;;);", None), | ||
| // ("for(;`${a}`;);", None), | ||
| // ("do{ }while(x)", None), | ||
| // ("while(x += 3) {}", None), | ||
| // ("while(tag`a`) {}", None), | ||
| // ("while(tag`${a}`) {}", None), | ||
| // ("while(`\\\n${a}`) {}", None), | ||
| // ("while(true);", Some(json!([{"checkLoops":false}]))), | ||
| // ("for(;true;);", Some(json!([{"checkLoops":false}]))), | ||
| // ("do{}while(true)", Some(json!([{"checkLoops":false}]))), | ||
| // ("function* foo(){while(true){yield 'foo';}}", None), | ||
| // ("function* foo(){for(;true;){yield 'foo';}}", None), | ||
| // ("function* foo(){do{yield 'foo';}while(true)}", None), | ||
| // ("function* foo(){while (true) { while(true) {yield;}}}", None), | ||
| // ("function* foo() {for (; yield; ) {}}", None), | ||
| // ("function* foo() {for (; ; yield) {}}", None), | ||
| // ("function* foo() {while (true) {function* foo() {yield;}yield;}}", None), | ||
| // ("function* foo() { for (let x = yield; x < 10; x++) {yield;}yield;}", None), | ||
| // ("function* foo() { for (let x = yield; ; x++) { yield; }}", None), | ||
| ]; | ||
|
|
||
| let fail = vec![ | ||
| ("if(-2);", None), | ||
| ("if(-2);", None), | ||
| ("if(true);", None), | ||
| ("if(1);", None), | ||
| ("if({});", None), | ||
| ("if(0 < 1);", None), | ||
| ("if(0 || 1);", None), | ||
| ("if(a, 1);", None), | ||
| ("if(`foo`);", None), | ||
| ("if(``);", None), | ||
| ("if(`\\\n`);", None), | ||
| ("if(`${'bar'}`);", None), | ||
| ("if(`${'bar' + `foo`}`);", None), | ||
| ("if(`foo${false || true}`);", None), | ||
| ("if(`foo${0 || 1}`);", None), | ||
| ("if(`foo${bar}`);", None), | ||
| ("if(`${bar}foo`);", None), | ||
| ("if(!(true || a));", None), | ||
| ("if(!(a && void b && c));", None), | ||
| ("if(0 || !(a && null));", None), | ||
| ("if(1 + !(a || true));", None), | ||
| ("if(!(null && a) > 1);", None), | ||
| ("if(+(!(a && 0)));", None), | ||
| ("if(!typeof a === 'string');", None), | ||
| ("if(-('foo' || a));", None), | ||
| ("if(+(void a && b) === ~(1 || c));", None), | ||
| ("if(a ||= true);", None), | ||
| ("if(a ||= 5);", None), | ||
| ("if(a ||= 'foo' || b);", None), | ||
| ("if(a ||= b || /regex/);", None), | ||
| ("if(a ||= b ||= true);", None), | ||
| ("if(a ||= b ||= c || 1);", None), | ||
| ("if(!(a ||= true));", None), | ||
| ("if(!(a ||= 'foo') === true);", None), | ||
| ("if(!(a ||= 'foo') === false);", None), | ||
| ("if(a || (b ||= true));", None), | ||
| ("if((a ||= 1) || b);", None), | ||
| ("if((a ||= true) && true);", None), | ||
| ("if(true && (a ||= true));", None), | ||
| ("if(a &&= false);", None), | ||
| ("if(a &&= null);", None), | ||
| ("if(a &&= void b);", None), | ||
| ("if(a &&= 0 && b);", None), | ||
| ("if(a &&= b && '');", None), | ||
| ("if(a &&= b &&= false);", None), | ||
| ("if(a &&= b &&= c && false);", None), | ||
| ("if(!(a &&= false));", None), | ||
| ("if(!(a &&= 0) + 1);", None), | ||
| ("if(a && (b &&= false));", None), | ||
| ("if((a &&= null) && b);", None), | ||
| ("if(false || (a &&= false));", None), | ||
| ("if((a &&= false) || false);", None), | ||
| ("if(typeof x){}", None), | ||
| ("if(typeof 'abc' === 'string'){}", None), | ||
| ("if(a = typeof b){}", None), | ||
| ("if(a, typeof b){}", None), | ||
| ("if(typeof 'a' == 'string' || typeof 'b' == 'string'){}", None), | ||
| ("if(1 || void x);", None), | ||
| ("if(void x);", None), | ||
| ("if(y = void x);", None), | ||
| ("if(x, void x);", None), | ||
| ("if(void x === void y);", None), | ||
| ("if(void x && a);", None), | ||
| ("if(a && void x);", None), | ||
| ("if(false && abc==='str'){}", None), | ||
| ("if(true || abc==='str'){}", None), | ||
| ("if(1 || abc==='str'){}", None), | ||
| ("if(abc==='str' || true){}", None), | ||
| ("if(abc==='str' || true || def ==='str'){}", None), | ||
| ("if(false || true){}", None), | ||
| ("if(typeof abc==='str' || true){}", None), | ||
| ("if('str' || a){}", None), | ||
| ("if('str' || abc==='str'){}", None), | ||
| ("if('str1' || 'str2'){}", None), | ||
| ("if('str1' && 'str2'){}", None), | ||
| ("if(abc==='str' || 'str'){}", None), | ||
| ("if(a || 'str'){}", None), | ||
| ("if([a]) {}", None), | ||
| ("if([]) {}", None), | ||
| ("if(''+['a']) {}", None), | ||
| ("if(''+[]) {}", None), | ||
| ("if(+1) {}", None), | ||
| ("if ([,] + ''){}", None), | ||
| ("if(/foo/ui);", None), | ||
| ("if(0n);", None), | ||
| ("if(0b0n);", None), | ||
| ("if(0o0n);", None), | ||
| ("if(0x0n);", None), | ||
| ("if(0b1n);", None), | ||
| ("if(0o1n);", None), | ||
| ("if(0x1n);", None), | ||
| ("if(0x1n || foo);", None), | ||
| // Classes and instances are always truthy | ||
| ("if(class {}) {}", None), | ||
| ("if(new Foo()) {}", None), | ||
| // Boxed primitives are always truthy | ||
| ("if(new Boolean(foo)) {}", None), | ||
| ("if(new String(foo)) {}", None), | ||
| ("if(new Number(foo)) {}", None), | ||
| // Spreading a constant array | ||
| ("if(`${[...['a']]}`) {}", None), | ||
| // undefined is always falsy (except in old browsers that let you | ||
| // re-assign, but that's an obscure enough edge case to not worry about) | ||
| ("if (undefined) {}", None), | ||
| // Coercion to boolean via Boolean function | ||
| ("if (Boolean(1)) {}", None), | ||
| ("if (Boolean()) {}", None), | ||
| ("if (Boolean([a])) {}", None), | ||
| ("if (Boolean(1)) { function Boolean() {}}", None), | ||
| ("true ? 1 : 2;", None), | ||
| ("1 ? 1 : 2;", None), | ||
| ("q = 0 ? 1 : 2;", None), | ||
| ("(q = 0) ? 1 : 2;", None), | ||
| ("`` ? 1 : 2;", None), | ||
| ("`foo` ? 1 : 2;", None), | ||
| ("`foo${bar}` ? 1 : 2;", None), | ||
| // TODO | ||
| // ("for(;true;);", None), | ||
| // ("for(;``;);", None), | ||
| // ("for(;`foo`;);", None), | ||
| // ("for(;`foo${bar}`;);", None), | ||
| // ("do{}while(true)", None), | ||
| // ("do{}while('1')", None), | ||
| // ("do{}while(0)", None), | ||
| // ("do{}while(t = -2)", None), | ||
| // ("do{}while(``)", None), | ||
| // ("do{}while(`foo`)", None), | ||
| // ("do{}while(`foo${bar}`)", None), | ||
| // ("while([]);", None), | ||
| // ("while(~!0);", None), | ||
| // ("while(x = 1);", None), | ||
| // ("while(function(){});", None), | ||
| // ("while(true);", None), | ||
| // ("while(1);", None), | ||
| // ("while(() => {});", None), | ||
| // ("while(`foo`);", None), | ||
| // ("while(``);", None), | ||
| // ("while(`${'foo'}`);", None), | ||
| // ("while(`${'foo' + 'bar'}`);", None), | ||
| // ("function* foo(){while(true){} yield 'foo';}", None), | ||
| // ("function* foo(){while(true){if (true) {yield 'foo';}}}", None), | ||
| // ("function* foo(){while(true){yield 'foo';} while(true) {}}", None), | ||
| // ("var a = function* foo(){while(true){} yield 'foo';}", None), | ||
| // ("while (true) { function* foo() {yield;}}", None), | ||
| // ("function* foo(){if (true) {yield 'foo';}}", None), | ||
| // ("function* foo() {for (let foo = yield; true;) {}}", None), | ||
| // ("function* foo() {for (foo = yield; true;) {}}", None), | ||
| // ("function foo() {while (true) {function* bar() {while (true) {yield;}}}}", None), | ||
| // ("function foo() {while (true) {const bar = function*() {while (true) {yield;}}}}", None), | ||
| // ("function* foo() { for (let foo = 1 + 2 + 3 + (yield); true; baz) {}}", None), | ||
| ]; | ||
|
|
||
| Tester::new(NoConstantCondition::NAME, pass, fail).test_and_snapshot(); | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.