mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 12:19:15 +00:00
feat(linter): eslint/no-restricted-globals (#3390)
This commit is contained in:
parent
79811ca270
commit
b8997f595b
3 changed files with 288 additions and 0 deletions
|
|
@ -82,6 +82,7 @@ mod eslint {
|
|||
pub mod no_prototype_builtins;
|
||||
pub mod no_redeclare;
|
||||
pub mod no_regex_spaces;
|
||||
pub mod no_restricted_globals;
|
||||
pub mod no_script_url;
|
||||
pub mod no_self_assign;
|
||||
pub mod no_self_compare;
|
||||
|
|
@ -476,6 +477,7 @@ oxc_macros::declare_all_lint_rules! {
|
|||
eslint::valid_typeof,
|
||||
eslint::no_await_in_loop,
|
||||
eslint::no_new_native_nonconstructor,
|
||||
eslint::no_restricted_globals,
|
||||
eslint::prefer_exponentiation_operator,
|
||||
typescript::adjacent_overload_signatures,
|
||||
typescript::array_type,
|
||||
|
|
|
|||
151
crates/oxc_linter/src/rules/eslint/no_restricted_globals.rs
Normal file
151
crates/oxc_linter/src/rules/eslint/no_restricted_globals.rs
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
use oxc_ast::AstKind;
|
||||
use oxc_diagnostics::OxcDiagnostic;
|
||||
use oxc_macros::declare_oxc_lint;
|
||||
use oxc_span::Span;
|
||||
use rustc_hash::FxHashMap;
|
||||
use serde_json::Value;
|
||||
|
||||
use crate::{context::LintContext, rule::Rule, AstNode};
|
||||
|
||||
fn no_restricted_globals(x0: &str, x1: &str, span2: Span) -> OxcDiagnostic {
|
||||
let warn_text = if x1.is_empty() {
|
||||
format!("eslint(no-restricted-globals): Unexpected use of '{x0}'.")
|
||||
} else {
|
||||
format!("eslint(no-restricted-globals): Unexpected use of '{x0}'. {x1}")
|
||||
};
|
||||
|
||||
OxcDiagnostic::warn(warn_text).with_labels([span2.into()])
|
||||
}
|
||||
|
||||
#[derive(Debug, Default, Clone)]
|
||||
pub struct NoRestrictedGlobals {
|
||||
restricted_globals: Box<FxHashMap<String, String>>,
|
||||
}
|
||||
|
||||
declare_oxc_lint!(
|
||||
/// ### What it does
|
||||
///
|
||||
/// This rule allows you to specify global variable names that you don't want to use in your application.
|
||||
///
|
||||
/// ### Why is this bad?
|
||||
///
|
||||
/// Disallowing usage of specific global variables can be useful if you want to allow a set of global
|
||||
/// variables by enabling an environment, but still want to disallow some of those.
|
||||
///
|
||||
/// For instance, early Internet Explorer versions exposed the current DOM event as a global variable
|
||||
/// `event`, but using this variable has been considered as a bad practice for a long time. Restricting
|
||||
/// this will make sure this variable isn't used in browser code.
|
||||
///
|
||||
/// ### Example
|
||||
///
|
||||
/// If we have options:
|
||||
///
|
||||
/// ```json
|
||||
/// "no-restricted-globals": ["error", "event"]
|
||||
/// ```
|
||||
///
|
||||
/// The following patterns are considered problems:
|
||||
///
|
||||
/// ```javascript
|
||||
/// function onClick() {
|
||||
/// console.log(event); // Unexpected global variable 'event'. Use local parameter instead.
|
||||
/// }
|
||||
/// ```
|
||||
NoRestrictedGlobals,
|
||||
restriction,
|
||||
);
|
||||
|
||||
impl Rule for NoRestrictedGlobals {
|
||||
fn from_configuration(value: serde_json::Value) -> Self {
|
||||
let list = match value {
|
||||
Value::Array(arr) => arr.iter().fold(FxHashMap::default(), |mut acc, v| match v {
|
||||
// "no-restricted-globals": ["error", "event"]
|
||||
Value::String(name) => {
|
||||
acc.insert(name.to_string(), String::new());
|
||||
acc
|
||||
}
|
||||
// "no-restricted-globals": ["error", { "name": "event", "message": "Use local parameter instead." }]
|
||||
Value::Object(obj) => {
|
||||
let name = obj.get("name").and_then(Value::as_str).unwrap_or_default();
|
||||
let message = obj.get("message").and_then(Value::as_str).unwrap_or_default();
|
||||
acc.insert(name.to_string(), message.to_string());
|
||||
acc
|
||||
}
|
||||
_ => acc,
|
||||
}),
|
||||
_ => FxHashMap::default(),
|
||||
};
|
||||
|
||||
Self { restricted_globals: Box::new(list) }
|
||||
}
|
||||
fn run<'a>(&self, node: &AstNode<'a>, ctx: &LintContext<'a>) {
|
||||
if let AstKind::IdentifierReference(ident) = node.kind() {
|
||||
let Some(message) = self.restricted_globals.get(ident.name.as_str()) else {
|
||||
return;
|
||||
};
|
||||
|
||||
if ctx.semantic().is_reference_to_global_variable(ident) {
|
||||
ctx.diagnostic(no_restricted_globals(&ident.name, message, ident.span));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test() {
|
||||
use crate::tester::Tester;
|
||||
const CUSTOM_MESSAGE: &str = "Use bar instead.";
|
||||
|
||||
let pass = vec![
|
||||
("foo", None),
|
||||
("foo", Some(serde_json::json!(["bar"]))),
|
||||
("var foo = 1;", Some(serde_json::json!(["foo"]))),
|
||||
("event", Some(serde_json::json!(["bar"]))),
|
||||
("import foo from 'bar';", Some(serde_json::json!(["foo"]))),
|
||||
("function foo() {}", Some(serde_json::json!(["foo"]))),
|
||||
("function fn() { var foo; }", Some(serde_json::json!(["foo"]))),
|
||||
("foo.bar", Some(serde_json::json!(["bar"]))),
|
||||
("foo", Some(serde_json::json!([{ "name": "bar", "message": "Use baz instead." }]))),
|
||||
];
|
||||
|
||||
let fail = vec![
|
||||
("foo", Some(serde_json::json!(["foo"]))),
|
||||
("function fn() { foo; }", Some(serde_json::json!(["foo"]))),
|
||||
("function fn() { foo; }", Some(serde_json::json!(["foo"]))),
|
||||
("event", Some(serde_json::json!(["foo", "event"]))),
|
||||
("foo", Some(serde_json::json!(["foo"]))),
|
||||
("foo()", Some(serde_json::json!(["foo"]))),
|
||||
("foo.bar()", Some(serde_json::json!(["foo"]))),
|
||||
("foo", Some(serde_json::json!([{ "name": "foo" }]))),
|
||||
("function fn() { foo; }", Some(serde_json::json!([{ "name": "foo" }]))),
|
||||
("function fn() { foo; }", Some(serde_json::json!([{ "name": "foo" }]))),
|
||||
("event", Some(serde_json::json!(["foo", { "name": "event" }]))),
|
||||
("foo", Some(serde_json::json!([{ "name": "foo" }]))),
|
||||
("foo()", Some(serde_json::json!([{ "name": "foo" }]))),
|
||||
("foo.bar()", Some(serde_json::json!([{ "name": "foo" }]))),
|
||||
("foo", Some(serde_json::json!([{ "name": "foo", "message": CUSTOM_MESSAGE }]))),
|
||||
(
|
||||
"function fn() { foo; }",
|
||||
Some(serde_json::json!([{ "name": "foo", "message": CUSTOM_MESSAGE }])),
|
||||
),
|
||||
(
|
||||
"function fn() { foo; }",
|
||||
Some(serde_json::json!([{ "name": "foo", "message": CUSTOM_MESSAGE }])),
|
||||
),
|
||||
(
|
||||
"event",
|
||||
Some(
|
||||
serde_json::json!(["foo", { "name": "event", "message": "Use local event parameter." }]),
|
||||
),
|
||||
),
|
||||
("foo", Some(serde_json::json!([{ "name": "foo", "message": CUSTOM_MESSAGE }]))),
|
||||
("foo()", Some(serde_json::json!([{ "name": "foo", "message": CUSTOM_MESSAGE }]))),
|
||||
("foo.bar()", Some(serde_json::json!([{ "name": "foo", "message": CUSTOM_MESSAGE }]))),
|
||||
(
|
||||
"var foo = obj => hasOwnProperty(obj, 'name');",
|
||||
Some(serde_json::json!(["hasOwnProperty"])),
|
||||
),
|
||||
];
|
||||
|
||||
Tester::new(NoRestrictedGlobals::NAME, pass, fail).test_and_snapshot();
|
||||
}
|
||||
135
crates/oxc_linter/src/snapshots/no_restricted_globals.snap
Normal file
135
crates/oxc_linter/src/snapshots/no_restricted_globals.snap
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
---
|
||||
source: crates/oxc_linter/src/tester.rs
|
||||
expression: no_restricted_globals
|
||||
---
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:17]
|
||||
1 │ function fn() { foo; }
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:17]
|
||||
1 │ function fn() { foo; }
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'event'.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ event
|
||||
· ─────
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo()
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo.bar()
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:17]
|
||||
1 │ function fn() { foo; }
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:17]
|
||||
1 │ function fn() { foo; }
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'event'.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ event
|
||||
· ─────
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo()
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo.bar()
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'. Use bar instead.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'. Use bar instead.
|
||||
╭─[no_restricted_globals.tsx:1:17]
|
||||
1 │ function fn() { foo; }
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'. Use bar instead.
|
||||
╭─[no_restricted_globals.tsx:1:17]
|
||||
1 │ function fn() { foo; }
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'event'. Use local event parameter.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ event
|
||||
· ─────
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'. Use bar instead.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'. Use bar instead.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo()
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'foo'. Use bar instead.
|
||||
╭─[no_restricted_globals.tsx:1:1]
|
||||
1 │ foo.bar()
|
||||
· ───
|
||||
╰────
|
||||
|
||||
⚠ eslint(no-restricted-globals): Unexpected use of 'hasOwnProperty'.
|
||||
╭─[no_restricted_globals.tsx:1:18]
|
||||
1 │ var foo = obj => hasOwnProperty(obj, 'name');
|
||||
· ──────────────
|
||||
╰────
|
||||
Loading…
Reference in a new issue