mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
feat(linter): eslint-plugin-unicorn no console spaces (#991)
This commit is contained in:
parent
2e2b7587ac
commit
41c55bc5a9
3 changed files with 606 additions and 0 deletions
|
|
@ -126,6 +126,7 @@ mod jest {
|
|||
mod unicorn {
|
||||
pub mod catch_error_name;
|
||||
pub mod filename_case;
|
||||
pub mod no_console_spaces;
|
||||
pub mod no_instanceof_array;
|
||||
pub mod no_thenable;
|
||||
pub mod no_unnecessary_await;
|
||||
|
|
@ -231,6 +232,7 @@ oxc_macros::declare_all_lint_rules! {
|
|||
jest::no_identical_title,
|
||||
jest::valid_title,
|
||||
unicorn::catch_error_name,
|
||||
unicorn::no_console_spaces,
|
||||
unicorn::no_instanceof_array,
|
||||
unicorn::no_unnecessary_await,
|
||||
unicorn::no_thenable,
|
||||
|
|
|
|||
256
crates/oxc_linter/src/rules/unicorn/no_console_spaces.rs
Normal file
256
crates/oxc_linter/src/rules/unicorn/no_console_spaces.rs
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
use oxc_ast::{
|
||||
ast::{Argument, Expression},
|
||||
AstKind,
|
||||
};
|
||||
use oxc_diagnostics::{
|
||||
miette::{self, Diagnostic},
|
||||
thiserror::{self, Error},
|
||||
};
|
||||
use oxc_macros::declare_oxc_lint;
|
||||
use oxc_span::{GetSpan, Span};
|
||||
|
||||
use crate::{context::LintContext, rule::Rule, AstNode, Fix};
|
||||
|
||||
#[derive(Debug, Error, Diagnostic)]
|
||||
#[error(
|
||||
"eslint-plugin-unicorn(no-console-spaces): Do not use {0} spaces with `console.{1}` parameters"
|
||||
)]
|
||||
#[diagnostic(severity(warning), help("The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added."))]
|
||||
struct NoConsoleSpacesDiagnostic(&'static str, String, #[label] pub Span);
|
||||
|
||||
#[derive(Debug, Default, Clone)]
|
||||
pub struct NoConsoleSpaces;
|
||||
|
||||
declare_oxc_lint!(
|
||||
/// ### What it does
|
||||
///
|
||||
/// Disallows leading/trailing space inside `console.log()` and similar methods.
|
||||
///
|
||||
/// ### Why is this bad?
|
||||
///
|
||||
/// The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
///
|
||||
/// ### Example
|
||||
/// ```javascript
|
||||
///
|
||||
/// // Bad
|
||||
/// console.log("abc ", "def");
|
||||
///
|
||||
/// // Good
|
||||
/// console.log("abc", "def");
|
||||
///
|
||||
/// ```
|
||||
NoConsoleSpaces,
|
||||
style
|
||||
);
|
||||
|
||||
impl Rule for NoConsoleSpaces {
|
||||
fn run<'a>(&self, node: &AstNode<'a>, ctx: &LintContext<'a>) {
|
||||
let call_expr = match node.kind() {
|
||||
AstKind::CallExpression(call_expr) => call_expr,
|
||||
_ => return,
|
||||
};
|
||||
|
||||
let member_expr = match &call_expr.callee {
|
||||
Expression::MemberExpression(member_expr) => member_expr,
|
||||
_ => return,
|
||||
};
|
||||
|
||||
match member_expr.object() {
|
||||
Expression::Identifier(ident) if ident.name == "console" => ident,
|
||||
_ => return,
|
||||
};
|
||||
|
||||
if let Some(ident) = member_expr.static_property_name() {
|
||||
if matches!(ident, "log" | "debug" | "info" | "warn" | "error") {
|
||||
let call_expr_arg_len = call_expr.arguments.len();
|
||||
|
||||
for (i, arg) in call_expr.arguments.iter().enumerate() {
|
||||
if let Argument::Expression(expression_arg) = &arg {
|
||||
let (literal_raw, is_template_lit) = match expression_arg {
|
||||
Expression::StringLiteral(string_lit) => {
|
||||
let literal_raw = string_lit.value.as_str();
|
||||
|
||||
(literal_raw, false)
|
||||
}
|
||||
Expression::TemplateLiteral(string_lit) => {
|
||||
let literal_raw = string_lit
|
||||
.span
|
||||
.source_text(ctx.source_text().as_ref())
|
||||
.trim_start_matches('`')
|
||||
.trim_end_matches('`');
|
||||
|
||||
(literal_raw, true)
|
||||
}
|
||||
|
||||
_ => continue,
|
||||
};
|
||||
|
||||
if check_literal_leading(i, literal_raw) {
|
||||
report_diagnostic(
|
||||
"leading",
|
||||
ident,
|
||||
expression_arg.span(),
|
||||
literal_raw,
|
||||
is_template_lit,
|
||||
ctx,
|
||||
);
|
||||
}
|
||||
|
||||
if check_literal_trailing(i, literal_raw, call_expr_arg_len) {
|
||||
report_diagnostic(
|
||||
"trailing",
|
||||
ident,
|
||||
expression_arg.span(),
|
||||
literal_raw,
|
||||
is_template_lit,
|
||||
ctx,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn check_literal_leading(i: usize, literal: &str) -> bool {
|
||||
i != 0 && literal.starts_with(' ')
|
||||
}
|
||||
fn check_literal_trailing(i: usize, literal: &str, call_expr_arg_len: usize) -> bool {
|
||||
i != call_expr_arg_len - 1 && literal.ends_with(' ')
|
||||
}
|
||||
fn report_diagnostic(
|
||||
direction: &'static str,
|
||||
ident: &str,
|
||||
span: Span,
|
||||
literal_raw: &str,
|
||||
is_template_lit: bool,
|
||||
ctx: &LintContext,
|
||||
) {
|
||||
let (start, end) =
|
||||
if is_template_lit { (span.start, span.end) } else { (span.start + 1, span.end - 1) };
|
||||
|
||||
let fix = if is_template_lit {
|
||||
format!("`{}`", literal_raw.trim())
|
||||
} else {
|
||||
literal_raw.trim().to_string()
|
||||
};
|
||||
|
||||
ctx.diagnostic_with_fix(NoConsoleSpacesDiagnostic(direction, ident.to_string(), span), || {
|
||||
Fix::new(fix, Span { start, end })
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[allow(clippy::too_many_lines)]
|
||||
fn test() {
|
||||
use crate::tester::Tester;
|
||||
|
||||
let pass = vec;", None),
|
||||
("console[debug](\" a \", \" b \");", None),
|
||||
("console[info](\" a \", \" b \");", None),
|
||||
("console[warn](\" a \", \" b \");", None),
|
||||
("console[error](\" a \", \" b \");", None),
|
||||
("console.foo(\" a \", \" b \");", None),
|
||||
("foo.log(\" a \", \" b \");", None),
|
||||
("foo.debug(\" a \", \" b \");", None),
|
||||
("foo.info(\" a \", \" b \");", None),
|
||||
("foo.warn(\" a \", \" b \");", None),
|
||||
("foo.error(\" a \", \" b \");", None),
|
||||
("lib.console.log(\" a \", \" b \");", None),
|
||||
("lib.console.debug(\" a \", \" b \");", None),
|
||||
("lib.console.info(\" a \", \" b \");", None),
|
||||
("lib.console.warn(\" a \", \" b \");", None),
|
||||
("lib.console.error(\" a \", \" b \");", None),
|
||||
];
|
||||
|
||||
let fail = vec;", None),
|
||||
("console[\"debug\"](\" a \", \" b \");", None),
|
||||
("console[\"info\"](\" a \", \" b \");", None),
|
||||
("console[\"warn\"](\" a \", \" b \");", None),
|
||||
("console[\"error\"](\" a \", \" b \");", None),
|
||||
];
|
||||
|
||||
let fix = vec![
|
||||
("console.log(\"foo \", bar)", "console.log(\"foo\", bar)", None),
|
||||
("console.debug(\"foo \", bar)", "console.debug(\"foo\", bar)", None),
|
||||
("console.info(\"foo \", bar)", "console.info(\"foo\", bar)", None),
|
||||
("console.warn(\"foo \", bar)", "console.warn(\"foo\", bar)", None),
|
||||
("console.error(\"foo \", bar)", "console.error(\"foo\", bar)", None),
|
||||
("console.log(foo, \" bar\")", "console.log(foo, \"bar\")", None),
|
||||
("console.debug(foo, \" bar\")", "console.debug(foo, \"bar\")", None),
|
||||
("console.info(foo, \" bar\")", "console.info(foo, \"bar\")", None),
|
||||
("console.warn(foo, \" bar\")", "console.warn(foo, \"bar\")", None),
|
||||
("console.error(foo, \" bar\")", "console.error(foo, \"bar\")", None),
|
||||
("console.log(`foo `, bar)", "console.log(`foo`, bar)", None),
|
||||
("console.debug(`foo `, bar)", "console.debug(`foo`, bar)", None),
|
||||
("console.info(`foo `, bar)", "console.info(`foo`, bar)", None),
|
||||
("console.warn(`foo `, bar)", "console.warn(`foo`, bar)", None),
|
||||
("console.error(`foo `, bar)", "console.error(`foo`, bar)", None),
|
||||
("console.log(foo, ` bar`)", "console.log(foo, `bar`)", None),
|
||||
("console.debug(foo, ` bar`)", "console.debug(foo, `bar`)", None),
|
||||
("console.info(foo, ` bar`)", "console.info(foo, `bar`)", None),
|
||||
("console.warn(foo, ` bar`)", "console.warn(foo, `bar`)", None),
|
||||
("console.error(foo, ` bar`)", "console.error(foo, `bar`)", None),
|
||||
];
|
||||
|
||||
Tester::new(NoConsoleSpaces::NAME, pass, fail).expect_fix(fix).test_and_snapshot();
|
||||
}
|
||||
348
crates/oxc_linter/src/snapshots/no_console_spaces.snap
Normal file
348
crates/oxc_linter/src/snapshots/no_console_spaces.snap
Normal file
|
|
@ -0,0 +1,348 @@
|
|||
---
|
||||
source: crates/oxc_linter/src/tester.rs
|
||||
expression: no_console_spaces
|
||||
---
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("abc ", "def");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("abc", " def");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log(" abc ", "def");
|
||||
· ───────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.debug` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.debug("abc ", "def");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.debug` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.debug(`abc `, "def");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.info` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.info("abc ", "def");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.warn` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.warn("abc ", "def");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.error("abc ", "def");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("abc", " def ", "ghi");
|
||||
· ───────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("abc", " def ", "ghi");
|
||||
· ───────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("abc ", "def ", "ghi");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("abc ", "def ", "ghi");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log('abc ', "def");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log(`abc `, "def");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.error('abc ', "def");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.error(`abc `, "def");
|
||||
· ──────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log(`abc ${1 + 2} `, "def");
|
||||
· ───────────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("abc", " def ", "ghi");
|
||||
· ───────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("abc", " def ", "ghi");
|
||||
· ───────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("_", " leading", "_")
|
||||
· ──────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("_", "trailing ", "_")
|
||||
· ───────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("_", " leading and trailing ", "_")
|
||||
· ────────────────────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("_", " leading and trailing ", "_")
|
||||
· ────────────────────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.error("abc", " def ", "ghi");
|
||||
· ───────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.error("abc", " def ", "ghi");
|
||||
· ───────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.error("_", " leading", "_")
|
||||
· ──────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.error("_", "trailing ", "_")
|
||||
· ───────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.error("_", " leading and trailing ", "_")
|
||||
· ────────────────────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.error("_", " leading and trailing ", "_")
|
||||
· ────────────────────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("_", " log ", "_")
|
||||
· ───────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.log("_", " log ", "_")
|
||||
· ───────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.debug` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.debug("_", " debug ", "_")
|
||||
· ─────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.debug` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.debug("_", " debug ", "_")
|
||||
· ─────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.info` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.info("_", " info ", "_")
|
||||
· ────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.info` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.info("_", " info ", "_")
|
||||
· ────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.warn` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.warn("_", " warn ", "_")
|
||||
· ────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.warn` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.warn("_", " warn ", "_")
|
||||
· ────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.error("_", " error ", "_")
|
||||
· ─────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console.error("_", " error ", "_")
|
||||
· ─────────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console["log"](" a ", " b ");
|
||||
· ─────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.log` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console["log"](" a ", " b ");
|
||||
· ─────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.debug` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console["debug"](" a ", " b ");
|
||||
· ─────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.debug` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console["debug"](" a ", " b ");
|
||||
· ─────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.info` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console["info"](" a ", " b ");
|
||||
· ─────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.info` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console["info"](" a ", " b ");
|
||||
· ─────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.warn` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console["warn"](" a ", " b ");
|
||||
· ─────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.warn` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console["warn"](" a ", " b ");
|
||||
· ─────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use trailing spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console["error"](" a ", " b ");
|
||||
· ─────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
⚠ eslint-plugin-unicorn(no-console-spaces): Do not use leading spaces with `console.error` parameters
|
||||
╭─[no_console_spaces.tsx:1:1]
|
||||
1 │ console["error"](" a ", " b ");
|
||||
· ─────
|
||||
╰────
|
||||
help: The `console.log()` method and similar methods join the parameters with a space so adding a leading/trailing space to a parameter, results in two spaces being added.
|
||||
|
||||
|
||||
Loading…
Reference in a new issue