mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 06:41:23 +00:00
Allow diagnostics to generate multi-edit fixes (#3709)
This commit is contained in:
parent
32be63fd1e
commit
e603382cf0
731 changed files with 17319 additions and 13447 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -2259,6 +2259,7 @@ dependencies = [
|
||||||
"js-sys",
|
"js-sys",
|
||||||
"log",
|
"log",
|
||||||
"ruff",
|
"ruff",
|
||||||
|
"ruff_diagnostics",
|
||||||
"ruff_python_ast",
|
"ruff_python_ast",
|
||||||
"ruff_rustpython",
|
"ruff_rustpython",
|
||||||
"rustpython-parser",
|
"rustpython-parser",
|
||||||
|
|
|
@ -4,7 +4,7 @@ use itertools::Itertools;
|
||||||
use rustc_hash::FxHashMap;
|
use rustc_hash::FxHashMap;
|
||||||
use rustpython_parser::ast::Location;
|
use rustpython_parser::ast::Location;
|
||||||
|
|
||||||
use ruff_diagnostics::{Diagnostic, Edit};
|
use ruff_diagnostics::{Diagnostic, Edit, Fix};
|
||||||
use ruff_python_ast::source_code::Locator;
|
use ruff_python_ast::source_code::Locator;
|
||||||
use ruff_python_ast::types::Range;
|
use ruff_python_ast::types::Range;
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ pub mod helpers;
|
||||||
|
|
||||||
/// Auto-fix errors in a file, and write the fixed source code to disk.
|
/// Auto-fix errors in a file, and write the fixed source code to disk.
|
||||||
pub fn fix_file(diagnostics: &[Diagnostic], locator: &Locator) -> Option<(String, FixTable)> {
|
pub fn fix_file(diagnostics: &[Diagnostic], locator: &Locator) -> Option<(String, FixTable)> {
|
||||||
if diagnostics.iter().all(|check| check.fix.is_none()) {
|
if diagnostics.iter().all(|check| check.fix.is_empty()) {
|
||||||
None
|
None
|
||||||
} else {
|
} else {
|
||||||
Some(apply_fixes(diagnostics.iter(), locator))
|
Some(apply_fixes(diagnostics.iter(), locator))
|
||||||
|
@ -34,36 +34,43 @@ fn apply_fixes<'a>(
|
||||||
|
|
||||||
for (rule, fix) in diagnostics
|
for (rule, fix) in diagnostics
|
||||||
.filter_map(|diagnostic| {
|
.filter_map(|diagnostic| {
|
||||||
diagnostic
|
if diagnostic.fix.is_empty() {
|
||||||
.fix
|
None
|
||||||
.as_ref()
|
} else {
|
||||||
.map(|fix| (diagnostic.kind.rule(), fix))
|
Some((diagnostic.kind.rule(), &diagnostic.fix))
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.sorted_by(|(rule1, fix1), (rule2, fix2)| cmp_fix(*rule1, *rule2, fix1, fix2))
|
.sorted_by(|(rule1, fix1), (rule2, fix2)| cmp_fix(*rule1, *rule2, fix1, fix2))
|
||||||
{
|
{
|
||||||
// If we already applied an identical fix as part of another correction, skip
|
// If we already applied an identical fix as part of another correction, skip
|
||||||
// any re-application.
|
// any re-application.
|
||||||
if applied.contains(&fix) {
|
if fix.edits().iter().all(|edit| applied.contains(edit)) {
|
||||||
*fixed.entry(rule).or_default() += 1;
|
*fixed.entry(rule).or_default() += 1;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Best-effort approach: if this fix overlaps with a fix we've already applied,
|
// Best-effort approach: if this fix overlaps with a fix we've already applied,
|
||||||
// skip it.
|
// skip it.
|
||||||
if last_pos.map_or(false, |last_pos| last_pos >= fix.location) {
|
if last_pos.map_or(false, |last_pos| {
|
||||||
|
fix.location()
|
||||||
|
.map_or(false, |fix_location| last_pos >= fix_location)
|
||||||
|
}) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for edit in fix.edits() {
|
||||||
// Add all contents from `last_pos` to `fix.location`.
|
// Add all contents from `last_pos` to `fix.location`.
|
||||||
let slice = locator.slice(Range::new(last_pos.unwrap_or_default(), fix.location));
|
let slice = locator.slice(Range::new(last_pos.unwrap_or_default(), edit.location));
|
||||||
output.push_str(slice);
|
output.push_str(slice);
|
||||||
|
|
||||||
// Add the patch itself.
|
// Add the patch itself.
|
||||||
output.push_str(&fix.content);
|
output.push_str(&edit.content);
|
||||||
|
|
||||||
|
// Track that the edit was applied.
|
||||||
|
last_pos = Some(edit.end_location);
|
||||||
|
applied.insert(edit);
|
||||||
|
}
|
||||||
|
|
||||||
// Track that the fix was applied.
|
|
||||||
last_pos = Some(fix.end_location);
|
|
||||||
applied.insert(fix);
|
|
||||||
*fixed.entry(rule).or_default() += 1;
|
*fixed.entry(rule).or_default() += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -93,9 +100,9 @@ pub(crate) fn apply_fix(fix: &Edit, locator: &Locator) -> String {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Compare two fixes.
|
/// Compare two fixes.
|
||||||
fn cmp_fix(rule1: Rule, rule2: Rule, fix1: &Edit, fix2: &Edit) -> std::cmp::Ordering {
|
fn cmp_fix(rule1: Rule, rule2: Rule, fix1: &Fix, fix2: &Fix) -> std::cmp::Ordering {
|
||||||
fix1.location
|
fix1.location()
|
||||||
.cmp(&fix2.location)
|
.cmp(&fix2.location())
|
||||||
.then_with(|| match (&rule1, &rule2) {
|
.then_with(|| match (&rule1, &rule2) {
|
||||||
// Apply `EndsInPeriod` fixes before `NewLineAfterLastParagraph` fixes.
|
// Apply `EndsInPeriod` fixes before `NewLineAfterLastParagraph` fixes.
|
||||||
(Rule::EndsInPeriod, Rule::NewLineAfterLastParagraph) => std::cmp::Ordering::Less,
|
(Rule::EndsInPeriod, Rule::NewLineAfterLastParagraph) => std::cmp::Ordering::Less,
|
||||||
|
@ -115,15 +122,14 @@ mod tests {
|
||||||
use crate::autofix::{apply_fix, apply_fixes};
|
use crate::autofix::{apply_fix, apply_fixes};
|
||||||
use crate::rules::pycodestyle::rules::MissingNewlineAtEndOfFile;
|
use crate::rules::pycodestyle::rules::MissingNewlineAtEndOfFile;
|
||||||
|
|
||||||
fn create_diagnostics(fixes: impl IntoIterator<Item = Edit>) -> Vec<Diagnostic> {
|
fn create_diagnostics(edit: impl IntoIterator<Item = Edit>) -> Vec<Diagnostic> {
|
||||||
fixes
|
edit.into_iter()
|
||||||
.into_iter()
|
.map(|edit| Diagnostic {
|
||||||
.map(|fix| Diagnostic {
|
|
||||||
// The choice of rule here is arbitrary.
|
// The choice of rule here is arbitrary.
|
||||||
kind: MissingNewlineAtEndOfFile.into(),
|
kind: MissingNewlineAtEndOfFile.into(),
|
||||||
location: fix.location,
|
location: edit.location,
|
||||||
end_location: fix.end_location,
|
end_location: edit.end_location,
|
||||||
fix: Some(fix),
|
fix: edit.into(),
|
||||||
parent: None,
|
parent: None,
|
||||||
})
|
})
|
||||||
.collect()
|
.collect()
|
||||||
|
|
|
@ -2455,7 +2455,7 @@ where
|
||||||
pyupgrade::rules::replace_universal_newlines(self, func, keywords);
|
pyupgrade::rules::replace_universal_newlines(self, func, keywords);
|
||||||
}
|
}
|
||||||
if self.settings.rules.enabled(Rule::ReplaceStdoutStderr) {
|
if self.settings.rules.enabled(Rule::ReplaceStdoutStderr) {
|
||||||
pyupgrade::rules::replace_stdout_stderr(self, expr, func, keywords);
|
pyupgrade::rules::replace_stdout_stderr(self, expr, func, args, keywords);
|
||||||
}
|
}
|
||||||
if self.settings.rules.enabled(Rule::OSErrorAlias) {
|
if self.settings.rules.enabled(Rule::OSErrorAlias) {
|
||||||
pyupgrade::rules::os_error_alias_call(self, func);
|
pyupgrade::rules::os_error_alias_call(self, func);
|
||||||
|
|
|
@ -5,7 +5,7 @@ use itertools::Itertools;
|
||||||
use rustpython_parser::ast::Location;
|
use rustpython_parser::ast::Location;
|
||||||
use rustpython_parser::lexer::LexResult;
|
use rustpython_parser::lexer::LexResult;
|
||||||
|
|
||||||
use ruff_diagnostics::Diagnostic;
|
use ruff_diagnostics::{Diagnostic, Fix};
|
||||||
use ruff_python_ast::source_code::{Locator, Stylist};
|
use ruff_python_ast::source_code::{Locator, Stylist};
|
||||||
use ruff_python_ast::types::Range;
|
use ruff_python_ast::types::Range;
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ pub fn check_logical_lines(
|
||||||
kind,
|
kind,
|
||||||
location,
|
location,
|
||||||
end_location: location,
|
end_location: location,
|
||||||
fix: None,
|
fix: Fix::empty(),
|
||||||
parent: None,
|
parent: None,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -93,7 +93,7 @@ pub fn check_logical_lines(
|
||||||
kind,
|
kind,
|
||||||
location,
|
location,
|
||||||
end_location: location,
|
end_location: location,
|
||||||
fix: None,
|
fix: Fix::empty(),
|
||||||
parent: None,
|
parent: None,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -108,7 +108,7 @@ pub fn check_logical_lines(
|
||||||
kind,
|
kind,
|
||||||
location,
|
location,
|
||||||
end_location: location,
|
end_location: location,
|
||||||
fix: None,
|
fix: Fix::empty(),
|
||||||
parent: None,
|
parent: None,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -120,7 +120,7 @@ pub fn check_logical_lines(
|
||||||
kind,
|
kind,
|
||||||
location,
|
location,
|
||||||
end_location: location,
|
end_location: location,
|
||||||
fix: None,
|
fix: Fix::empty(),
|
||||||
parent: None,
|
parent: None,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -133,7 +133,7 @@ pub fn check_logical_lines(
|
||||||
kind,
|
kind,
|
||||||
location: range.location,
|
location: range.location,
|
||||||
end_location: range.end_location,
|
end_location: range.end_location,
|
||||||
fix: None,
|
fix: Fix::empty(),
|
||||||
parent: None,
|
parent: None,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -148,7 +148,7 @@ pub fn check_logical_lines(
|
||||||
kind,
|
kind,
|
||||||
location,
|
location,
|
||||||
end_location: location,
|
end_location: location,
|
||||||
fix: None,
|
fix: Fix::empty(),
|
||||||
parent: None,
|
parent: None,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -159,7 +159,7 @@ pub fn check_logical_lines(
|
||||||
kind,
|
kind,
|
||||||
location,
|
location,
|
||||||
end_location: location,
|
end_location: location,
|
||||||
fix: None,
|
fix: Fix::empty(),
|
||||||
parent: None,
|
parent: None,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -210,7 +210,7 @@ pub fn check_logical_lines(
|
||||||
kind,
|
kind,
|
||||||
location,
|
location,
|
||||||
end_location: location,
|
end_location: location,
|
||||||
fix: None,
|
fix: Fix::empty(),
|
||||||
parent: None,
|
parent: None,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ use std::cmp::Ordering;
|
||||||
pub use rustpython_parser::ast::Location;
|
pub use rustpython_parser::ast::Location;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use ruff_diagnostics::{Diagnostic, DiagnosticKind, Edit};
|
use ruff_diagnostics::{Diagnostic, DiagnosticKind, Fix};
|
||||||
use ruff_python_ast::source_code::Locator;
|
use ruff_python_ast::source_code::Locator;
|
||||||
use ruff_python_ast::types::Range;
|
use ruff_python_ast::types::Range;
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ pub struct Message {
|
||||||
pub kind: DiagnosticKind,
|
pub kind: DiagnosticKind,
|
||||||
pub location: Location,
|
pub location: Location,
|
||||||
pub end_location: Location,
|
pub end_location: Location,
|
||||||
pub fix: Option<Edit>,
|
pub fix: Fix,
|
||||||
pub filename: String,
|
pub filename: String,
|
||||||
pub source: Option<Source>,
|
pub source: Option<Source>,
|
||||||
pub noqa_row: usize,
|
pub noqa_row: usize,
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 1
|
row: 1
|
||||||
column: 10
|
column: 10
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 2
|
row: 2
|
||||||
column: 22
|
column: 22
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 3
|
row: 3
|
||||||
column: 6
|
column: 6
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -74,7 +77,8 @@ expression: diagnostics
|
||||||
row: 5
|
row: 5
|
||||||
column: 13
|
column: 13
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -94,7 +98,8 @@ expression: diagnostics
|
||||||
row: 12
|
row: 12
|
||||||
column: 16
|
column: 16
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 12
|
row: 12
|
||||||
column: 0
|
column: 0
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionSlice3
|
name: SysVersionSlice3
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionSlice3
|
name: SysVersionSlice3
|
||||||
|
@ -39,6 +41,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersion2
|
name: SysVersion2
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionCmpStr3
|
name: SysVersionCmpStr3
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionCmpStr3
|
name: SysVersionCmpStr3
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionCmpStr3
|
name: SysVersionCmpStr3
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionCmpStr3
|
name: SysVersionCmpStr3
|
||||||
|
@ -65,6 +69,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 25
|
column: 25
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionInfo0Eq3
|
name: SysVersionInfo0Eq3
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 21
|
column: 21
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionInfo0Eq3
|
name: SysVersionInfo0Eq3
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 25
|
column: 25
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionInfo0Eq3
|
name: SysVersionInfo0Eq3
|
||||||
|
@ -52,6 +55,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 21
|
column: 21
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SixPY3
|
name: SixPY3
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 6
|
column: 6
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionInfo1CmpInt
|
name: SysVersionInfo1CmpInt
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 15
|
column: 15
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionInfoMinorCmpInt
|
name: SysVersionInfoMinorCmpInt
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersion0
|
name: SysVersion0
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionCmpStr10
|
name: SysVersionCmpStr10
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionCmpStr10
|
name: SysVersionCmpStr10
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionCmpStr10
|
name: SysVersionCmpStr10
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionCmpStr10
|
name: SysVersionCmpStr10
|
||||||
|
@ -65,6 +69,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SysVersionSlice1
|
name: SysVersionSlice1
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 29
|
row: 29
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 40
|
row: 40
|
||||||
column: 31
|
column: 31
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -52,6 +55,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 44
|
row: 44
|
||||||
column: 69
|
column: 69
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingTypeFunctionArgument
|
name: MissingTypeFunctionArgument
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 9
|
column: 9
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingTypeFunctionArgument
|
name: MissingTypeFunctionArgument
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingReturnTypeUndocumentedPublicFunction
|
name: MissingReturnTypeUndocumentedPublicFunction
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingTypeFunctionArgument
|
name: MissingTypeFunctionArgument
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingTypeFunctionArgument
|
name: MissingTypeFunctionArgument
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingReturnTypeUndocumentedPublicFunction
|
name: MissingReturnTypeUndocumentedPublicFunction
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingReturnTypeUndocumentedPublicFunction
|
name: MissingReturnTypeUndocumentedPublicFunction
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 44
|
row: 44
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 49
|
row: 49
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 54
|
row: 54
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 54
|
row: 54
|
||||||
column: 41
|
column: 41
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -169,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 59
|
row: 59
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -182,7 +195,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 64
|
row: 64
|
||||||
column: 41
|
column: 41
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingTypeSelf
|
name: MissingTypeSelf
|
||||||
|
@ -195,7 +209,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 74
|
row: 74
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -208,7 +223,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 78
|
row: 78
|
||||||
column: 31
|
column: 31
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -221,7 +237,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 82
|
row: 82
|
||||||
column: 69
|
column: 69
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -234,7 +251,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 86
|
row: 86
|
||||||
column: 45
|
column: 45
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -247,7 +265,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 86
|
row: 86
|
||||||
column: 61
|
column: 61
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -260,7 +279,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 90
|
row: 90
|
||||||
column: 45
|
column: 45
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AnyType
|
name: AnyType
|
||||||
|
@ -273,7 +293,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 94
|
row: 94
|
||||||
column: 61
|
column: 61
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingTypeCls
|
name: MissingTypeCls
|
||||||
|
@ -286,7 +307,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 104
|
row: 104
|
||||||
column: 15
|
column: 15
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingTypeSelf
|
name: MissingTypeSelf
|
||||||
|
@ -299,6 +321,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 108
|
row: 108
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 27
|
column: 27
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingTypeFunctionArgument
|
name: MissingTypeFunctionArgument
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 37
|
column: 37
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingTypeFunctionArgument
|
name: MissingTypeFunctionArgument
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 28
|
row: 28
|
||||||
column: 37
|
column: 37
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingReturnTypeUndocumentedPublicFunction
|
name: MissingReturnTypeUndocumentedPublicFunction
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 32
|
row: 32
|
||||||
column: 27
|
column: 27
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingReturnTypeUndocumentedPublicFunction
|
name: MissingReturnTypeUndocumentedPublicFunction
|
||||||
|
@ -65,6 +69,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 43
|
row: 43
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 5
|
row: 5
|
||||||
column: 16
|
column: 16
|
||||||
fix:
|
fix:
|
||||||
content: " -> None"
|
edits:
|
||||||
|
- content: " -> None"
|
||||||
location:
|
location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 22
|
column: 22
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 11
|
row: 11
|
||||||
column: 16
|
column: 16
|
||||||
fix:
|
fix:
|
||||||
content: " -> None"
|
edits:
|
||||||
|
- content: " -> None"
|
||||||
location:
|
location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 27
|
column: 27
|
||||||
|
@ -53,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 40
|
row: 40
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingReturnTypeSpecialMethod
|
name: MissingReturnTypeSpecialMethod
|
||||||
|
@ -67,7 +70,8 @@ expression: diagnostics
|
||||||
row: 47
|
row: 47
|
||||||
column: 16
|
column: 16
|
||||||
fix:
|
fix:
|
||||||
content: " -> None"
|
edits:
|
||||||
|
- content: " -> None"
|
||||||
location:
|
location:
|
||||||
row: 47
|
row: 47
|
||||||
column: 28
|
column: 28
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 2
|
row: 2
|
||||||
column: 15
|
column: 15
|
||||||
fix:
|
fix:
|
||||||
content: " -> str"
|
edits:
|
||||||
|
- content: " -> str"
|
||||||
location:
|
location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 21
|
column: 21
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 5
|
row: 5
|
||||||
column: 16
|
column: 16
|
||||||
fix:
|
fix:
|
||||||
content: " -> str"
|
edits:
|
||||||
|
- content: " -> str"
|
||||||
location:
|
location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 22
|
column: 22
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 8
|
row: 8
|
||||||
column: 15
|
column: 15
|
||||||
fix:
|
fix:
|
||||||
content: " -> int"
|
edits:
|
||||||
|
- content: " -> int"
|
||||||
location:
|
location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 21
|
column: 21
|
||||||
|
@ -74,7 +77,8 @@ expression: diagnostics
|
||||||
row: 11
|
row: 11
|
||||||
column: 23
|
column: 23
|
||||||
fix:
|
fix:
|
||||||
content: " -> int"
|
edits:
|
||||||
|
- content: " -> int"
|
||||||
location:
|
location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 29
|
column: 29
|
||||||
|
@ -94,7 +98,8 @@ expression: diagnostics
|
||||||
row: 14
|
row: 14
|
||||||
column: 16
|
column: 16
|
||||||
fix:
|
fix:
|
||||||
content: " -> None"
|
edits:
|
||||||
|
- content: " -> None"
|
||||||
location:
|
location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 22
|
column: 22
|
||||||
|
@ -114,7 +119,8 @@ expression: diagnostics
|
||||||
row: 17
|
row: 17
|
||||||
column: 15
|
column: 15
|
||||||
fix:
|
fix:
|
||||||
content: " -> None"
|
edits:
|
||||||
|
- content: " -> None"
|
||||||
location:
|
location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 21
|
column: 21
|
||||||
|
@ -134,7 +140,8 @@ expression: diagnostics
|
||||||
row: 20
|
row: 20
|
||||||
column: 16
|
column: 16
|
||||||
fix:
|
fix:
|
||||||
content: " -> bool"
|
edits:
|
||||||
|
- content: " -> bool"
|
||||||
location:
|
location:
|
||||||
row: 20
|
row: 20
|
||||||
column: 22
|
column: 22
|
||||||
|
@ -154,7 +161,8 @@ expression: diagnostics
|
||||||
row: 23
|
row: 23
|
||||||
column: 17
|
column: 17
|
||||||
fix:
|
fix:
|
||||||
content: " -> bytes"
|
edits:
|
||||||
|
- content: " -> bytes"
|
||||||
location:
|
location:
|
||||||
row: 23
|
row: 23
|
||||||
column: 23
|
column: 23
|
||||||
|
@ -174,7 +182,8 @@ expression: diagnostics
|
||||||
row: 26
|
row: 26
|
||||||
column: 18
|
column: 18
|
||||||
fix:
|
fix:
|
||||||
content: " -> str"
|
edits:
|
||||||
|
- content: " -> str"
|
||||||
location:
|
location:
|
||||||
row: 26
|
row: 26
|
||||||
column: 37
|
column: 37
|
||||||
|
@ -194,7 +203,8 @@ expression: diagnostics
|
||||||
row: 29
|
row: 29
|
||||||
column: 20
|
column: 20
|
||||||
fix:
|
fix:
|
||||||
content: " -> bool"
|
edits:
|
||||||
|
- content: " -> bool"
|
||||||
location:
|
location:
|
||||||
row: 29
|
row: 29
|
||||||
column: 32
|
column: 32
|
||||||
|
@ -214,7 +224,8 @@ expression: diagnostics
|
||||||
row: 32
|
row: 32
|
||||||
column: 19
|
column: 19
|
||||||
fix:
|
fix:
|
||||||
content: " -> complex"
|
edits:
|
||||||
|
- content: " -> complex"
|
||||||
location:
|
location:
|
||||||
row: 32
|
row: 32
|
||||||
column: 25
|
column: 25
|
||||||
|
@ -234,7 +245,8 @@ expression: diagnostics
|
||||||
row: 35
|
row: 35
|
||||||
column: 15
|
column: 15
|
||||||
fix:
|
fix:
|
||||||
content: " -> int"
|
edits:
|
||||||
|
- content: " -> int"
|
||||||
location:
|
location:
|
||||||
row: 35
|
row: 35
|
||||||
column: 21
|
column: 21
|
||||||
|
@ -254,7 +266,8 @@ expression: diagnostics
|
||||||
row: 38
|
row: 38
|
||||||
column: 17
|
column: 17
|
||||||
fix:
|
fix:
|
||||||
content: " -> float"
|
edits:
|
||||||
|
- content: " -> float"
|
||||||
location:
|
location:
|
||||||
row: 38
|
row: 38
|
||||||
column: 23
|
column: 23
|
||||||
|
@ -274,7 +287,8 @@ expression: diagnostics
|
||||||
row: 41
|
row: 41
|
||||||
column: 17
|
column: 17
|
||||||
fix:
|
fix:
|
||||||
content: " -> int"
|
edits:
|
||||||
|
- content: " -> int"
|
||||||
location:
|
location:
|
||||||
row: 41
|
row: 41
|
||||||
column: 23
|
column: 23
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 45
|
row: 45
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingReturnTypeUndocumentedPublicFunction
|
name: MissingReturnTypeUndocumentedPublicFunction
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 50
|
row: 50
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingTypeFunctionArgument
|
name: MissingTypeFunctionArgument
|
||||||
|
@ -39,6 +41,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 59
|
row: 59
|
||||||
column: 9
|
column: 9
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 6
|
column: 6
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: Assert
|
name: Assert
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: Assert
|
name: Assert
|
||||||
|
@ -39,6 +41,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ExecBuiltin
|
name: ExecBuiltin
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 29
|
column: 29
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 27
|
column: 27
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 29
|
column: 29
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 29
|
column: 29
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 29
|
column: 29
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 25
|
column: 25
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 28
|
column: 28
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 29
|
column: 29
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 23
|
column: 23
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 18
|
row: 18
|
||||||
column: 36
|
column: 36
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 60
|
column: 60
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 20
|
row: 20
|
||||||
column: 38
|
column: 38
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BadFilePermissions
|
name: BadFilePermissions
|
||||||
|
@ -169,6 +181,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 22
|
row: 22
|
||||||
column: 36
|
column: 36
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 9
|
column: 9
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedBindAllInterfaces
|
name: HardcodedBindAllInterfaces
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 9
|
column: 9
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedBindAllInterfaces
|
name: HardcodedBindAllInterfaces
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedBindAllInterfaces
|
name: HardcodedBindAllInterfaces
|
||||||
|
@ -52,6 +55,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 18
|
row: 18
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 16
|
row: 16
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 18
|
row: 18
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 20
|
row: 20
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 21
|
row: 21
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 22
|
row: 22
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 23
|
row: 23
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 25
|
row: 25
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -169,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 26
|
row: 26
|
||||||
column: 20
|
column: 20
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -182,7 +195,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -195,7 +209,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 28
|
row: 28
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -208,7 +223,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 29
|
row: 29
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -221,7 +237,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 30
|
row: 30
|
||||||
column: 21
|
column: 21
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -234,7 +251,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 31
|
row: 31
|
||||||
column: 23
|
column: 23
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -247,7 +265,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 32
|
row: 32
|
||||||
column: 31
|
column: 31
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -260,7 +279,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 33
|
row: 33
|
||||||
column: 31
|
column: 31
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -273,7 +293,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 37
|
row: 37
|
||||||
column: 23
|
column: 23
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -286,7 +307,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 41
|
row: 41
|
||||||
column: 27
|
column: 27
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -299,7 +321,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 42
|
row: 42
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -312,7 +335,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 43
|
row: 43
|
||||||
column: 25
|
column: 25
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -325,7 +349,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 44
|
row: 44
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -338,7 +363,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 45
|
row: 45
|
||||||
column: 25
|
column: 25
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -351,7 +377,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 46
|
row: 46
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -364,7 +391,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 47
|
row: 47
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -377,7 +405,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 49
|
row: 49
|
||||||
column: 20
|
column: 20
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -390,7 +419,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 50
|
row: 50
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -403,7 +433,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 51
|
row: 51
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -416,7 +447,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 52
|
row: 52
|
||||||
column: 15
|
column: 15
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -429,7 +461,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 53
|
row: 53
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -442,7 +475,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 54
|
row: 54
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -455,7 +489,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 55
|
row: 55
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -468,7 +503,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 56
|
row: 56
|
||||||
column: 28
|
column: 28
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -481,7 +517,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 58
|
row: 58
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -494,7 +531,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 61
|
row: 61
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordString
|
name: HardcodedPasswordString
|
||||||
|
@ -507,6 +545,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 64
|
row: 64
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 25
|
column: 25
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 37
|
column: 37
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordDefault
|
name: HardcodedPasswordDefault
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 53
|
column: 53
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordDefault
|
name: HardcodedPasswordDefault
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 21
|
row: 21
|
||||||
column: 46
|
column: 46
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordDefault
|
name: HardcodedPasswordDefault
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 29
|
row: 29
|
||||||
column: 47
|
column: 47
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedPasswordDefault
|
name: HardcodedPasswordDefault
|
||||||
|
@ -65,6 +69,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 29
|
row: 29
|
||||||
column: 69
|
column: 69
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 20
|
column: 20
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedTempFile
|
name: HardcodedTempFile
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedTempFile
|
name: HardcodedTempFile
|
||||||
|
@ -39,6 +41,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 30
|
column: 30
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 20
|
column: 20
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedTempFile
|
name: HardcodedTempFile
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedTempFile
|
name: HardcodedTempFile
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 30
|
column: 30
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedTempFile
|
name: HardcodedTempFile
|
||||||
|
@ -52,6 +55,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 20
|
column: 20
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TryExceptPass
|
name: TryExceptPass
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TryExceptPass
|
name: TryExceptPass
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TryExceptPass
|
name: TryExceptPass
|
||||||
|
@ -39,6 +41,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TryExceptContinue
|
name: TryExceptContinue
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TryExceptContinue
|
name: TryExceptContinue
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TryExceptContinue
|
name: TryExceptContinue
|
||||||
|
@ -52,6 +55,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 46
|
column: 46
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 47
|
column: 47
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 46
|
column: 46
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 12
|
row: 12
|
||||||
column: 15
|
column: 15
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 16
|
row: 16
|
||||||
column: 48
|
column: 48
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 18
|
row: 18
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 50
|
column: 50
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -169,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 21
|
row: 21
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithoutTimeout
|
name: RequestWithoutTimeout
|
||||||
|
@ -182,6 +195,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 22
|
row: 22
|
||||||
column: 47
|
column: 47
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 23
|
column: 23
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 21
|
row: 21
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 23
|
row: 23
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 25
|
row: 25
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 29
|
row: 29
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HashlibInsecureHashFunction
|
name: HashlibInsecureHashFunction
|
||||||
|
@ -169,6 +181,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 32
|
row: 32
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 58
|
column: 58
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 59
|
column: 59
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 58
|
column: 58
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 61
|
column: 61
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 60
|
column: 60
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 62
|
column: 62
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 59
|
column: 59
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 20
|
row: 20
|
||||||
column: 54
|
column: 54
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 22
|
row: 22
|
||||||
column: 43
|
column: 43
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 47
|
column: 47
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 26
|
row: 26
|
||||||
column: 44
|
column: 44
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 28
|
row: 28
|
||||||
column: 44
|
column: 44
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -169,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 30
|
row: 30
|
||||||
column: 43
|
column: 43
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -182,7 +195,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 32
|
row: 32
|
||||||
column: 45
|
column: 45
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -195,7 +209,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 34
|
row: 34
|
||||||
column: 46
|
column: 46
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -208,7 +223,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 36
|
row: 36
|
||||||
column: 46
|
column: 46
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -221,7 +237,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 38
|
row: 38
|
||||||
column: 25
|
column: 25
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RequestWithNoCertValidation
|
name: RequestWithNoCertValidation
|
||||||
|
@ -234,6 +251,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 40
|
row: 40
|
||||||
column: 30
|
column: 30
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnsafeYAMLLoad
|
name: UnsafeYAMLLoad
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 34
|
column: 34
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 33
|
column: 33
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SnmpInsecureVersion
|
name: SnmpInsecureVersion
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 33
|
column: 33
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: SnmpWeakCryptography
|
name: SnmpWeakCryptography
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 40
|
column: 40
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 35
|
column: 35
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 43
|
column: 43
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 44
|
column: 44
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 52
|
column: 52
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 47
|
column: 47
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 54
|
column: 54
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 55
|
column: 55
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 12
|
row: 12
|
||||||
column: 48
|
column: 48
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 50
|
column: 50
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 50
|
column: 50
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -169,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 16
|
row: 16
|
||||||
column: 57
|
column: 57
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -182,7 +195,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 51
|
column: 51
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -195,7 +209,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -208,7 +223,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 20
|
row: 20
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -221,7 +237,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 21
|
row: 21
|
||||||
column: 53
|
column: 53
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -234,7 +251,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 22
|
row: 22
|
||||||
column: 43
|
column: 43
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -247,7 +265,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 41
|
column: 41
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -260,7 +279,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 25
|
row: 25
|
||||||
column: 36
|
column: 36
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -273,7 +293,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 26
|
row: 26
|
||||||
column: 44
|
column: 44
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -286,7 +307,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 45
|
column: 45
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -299,7 +321,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 28
|
row: 28
|
||||||
column: 50
|
column: 50
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -312,7 +335,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 30
|
row: 30
|
||||||
column: 53
|
column: 53
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -325,7 +349,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 31
|
row: 31
|
||||||
column: 48
|
column: 48
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -338,7 +363,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 32
|
row: 32
|
||||||
column: 55
|
column: 55
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -351,7 +377,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 33
|
row: 33
|
||||||
column: 56
|
column: 56
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -364,7 +391,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 34
|
row: 34
|
||||||
column: 48
|
column: 48
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -377,7 +405,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 36
|
row: 36
|
||||||
column: 50
|
column: 50
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -390,7 +419,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 37
|
row: 37
|
||||||
column: 50
|
column: 50
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -403,7 +433,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 38
|
row: 38
|
||||||
column: 57
|
column: 57
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -416,7 +447,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 39
|
row: 39
|
||||||
column: 51
|
column: 51
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -429,7 +461,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 41
|
row: 41
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -442,7 +475,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 42
|
row: 42
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -455,7 +489,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 43
|
row: 43
|
||||||
column: 53
|
column: 53
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -468,7 +503,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 44
|
row: 44
|
||||||
column: 43
|
column: 43
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -481,7 +517,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 52
|
row: 52
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -494,7 +531,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 59
|
row: 59
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -507,7 +545,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 66
|
row: 66
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -520,7 +559,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 73
|
row: 73
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -533,7 +573,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 79
|
row: 79
|
||||||
column: 28
|
column: 28
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -546,7 +587,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 83
|
row: 83
|
||||||
column: 67
|
column: 67
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -559,7 +601,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 84
|
row: 84
|
||||||
column: 65
|
column: 65
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -572,7 +615,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 85
|
row: 85
|
||||||
column: 73
|
column: 73
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: HardcodedSQLExpression
|
name: HardcodedSQLExpression
|
||||||
|
@ -585,6 +629,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 86
|
row: 86
|
||||||
column: 71
|
column: 71
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 25
|
column: 25
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 76
|
column: 76
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: Jinja2AutoescapeFalse
|
name: Jinja2AutoescapeFalse
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: Jinja2AutoescapeFalse
|
name: Jinja2AutoescapeFalse
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 28
|
column: 28
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: Jinja2AutoescapeFalse
|
name: Jinja2AutoescapeFalse
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: Jinja2AutoescapeFalse
|
name: Jinja2AutoescapeFalse
|
||||||
|
@ -65,6 +69,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 29
|
row: 29
|
||||||
column: 57
|
column: 57
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 25
|
row: 25
|
||||||
column: 20
|
column: 20
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BlindExcept
|
name: BlindExcept
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 31
|
row: 31
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BlindExcept
|
name: BlindExcept
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 42
|
row: 42
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BlindExcept
|
name: BlindExcept
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 45
|
row: 45
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BlindExcept
|
name: BlindExcept
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 54
|
row: 54
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BlindExcept
|
name: BlindExcept
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 60
|
row: 60
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BlindExcept
|
name: BlindExcept
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 62
|
row: 62
|
||||||
column: 20
|
column: 20
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BlindExcept
|
name: BlindExcept
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 69
|
row: 69
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BlindExcept
|
name: BlindExcept
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 75
|
row: 75
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BlindExcept
|
name: BlindExcept
|
||||||
|
@ -130,6 +139,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 81
|
row: 81
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanPositionalArgInFunctionDefinition
|
name: BooleanPositionalArgInFunctionDefinition
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 31
|
column: 31
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanPositionalArgInFunctionDefinition
|
name: BooleanPositionalArgInFunctionDefinition
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 36
|
column: 36
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanPositionalArgInFunctionDefinition
|
name: BooleanPositionalArgInFunctionDefinition
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 41
|
column: 41
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanPositionalArgInFunctionDefinition
|
name: BooleanPositionalArgInFunctionDefinition
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 37
|
column: 37
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanPositionalArgInFunctionDefinition
|
name: BooleanPositionalArgInFunctionDefinition
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 42
|
column: 42
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanPositionalArgInFunctionDefinition
|
name: BooleanPositionalArgInFunctionDefinition
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 18
|
row: 18
|
||||||
column: 40
|
column: 40
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanPositionalArgInFunctionDefinition
|
name: BooleanPositionalArgInFunctionDefinition
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 45
|
column: 45
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanPositionalArgInFunctionDefinition
|
name: BooleanPositionalArgInFunctionDefinition
|
||||||
|
@ -117,6 +125,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 81
|
row: 81
|
||||||
column: 29
|
column: 29
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 12
|
row: 12
|
||||||
column: 34
|
column: 34
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanDefaultValueInFunctionDefinition
|
name: BooleanDefaultValueInFunctionDefinition
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 46
|
column: 46
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanDefaultValueInFunctionDefinition
|
name: BooleanDefaultValueInFunctionDefinition
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 44
|
column: 44
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanDefaultValueInFunctionDefinition
|
name: BooleanDefaultValueInFunctionDefinition
|
||||||
|
@ -52,6 +55,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 42
|
row: 42
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanPositionalValueInFunctionCall
|
name: BooleanPositionalValueInFunctionCall
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 57
|
row: 57
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BooleanPositionalValueInFunctionCall
|
name: BooleanPositionalValueInFunctionCall
|
||||||
|
@ -39,6 +41,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 57
|
row: 57
|
||||||
column: 21
|
column: 21
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnaryPrefixIncrement
|
name: UnaryPrefixIncrement
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 20
|
row: 20
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 29
|
column: 29
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnreliableCallableCheck
|
name: UnreliableCallableCheck
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 36
|
column: 36
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StripWithMultiCharacters
|
name: StripWithMultiCharacters
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StripWithMultiCharacters
|
name: StripWithMultiCharacters
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 25
|
column: 25
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StripWithMultiCharacters
|
name: StripWithMultiCharacters
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StripWithMultiCharacters
|
name: StripWithMultiCharacters
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 16
|
row: 16
|
||||||
column: 25
|
column: 25
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StripWithMultiCharacters
|
name: StripWithMultiCharacters
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StripWithMultiCharacters
|
name: StripWithMultiCharacters
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 22
|
row: 22
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StripWithMultiCharacters
|
name: StripWithMultiCharacters
|
||||||
|
@ -104,6 +111,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 35
|
column: 35
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 60
|
row: 60
|
||||||
column: 33
|
column: 33
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 64
|
row: 64
|
||||||
column: 31
|
column: 31
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 68
|
row: 68
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 72
|
row: 72
|
||||||
column: 44
|
column: 44
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 76
|
row: 76
|
||||||
column: 56
|
column: 56
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 80
|
row: 80
|
||||||
column: 44
|
column: 44
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 85
|
row: 85
|
||||||
column: 69
|
column: 69
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 89
|
row: 89
|
||||||
column: 72
|
column: 72
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 93
|
row: 93
|
||||||
column: 68
|
column: 68
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 97
|
row: 97
|
||||||
column: 34
|
column: 34
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 170
|
row: 170
|
||||||
column: 48
|
column: 48
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 203
|
row: 203
|
||||||
column: 28
|
column: 28
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -169,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 204
|
row: 204
|
||||||
column: 36
|
column: 36
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MutableArgumentDefault
|
name: MutableArgumentDefault
|
||||||
|
@ -182,6 +195,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 205
|
row: 205
|
||||||
column: 66
|
column: 66
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 5
|
column: 5
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnusedLoopControlVariable
|
name: UnusedLoopControlVariable
|
||||||
|
@ -27,7 +28,8 @@ expression: diagnostics
|
||||||
row: 18
|
row: 18
|
||||||
column: 13
|
column: 13
|
||||||
fix:
|
fix:
|
||||||
content: _k
|
edits:
|
||||||
|
- content: _k
|
||||||
location:
|
location:
|
||||||
row: 18
|
row: 18
|
||||||
column: 12
|
column: 12
|
||||||
|
@ -46,7 +48,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 30
|
row: 30
|
||||||
column: 5
|
column: 5
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnusedLoopControlVariable
|
name: UnusedLoopControlVariable
|
||||||
|
@ -60,7 +63,8 @@ expression: diagnostics
|
||||||
row: 30
|
row: 30
|
||||||
column: 13
|
column: 13
|
||||||
fix:
|
fix:
|
||||||
content: _k
|
edits:
|
||||||
|
- content: _k
|
||||||
location:
|
location:
|
||||||
row: 30
|
row: 30
|
||||||
column: 12
|
column: 12
|
||||||
|
@ -79,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 34
|
row: 34
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnusedLoopControlVariable
|
name: UnusedLoopControlVariable
|
||||||
|
@ -92,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 38
|
row: 38
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnusedLoopControlVariable
|
name: UnusedLoopControlVariable
|
||||||
|
@ -105,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 42
|
row: 42
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnusedLoopControlVariable
|
name: UnusedLoopControlVariable
|
||||||
|
@ -118,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 46
|
row: 46
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnusedLoopControlVariable
|
name: UnusedLoopControlVariable
|
||||||
|
@ -132,7 +140,8 @@ expression: diagnostics
|
||||||
row: 52
|
row: 52
|
||||||
column: 16
|
column: 16
|
||||||
fix:
|
fix:
|
||||||
content: _bar
|
edits:
|
||||||
|
- content: _bar
|
||||||
location:
|
location:
|
||||||
row: 52
|
row: 52
|
||||||
column: 13
|
column: 13
|
||||||
|
@ -151,7 +160,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 59
|
row: 59
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnusedLoopControlVariable
|
name: UnusedLoopControlVariable
|
||||||
|
@ -165,7 +175,8 @@ expression: diagnostics
|
||||||
row: 68
|
row: 68
|
||||||
column: 16
|
column: 16
|
||||||
fix:
|
fix:
|
||||||
content: _bar
|
edits:
|
||||||
|
- content: _bar
|
||||||
location:
|
location:
|
||||||
row: 68
|
row: 68
|
||||||
column: 13
|
column: 13
|
||||||
|
@ -185,7 +196,8 @@ expression: diagnostics
|
||||||
row: 77
|
row: 77
|
||||||
column: 16
|
column: 16
|
||||||
fix:
|
fix:
|
||||||
content: _bar
|
edits:
|
||||||
|
- content: _bar
|
||||||
location:
|
location:
|
||||||
row: 77
|
row: 77
|
||||||
column: 13
|
column: 13
|
||||||
|
@ -204,6 +216,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 87
|
row: 87
|
||||||
column: 9
|
column: 9
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 85
|
row: 85
|
||||||
column: 68
|
column: 68
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 89
|
row: 89
|
||||||
column: 71
|
column: 71
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 93
|
row: 93
|
||||||
column: 67
|
column: 67
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 109
|
row: 109
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 113
|
row: 113
|
||||||
column: 28
|
column: 28
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 113
|
row: 113
|
||||||
column: 51
|
column: 51
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 117
|
row: 117
|
||||||
column: 44
|
column: 44
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 155
|
row: 155
|
||||||
column: 47
|
column: 47
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 160
|
row: 160
|
||||||
column: 37
|
column: 37
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 164
|
row: 164
|
||||||
column: 57
|
column: 57
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 170
|
row: 170
|
||||||
column: 28
|
column: 28
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 170
|
row: 170
|
||||||
column: 47
|
column: 47
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -169,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 176
|
row: 176
|
||||||
column: 62
|
column: 62
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -182,7 +195,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 181
|
row: 181
|
||||||
column: 59
|
column: 59
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionCallInDefaultArgument
|
name: FunctionCallInDefaultArgument
|
||||||
|
@ -195,6 +209,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 181
|
row: 181
|
||||||
column: 53
|
column: 53
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 19
|
row: 19
|
||||||
column: 19
|
column: 19
|
||||||
fix:
|
fix:
|
||||||
content: foo.bar
|
edits:
|
||||||
|
- content: foo.bar
|
||||||
location:
|
location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 20
|
row: 20
|
||||||
column: 23
|
column: 23
|
||||||
fix:
|
fix:
|
||||||
content: foo._123abc
|
edits:
|
||||||
|
- content: foo._123abc
|
||||||
location:
|
location:
|
||||||
row: 20
|
row: 20
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 21
|
row: 21
|
||||||
column: 26
|
column: 26
|
||||||
fix:
|
fix:
|
||||||
content: foo.__123abc__
|
edits:
|
||||||
|
- content: foo.__123abc__
|
||||||
location:
|
location:
|
||||||
row: 21
|
row: 21
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -74,7 +77,8 @@ expression: diagnostics
|
||||||
row: 22
|
row: 22
|
||||||
column: 22
|
column: 22
|
||||||
fix:
|
fix:
|
||||||
content: foo.abc123
|
edits:
|
||||||
|
- content: foo.abc123
|
||||||
location:
|
location:
|
||||||
row: 22
|
row: 22
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -94,7 +98,8 @@ expression: diagnostics
|
||||||
row: 23
|
row: 23
|
||||||
column: 23
|
column: 23
|
||||||
fix:
|
fix:
|
||||||
content: foo.abc123
|
edits:
|
||||||
|
- content: foo.abc123
|
||||||
location:
|
location:
|
||||||
row: 23
|
row: 23
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -114,7 +119,8 @@ expression: diagnostics
|
||||||
row: 24
|
row: 24
|
||||||
column: 31
|
column: 31
|
||||||
fix:
|
fix:
|
||||||
content: x.bar
|
edits:
|
||||||
|
- content: x.bar
|
||||||
location:
|
location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 14
|
column: 14
|
||||||
|
@ -134,7 +140,8 @@ expression: diagnostics
|
||||||
row: 25
|
row: 25
|
||||||
column: 20
|
column: 20
|
||||||
fix:
|
fix:
|
||||||
content: x.bar
|
edits:
|
||||||
|
- content: x.bar
|
||||||
location:
|
location:
|
||||||
row: 25
|
row: 25
|
||||||
column: 3
|
column: 3
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 40
|
row: 40
|
||||||
column: 25
|
column: 25
|
||||||
fix:
|
fix:
|
||||||
content: foo.bar = None
|
edits:
|
||||||
|
- content: foo.bar = None
|
||||||
location:
|
location:
|
||||||
row: 40
|
row: 40
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 41
|
row: 41
|
||||||
column: 29
|
column: 29
|
||||||
fix:
|
fix:
|
||||||
content: foo._123abc = None
|
edits:
|
||||||
|
- content: foo._123abc = None
|
||||||
location:
|
location:
|
||||||
row: 41
|
row: 41
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 42
|
row: 42
|
||||||
column: 32
|
column: 32
|
||||||
fix:
|
fix:
|
||||||
content: foo.__123abc__ = None
|
edits:
|
||||||
|
- content: foo.__123abc__ = None
|
||||||
location:
|
location:
|
||||||
row: 42
|
row: 42
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -74,7 +77,8 @@ expression: diagnostics
|
||||||
row: 43
|
row: 43
|
||||||
column: 28
|
column: 28
|
||||||
fix:
|
fix:
|
||||||
content: foo.abc123 = None
|
edits:
|
||||||
|
- content: foo.abc123 = None
|
||||||
location:
|
location:
|
||||||
row: 43
|
row: 43
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -94,7 +98,8 @@ expression: diagnostics
|
||||||
row: 44
|
row: 44
|
||||||
column: 29
|
column: 29
|
||||||
fix:
|
fix:
|
||||||
content: foo.abc123 = None
|
edits:
|
||||||
|
- content: foo.abc123 = None
|
||||||
location:
|
location:
|
||||||
row: 44
|
row: 44
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -114,7 +119,8 @@ expression: diagnostics
|
||||||
row: 45
|
row: 45
|
||||||
column: 30
|
column: 30
|
||||||
fix:
|
fix:
|
||||||
content: foo.bar.baz = None
|
edits:
|
||||||
|
- content: foo.bar.baz = None
|
||||||
location:
|
location:
|
||||||
row: 45
|
row: 45
|
||||||
column: 0
|
column: 0
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 8
|
row: 8
|
||||||
column: 12
|
column: 12
|
||||||
fix:
|
fix:
|
||||||
content: raise AssertionError()
|
edits:
|
||||||
|
- content: raise AssertionError()
|
||||||
location:
|
location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 10
|
row: 10
|
||||||
column: 12
|
column: 12
|
||||||
fix:
|
fix:
|
||||||
content: "raise AssertionError(\"message\")"
|
edits:
|
||||||
|
- content: "raise AssertionError(\"message\")"
|
||||||
location:
|
location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 0
|
column: 0
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: JumpStatementInFinally
|
name: JumpStatementInFinally
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: JumpStatementInFinally
|
name: JumpStatementInFinally
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 21
|
row: 21
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: JumpStatementInFinally
|
name: JumpStatementInFinally
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 31
|
row: 31
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: JumpStatementInFinally
|
name: JumpStatementInFinally
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 44
|
row: 44
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: JumpStatementInFinally
|
name: JumpStatementInFinally
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 66
|
row: 66
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: JumpStatementInFinally
|
name: JumpStatementInFinally
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 78
|
row: 78
|
||||||
column: 20
|
column: 20
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: JumpStatementInFinally
|
name: JumpStatementInFinally
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 94
|
row: 94
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: JumpStatementInFinally
|
name: JumpStatementInFinally
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 101
|
row: 101
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: JumpStatementInFinally
|
name: JumpStatementInFinally
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 107
|
row: 107
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: JumpStatementInFinally
|
name: JumpStatementInFinally
|
||||||
|
@ -143,6 +153,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 118
|
row: 118
|
||||||
column: 21
|
column: 21
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 3
|
row: 3
|
||||||
column: 20
|
column: 20
|
||||||
fix:
|
fix:
|
||||||
content: ValueError
|
edits:
|
||||||
|
- content: ValueError
|
||||||
location:
|
location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 7
|
column: 7
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 17
|
row: 17
|
||||||
column: 25
|
column: 25
|
||||||
fix:
|
fix:
|
||||||
content: OSError
|
edits:
|
||||||
|
- content: OSError
|
||||||
location:
|
location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 7
|
column: 7
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 28
|
row: 28
|
||||||
column: 25
|
column: 25
|
||||||
fix:
|
fix:
|
||||||
content: MyError
|
edits:
|
||||||
|
- content: MyError
|
||||||
location:
|
location:
|
||||||
row: 28
|
row: 28
|
||||||
column: 7
|
column: 7
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 49
|
row: 49
|
||||||
column: 27
|
column: 27
|
||||||
fix:
|
fix:
|
||||||
content: re.error
|
edits:
|
||||||
|
- content: re.error
|
||||||
location:
|
location:
|
||||||
row: 49
|
row: 49
|
||||||
column: 7
|
column: 7
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 6
|
column: 6
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessComparison
|
name: UselessComparison
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessComparison
|
name: UselessComparison
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 15
|
column: 15
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessComparison
|
name: UselessComparison
|
||||||
|
@ -52,6 +55,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: CannotRaiseLiteral
|
name: CannotRaiseLiteral
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: CannotRaiseLiteral
|
name: CannotRaiseLiteral
|
||||||
|
@ -39,6 +41,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 23
|
row: 23
|
||||||
column: 42
|
column: 42
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 6
|
column: 6
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 12
|
row: 12
|
||||||
column: 5
|
column: 5
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 15
|
row: 15
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 16
|
row: 16
|
||||||
column: 9
|
column: 9
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 18
|
row: 18
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 20
|
row: 20
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 5
|
column: 5
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -169,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 39
|
row: 39
|
||||||
column: 6
|
column: 6
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -182,7 +195,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 40
|
row: 40
|
||||||
column: 5
|
column: 5
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -195,7 +209,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 41
|
row: 41
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -208,7 +223,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 42
|
row: 42
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -221,7 +237,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 43
|
row: 43
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -234,7 +251,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 44
|
row: 44
|
||||||
column: 9
|
column: 9
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -247,7 +265,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 45
|
row: 45
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -260,7 +279,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 46
|
row: 46
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -273,7 +293,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 47
|
row: 47
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -286,7 +307,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 48
|
row: 48
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -299,7 +321,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 52
|
row: 52
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -312,7 +335,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 55
|
row: 55
|
||||||
column: 5
|
column: 5
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -325,7 +349,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 63
|
row: 63
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -338,7 +363,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 64
|
row: 64
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessExpression
|
name: UselessExpression
|
||||||
|
@ -351,6 +377,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 65
|
row: 65
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 78
|
row: 78
|
||||||
column: 20
|
column: 20
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: CachedInstanceMethod
|
name: CachedInstanceMethod
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 82
|
row: 82
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: CachedInstanceMethod
|
name: CachedInstanceMethod
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 86
|
row: 86
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: CachedInstanceMethod
|
name: CachedInstanceMethod
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 90
|
row: 90
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: CachedInstanceMethod
|
name: CachedInstanceMethod
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 94
|
row: 94
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: CachedInstanceMethod
|
name: CachedInstanceMethod
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 98
|
row: 98
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: CachedInstanceMethod
|
name: CachedInstanceMethod
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 102
|
row: 102
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: CachedInstanceMethod
|
name: CachedInstanceMethod
|
||||||
|
@ -104,6 +111,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 106
|
row: 106
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 9
|
column: 9
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: LoopVariableOverridesIterator
|
name: LoopVariableOverridesIterator
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 21
|
row: 21
|
||||||
column: 15
|
column: 15
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: LoopVariableOverridesIterator
|
name: LoopVariableOverridesIterator
|
||||||
|
@ -39,6 +41,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 36
|
row: 36
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 3
|
column: 3
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FStringDocstring
|
name: FStringDocstring
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 28
|
column: 28
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FStringDocstring
|
name: FStringDocstring
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 22
|
row: 22
|
||||||
column: 28
|
column: 28
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FStringDocstring
|
name: FStringDocstring
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 30
|
row: 30
|
||||||
column: 28
|
column: 28
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FStringDocstring
|
name: FStringDocstring
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 38
|
row: 38
|
||||||
column: 28
|
column: 28
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FStringDocstring
|
name: FStringDocstring
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 46
|
row: 46
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FStringDocstring
|
name: FStringDocstring
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 54
|
row: 54
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FStringDocstring
|
name: FStringDocstring
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 62
|
row: 62
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FStringDocstring
|
name: FStringDocstring
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 70
|
row: 70
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FStringDocstring
|
name: FStringDocstring
|
||||||
|
@ -130,6 +139,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 74
|
row: 74
|
||||||
column: 48
|
column: 48
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UselessContextlibSuppress
|
name: UselessContextlibSuppress
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 12
|
row: 12
|
||||||
column: 15
|
column: 15
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 12
|
row: 12
|
||||||
column: 30
|
column: 30
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 30
|
column: 30
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 16
|
row: 16
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 28
|
row: 28
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 29
|
row: 29
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 30
|
row: 30
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 31
|
row: 31
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 40
|
row: 40
|
||||||
column: 34
|
column: 34
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 42
|
row: 42
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 50
|
row: 50
|
||||||
column: 30
|
column: 30
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 51
|
row: 51
|
||||||
column: 31
|
column: 31
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 52
|
row: 52
|
||||||
column: 30
|
column: 30
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -169,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 53
|
row: 53
|
||||||
column: 30
|
column: 30
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -182,7 +195,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 61
|
row: 61
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -195,7 +209,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 61
|
row: 61
|
||||||
column: 21
|
column: 21
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -208,7 +223,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 68
|
row: 68
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -221,7 +237,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 82
|
row: 82
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -234,7 +251,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 117
|
row: 117
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -247,7 +265,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 118
|
row: 118
|
||||||
column: 27
|
column: 27
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -260,7 +279,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 119
|
row: 119
|
||||||
column: 37
|
column: 37
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -273,7 +293,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 120
|
row: 120
|
||||||
column: 38
|
column: 38
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -286,7 +307,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 121
|
row: 121
|
||||||
column: 37
|
column: 37
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -299,7 +321,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 171
|
row: 171
|
||||||
column: 32
|
column: 32
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: FunctionUsesLoopVariable
|
name: FunctionUsesLoopVariable
|
||||||
|
@ -312,6 +335,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 174
|
row: 174
|
||||||
column: 29
|
column: 29
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 20
|
row: 20
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AbstractBaseClassWithoutAbstractMethod
|
name: AbstractBaseClassWithoutAbstractMethod
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 73
|
row: 73
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AbstractBaseClassWithoutAbstractMethod
|
name: AbstractBaseClassWithoutAbstractMethod
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 84
|
row: 84
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AbstractBaseClassWithoutAbstractMethod
|
name: AbstractBaseClassWithoutAbstractMethod
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 89
|
row: 89
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AbstractBaseClassWithoutAbstractMethod
|
name: AbstractBaseClassWithoutAbstractMethod
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 94
|
row: 94
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: AbstractBaseClassWithoutAbstractMethod
|
name: AbstractBaseClassWithoutAbstractMethod
|
||||||
|
@ -78,6 +83,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 142
|
row: 142
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: DuplicateTryBlockException
|
name: DuplicateTryBlockException
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 28
|
row: 28
|
||||||
column: 25
|
column: 25
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: DuplicateTryBlockException
|
name: DuplicateTryBlockException
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 35
|
row: 35
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: DuplicateTryBlockException
|
name: DuplicateTryBlockException
|
||||||
|
@ -52,6 +55,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 37
|
row: 37
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 16
|
row: 16
|
||||||
column: 30
|
column: 30
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StarArgUnpackingAfterKeywordArg
|
name: StarArgUnpackingAfterKeywordArg
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 23
|
column: 23
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StarArgUnpackingAfterKeywordArg
|
name: StarArgUnpackingAfterKeywordArg
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 18
|
row: 18
|
||||||
column: 34
|
column: 34
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StarArgUnpackingAfterKeywordArg
|
name: StarArgUnpackingAfterKeywordArg
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 40
|
column: 40
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StarArgUnpackingAfterKeywordArg
|
name: StarArgUnpackingAfterKeywordArg
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 20
|
row: 20
|
||||||
column: 23
|
column: 23
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StarArgUnpackingAfterKeywordArg
|
name: StarArgUnpackingAfterKeywordArg
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 20
|
row: 20
|
||||||
column: 33
|
column: 33
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: StarArgUnpackingAfterKeywordArg
|
name: StarArgUnpackingAfterKeywordArg
|
||||||
|
@ -91,6 +97,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 21
|
row: 21
|
||||||
column: 33
|
column: 33
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: EmptyMethodWithoutAbstractDecorator
|
name: EmptyMethodWithoutAbstractDecorator
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: EmptyMethodWithoutAbstractDecorator
|
name: EmptyMethodWithoutAbstractDecorator
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 21
|
row: 21
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: EmptyMethodWithoutAbstractDecorator
|
name: EmptyMethodWithoutAbstractDecorator
|
||||||
|
@ -52,6 +55,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 28
|
row: 28
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: NoExplicitStacklevel
|
name: NoExplicitStacklevel
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ExceptWithEmptyTuple
|
name: ExceptWithEmptyTuple
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 12
|
row: 12
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ExceptWithNonExceptionClasses
|
name: ExceptWithNonExceptionClasses
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 9
|
column: 9
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ExceptWithNonExceptionClasses
|
name: ExceptWithNonExceptionClasses
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 22
|
row: 22
|
||||||
column: 57
|
column: 57
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ExceptWithNonExceptionClasses
|
name: ExceptWithNonExceptionClasses
|
||||||
|
@ -52,6 +55,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 57
|
column: 57
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ReuseOfGroupbyGenerator
|
name: ReuseOfGroupbyGenerator
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 29
|
row: 29
|
||||||
column: 45
|
column: 45
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ReuseOfGroupbyGenerator
|
name: ReuseOfGroupbyGenerator
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 33
|
row: 33
|
||||||
column: 43
|
column: 43
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ReuseOfGroupbyGenerator
|
name: ReuseOfGroupbyGenerator
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 40
|
row: 40
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ReuseOfGroupbyGenerator
|
name: ReuseOfGroupbyGenerator
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 46
|
row: 46
|
||||||
column: 41
|
column: 41
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ReuseOfGroupbyGenerator
|
name: ReuseOfGroupbyGenerator
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 56
|
row: 56
|
||||||
column: 29
|
column: 29
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ReuseOfGroupbyGenerator
|
name: ReuseOfGroupbyGenerator
|
||||||
|
@ -91,6 +97,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 79
|
row: 79
|
||||||
column: 49
|
column: 49
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnintentionalTypeAnnotation
|
name: UnintentionalTypeAnnotation
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnintentionalTypeAnnotation
|
name: UnintentionalTypeAnnotation
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 12
|
row: 12
|
||||||
column: 16
|
column: 16
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnintentionalTypeAnnotation
|
name: UnintentionalTypeAnnotation
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnintentionalTypeAnnotation
|
name: UnintentionalTypeAnnotation
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 16
|
row: 16
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnintentionalTypeAnnotation
|
name: UnintentionalTypeAnnotation
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnintentionalTypeAnnotation
|
name: UnintentionalTypeAnnotation
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 18
|
row: 18
|
||||||
column: 11
|
column: 11
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: UnintentionalTypeAnnotation
|
name: UnintentionalTypeAnnotation
|
||||||
|
@ -104,6 +111,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 23
|
column: 23
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RaiseWithoutFromInsideExcept
|
name: RaiseWithoutFromInsideExcept
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 21
|
column: 21
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RaiseWithoutFromInsideExcept
|
name: RaiseWithoutFromInsideExcept
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 16
|
row: 16
|
||||||
column: 39
|
column: 39
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RaiseWithoutFromInsideExcept
|
name: RaiseWithoutFromInsideExcept
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 62
|
row: 62
|
||||||
column: 35
|
column: 35
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RaiseWithoutFromInsideExcept
|
name: RaiseWithoutFromInsideExcept
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 64
|
row: 64
|
||||||
column: 35
|
column: 35
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: RaiseWithoutFromInsideExcept
|
name: RaiseWithoutFromInsideExcept
|
||||||
|
@ -78,6 +83,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 72
|
row: 72
|
||||||
column: 39
|
column: 39
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 5
|
column: 5
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ZipWithoutExplicitStrict
|
name: ZipWithoutExplicitStrict
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ZipWithoutExplicitStrict
|
name: ZipWithoutExplicitStrict
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ZipWithoutExplicitStrict
|
name: ZipWithoutExplicitStrict
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ZipWithoutExplicitStrict
|
name: ZipWithoutExplicitStrict
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 23
|
column: 23
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ZipWithoutExplicitStrict
|
name: ZipWithoutExplicitStrict
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: ZipWithoutExplicitStrict
|
name: ZipWithoutExplicitStrict
|
||||||
|
@ -91,6 +97,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 19
|
row: 19
|
||||||
column: 63
|
column: 63
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 29
|
column: 29
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 32
|
column: 32
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 5
|
column: 5
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 9
|
column: 9
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 5
|
column: 5
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 3
|
column: 3
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 2
|
column: 2
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -169,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -182,7 +195,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 22
|
row: 22
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -195,7 +209,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -208,7 +223,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -221,7 +237,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -234,7 +251,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 47
|
column: 47
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -247,7 +265,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 52
|
column: 52
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -260,6 +279,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 30
|
row: 30
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 29
|
column: 29
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 5
|
column: 5
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 9
|
column: 9
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 5
|
column: 5
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 3
|
column: 3
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -117,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 9
|
row: 9
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -130,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 14
|
row: 14
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -143,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 17
|
row: 17
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -156,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 22
|
row: 22
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -169,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 14
|
column: 14
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -182,7 +195,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 24
|
row: 24
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -195,7 +209,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 24
|
column: 24
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -208,7 +223,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 47
|
column: 47
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -221,7 +237,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 27
|
row: 27
|
||||||
column: 52
|
column: 52
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinVariableShadowing
|
name: BuiltinVariableShadowing
|
||||||
|
@ -234,6 +251,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 30
|
row: 30
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 32
|
column: 32
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 43
|
column: 43
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 54
|
column: 54
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 21
|
column: 21
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -91,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 18
|
column: 18
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -104,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 8
|
row: 8
|
||||||
column: 23
|
column: 23
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -117,6 +125,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 20
|
column: 20
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 13
|
column: 13
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 22
|
column: 22
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 32
|
column: 32
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -52,7 +55,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 43
|
column: 43
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -65,7 +69,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 54
|
column: 54
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -78,7 +83,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 21
|
column: 21
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinArgumentShadowing
|
name: BuiltinArgumentShadowing
|
||||||
|
@ -91,6 +97,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 11
|
row: 11
|
||||||
column: 20
|
column: 20
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 15
|
column: 15
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinAttributeShadowing
|
name: BuiltinAttributeShadowing
|
||||||
|
@ -26,7 +27,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 6
|
column: 6
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinAttributeShadowing
|
name: BuiltinAttributeShadowing
|
||||||
|
@ -39,7 +41,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 7
|
column: 7
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinAttributeShadowing
|
name: BuiltinAttributeShadowing
|
||||||
|
@ -52,6 +55,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 12
|
row: 12
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 15
|
column: 15
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: BuiltinAttributeShadowing
|
name: BuiltinAttributeShadowing
|
||||||
|
@ -26,6 +27,7 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 12
|
row: 12
|
||||||
column: 12
|
column: 12
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 4
|
row: 4
|
||||||
column: 17
|
column: 17
|
||||||
fix:
|
fix:
|
||||||
content: "'test',"
|
edits:
|
||||||
|
- content: "'test',"
|
||||||
location:
|
location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 11
|
column: 11
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 10
|
row: 10
|
||||||
column: 5
|
column: 5
|
||||||
fix:
|
fix:
|
||||||
content: "3,"
|
edits:
|
||||||
|
- content: "3,"
|
||||||
location:
|
location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 16
|
row: 16
|
||||||
column: 5
|
column: 5
|
||||||
fix:
|
fix:
|
||||||
content: "3,"
|
edits:
|
||||||
|
- content: "3,"
|
||||||
location:
|
location:
|
||||||
row: 16
|
row: 16
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -74,7 +77,8 @@ expression: diagnostics
|
||||||
row: 23
|
row: 23
|
||||||
column: 5
|
column: 5
|
||||||
fix:
|
fix:
|
||||||
content: "3,"
|
edits:
|
||||||
|
- content: "3,"
|
||||||
location:
|
location:
|
||||||
row: 23
|
row: 23
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -93,7 +97,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 36
|
row: 36
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TrailingCommaOnBareTuple
|
name: TrailingCommaOnBareTuple
|
||||||
|
@ -106,7 +111,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 38
|
row: 38
|
||||||
column: 19
|
column: 19
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TrailingCommaOnBareTuple
|
name: TrailingCommaOnBareTuple
|
||||||
|
@ -119,7 +125,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 45
|
row: 45
|
||||||
column: 8
|
column: 8
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TrailingCommaOnBareTuple
|
name: TrailingCommaOnBareTuple
|
||||||
|
@ -132,7 +139,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 49
|
row: 49
|
||||||
column: 10
|
column: 10
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TrailingCommaOnBareTuple
|
name: TrailingCommaOnBareTuple
|
||||||
|
@ -145,7 +153,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 56
|
row: 56
|
||||||
column: 32
|
column: 32
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TrailingCommaOnBareTuple
|
name: TrailingCommaOnBareTuple
|
||||||
|
@ -158,7 +167,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 58
|
row: 58
|
||||||
column: 26
|
column: 26
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: TrailingCommaOnBareTuple
|
name: TrailingCommaOnBareTuple
|
||||||
|
@ -171,7 +181,8 @@ expression: diagnostics
|
||||||
end_location:
|
end_location:
|
||||||
row: 61
|
row: 61
|
||||||
column: 17
|
column: 17
|
||||||
fix: ~
|
fix:
|
||||||
|
edits: []
|
||||||
parent: ~
|
parent: ~
|
||||||
- kind:
|
- kind:
|
||||||
name: MissingTrailingComma
|
name: MissingTrailingComma
|
||||||
|
@ -185,7 +196,8 @@ expression: diagnostics
|
||||||
row: 70
|
row: 70
|
||||||
column: 7
|
column: 7
|
||||||
fix:
|
fix:
|
||||||
content: "bar,"
|
edits:
|
||||||
|
- content: "bar,"
|
||||||
location:
|
location:
|
||||||
row: 70
|
row: 70
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -205,7 +217,8 @@ expression: diagnostics
|
||||||
row: 78
|
row: 78
|
||||||
column: 7
|
column: 7
|
||||||
fix:
|
fix:
|
||||||
content: "bar,"
|
edits:
|
||||||
|
- content: "bar,"
|
||||||
location:
|
location:
|
||||||
row: 78
|
row: 78
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -225,7 +238,8 @@ expression: diagnostics
|
||||||
row: 86
|
row: 86
|
||||||
column: 7
|
column: 7
|
||||||
fix:
|
fix:
|
||||||
content: "bar,"
|
edits:
|
||||||
|
- content: "bar,"
|
||||||
location:
|
location:
|
||||||
row: 86
|
row: 86
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -245,7 +259,8 @@ expression: diagnostics
|
||||||
row: 152
|
row: 152
|
||||||
column: 5
|
column: 5
|
||||||
fix:
|
fix:
|
||||||
content: "y,"
|
edits:
|
||||||
|
- content: "y,"
|
||||||
location:
|
location:
|
||||||
row: 152
|
row: 152
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -265,7 +280,8 @@ expression: diagnostics
|
||||||
row: 158
|
row: 158
|
||||||
column: 10
|
column: 10
|
||||||
fix:
|
fix:
|
||||||
content: "Anyway,"
|
edits:
|
||||||
|
- content: "Anyway,"
|
||||||
location:
|
location:
|
||||||
row: 158
|
row: 158
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -285,7 +301,8 @@ expression: diagnostics
|
||||||
row: 293
|
row: 293
|
||||||
column: 14
|
column: 14
|
||||||
fix:
|
fix:
|
||||||
content: "123,"
|
edits:
|
||||||
|
- content: "123,"
|
||||||
location:
|
location:
|
||||||
row: 293
|
row: 293
|
||||||
column: 11
|
column: 11
|
||||||
|
@ -305,7 +322,8 @@ expression: diagnostics
|
||||||
row: 304
|
row: 304
|
||||||
column: 13
|
column: 13
|
||||||
fix:
|
fix:
|
||||||
content: "2,"
|
edits:
|
||||||
|
- content: "2,"
|
||||||
location:
|
location:
|
||||||
row: 304
|
row: 304
|
||||||
column: 12
|
column: 12
|
||||||
|
@ -325,7 +343,8 @@ expression: diagnostics
|
||||||
row: 310
|
row: 310
|
||||||
column: 13
|
column: 13
|
||||||
fix:
|
fix:
|
||||||
content: "3,"
|
edits:
|
||||||
|
- content: "3,"
|
||||||
location:
|
location:
|
||||||
row: 310
|
row: 310
|
||||||
column: 12
|
column: 12
|
||||||
|
@ -345,7 +364,8 @@ expression: diagnostics
|
||||||
row: 316
|
row: 316
|
||||||
column: 9
|
column: 9
|
||||||
fix:
|
fix:
|
||||||
content: "3,"
|
edits:
|
||||||
|
- content: "3,"
|
||||||
location:
|
location:
|
||||||
row: 316
|
row: 316
|
||||||
column: 8
|
column: 8
|
||||||
|
@ -365,7 +385,8 @@ expression: diagnostics
|
||||||
row: 322
|
row: 322
|
||||||
column: 14
|
column: 14
|
||||||
fix:
|
fix:
|
||||||
content: "123,"
|
edits:
|
||||||
|
- content: "123,"
|
||||||
location:
|
location:
|
||||||
row: 322
|
row: 322
|
||||||
column: 11
|
column: 11
|
||||||
|
@ -385,7 +406,8 @@ expression: diagnostics
|
||||||
row: 368
|
row: 368
|
||||||
column: 14
|
column: 14
|
||||||
fix:
|
fix:
|
||||||
content: "\"not good\","
|
edits:
|
||||||
|
- content: "\"not good\","
|
||||||
location:
|
location:
|
||||||
row: 368
|
row: 368
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -405,7 +427,8 @@ expression: diagnostics
|
||||||
row: 375
|
row: 375
|
||||||
column: 14
|
column: 14
|
||||||
fix:
|
fix:
|
||||||
content: "\"not good\","
|
edits:
|
||||||
|
- content: "\"not good\","
|
||||||
location:
|
location:
|
||||||
row: 375
|
row: 375
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -425,7 +448,8 @@ expression: diagnostics
|
||||||
row: 404
|
row: 404
|
||||||
column: 14
|
column: 14
|
||||||
fix:
|
fix:
|
||||||
content: "\"not fine\","
|
edits:
|
||||||
|
- content: "\"not fine\","
|
||||||
location:
|
location:
|
||||||
row: 404
|
row: 404
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -445,7 +469,8 @@ expression: diagnostics
|
||||||
row: 432
|
row: 432
|
||||||
column: 14
|
column: 14
|
||||||
fix:
|
fix:
|
||||||
content: "\"not fine\","
|
edits:
|
||||||
|
- content: "\"not fine\","
|
||||||
location:
|
location:
|
||||||
row: 432
|
row: 432
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -465,7 +490,8 @@ expression: diagnostics
|
||||||
row: 485
|
row: 485
|
||||||
column: 21
|
column: 21
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 485
|
row: 485
|
||||||
column: 20
|
column: 20
|
||||||
|
@ -485,7 +511,8 @@ expression: diagnostics
|
||||||
row: 487
|
row: 487
|
||||||
column: 13
|
column: 13
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 487
|
row: 487
|
||||||
column: 12
|
column: 12
|
||||||
|
@ -505,7 +532,8 @@ expression: diagnostics
|
||||||
row: 489
|
row: 489
|
||||||
column: 18
|
column: 18
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 489
|
row: 489
|
||||||
column: 17
|
column: 17
|
||||||
|
@ -525,7 +553,8 @@ expression: diagnostics
|
||||||
row: 494
|
row: 494
|
||||||
column: 6
|
column: 6
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 494
|
row: 494
|
||||||
column: 5
|
column: 5
|
||||||
|
@ -545,7 +574,8 @@ expression: diagnostics
|
||||||
row: 496
|
row: 496
|
||||||
column: 21
|
column: 21
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 496
|
row: 496
|
||||||
column: 20
|
column: 20
|
||||||
|
@ -565,7 +595,8 @@ expression: diagnostics
|
||||||
row: 498
|
row: 498
|
||||||
column: 13
|
column: 13
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 498
|
row: 498
|
||||||
column: 12
|
column: 12
|
||||||
|
@ -585,7 +616,8 @@ expression: diagnostics
|
||||||
row: 500
|
row: 500
|
||||||
column: 18
|
column: 18
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 500
|
row: 500
|
||||||
column: 17
|
column: 17
|
||||||
|
@ -605,7 +637,8 @@ expression: diagnostics
|
||||||
row: 505
|
row: 505
|
||||||
column: 6
|
column: 6
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 505
|
row: 505
|
||||||
column: 5
|
column: 5
|
||||||
|
@ -625,7 +658,8 @@ expression: diagnostics
|
||||||
row: 511
|
row: 511
|
||||||
column: 10
|
column: 10
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 511
|
row: 511
|
||||||
column: 9
|
column: 9
|
||||||
|
@ -645,7 +679,8 @@ expression: diagnostics
|
||||||
row: 513
|
row: 513
|
||||||
column: 9
|
column: 9
|
||||||
fix:
|
fix:
|
||||||
content: ""
|
edits:
|
||||||
|
- content: ""
|
||||||
location:
|
location:
|
||||||
row: 513
|
row: 513
|
||||||
column: 8
|
column: 8
|
||||||
|
@ -665,7 +700,8 @@ expression: diagnostics
|
||||||
row: 519
|
row: 519
|
||||||
column: 12
|
column: 12
|
||||||
fix:
|
fix:
|
||||||
content: "kwargs,"
|
edits:
|
||||||
|
- content: "kwargs,"
|
||||||
location:
|
location:
|
||||||
row: 519
|
row: 519
|
||||||
column: 6
|
column: 6
|
||||||
|
@ -685,7 +721,8 @@ expression: diagnostics
|
||||||
row: 526
|
row: 526
|
||||||
column: 9
|
column: 9
|
||||||
fix:
|
fix:
|
||||||
content: "args,"
|
edits:
|
||||||
|
- content: "args,"
|
||||||
location:
|
location:
|
||||||
row: 526
|
row: 526
|
||||||
column: 5
|
column: 5
|
||||||
|
@ -705,7 +742,8 @@ expression: diagnostics
|
||||||
row: 534
|
row: 534
|
||||||
column: 15
|
column: 15
|
||||||
fix:
|
fix:
|
||||||
content: "extra_kwarg,"
|
edits:
|
||||||
|
- content: "extra_kwarg,"
|
||||||
location:
|
location:
|
||||||
row: 534
|
row: 534
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -725,7 +763,8 @@ expression: diagnostics
|
||||||
row: 541
|
row: 541
|
||||||
column: 12
|
column: 12
|
||||||
fix:
|
fix:
|
||||||
content: "kwargs,"
|
edits:
|
||||||
|
- content: "kwargs,"
|
||||||
location:
|
location:
|
||||||
row: 541
|
row: 541
|
||||||
column: 6
|
column: 6
|
||||||
|
@ -745,7 +784,8 @@ expression: diagnostics
|
||||||
row: 547
|
row: 547
|
||||||
column: 23
|
column: 23
|
||||||
fix:
|
fix:
|
||||||
content: "not_called_kwargs,"
|
edits:
|
||||||
|
- content: "not_called_kwargs,"
|
||||||
location:
|
location:
|
||||||
row: 547
|
row: 547
|
||||||
column: 6
|
column: 6
|
||||||
|
@ -765,7 +805,8 @@ expression: diagnostics
|
||||||
row: 554
|
row: 554
|
||||||
column: 14
|
column: 14
|
||||||
fix:
|
fix:
|
||||||
content: "kwarg_only,"
|
edits:
|
||||||
|
- content: "kwarg_only,"
|
||||||
location:
|
location:
|
||||||
row: 554
|
row: 554
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -785,7 +826,8 @@ expression: diagnostics
|
||||||
row: 561
|
row: 561
|
||||||
column: 12
|
column: 12
|
||||||
fix:
|
fix:
|
||||||
content: "kwargs,"
|
edits:
|
||||||
|
- content: "kwargs,"
|
||||||
location:
|
location:
|
||||||
row: 561
|
row: 561
|
||||||
column: 6
|
column: 6
|
||||||
|
@ -805,7 +847,8 @@ expression: diagnostics
|
||||||
row: 565
|
row: 565
|
||||||
column: 12
|
column: 12
|
||||||
fix:
|
fix:
|
||||||
content: "kwargs,"
|
edits:
|
||||||
|
- content: "kwargs,"
|
||||||
location:
|
location:
|
||||||
row: 565
|
row: 565
|
||||||
column: 6
|
column: 6
|
||||||
|
@ -825,7 +868,8 @@ expression: diagnostics
|
||||||
row: 573
|
row: 573
|
||||||
column: 9
|
column: 9
|
||||||
fix:
|
fix:
|
||||||
content: "args,"
|
edits:
|
||||||
|
- content: "args,"
|
||||||
location:
|
location:
|
||||||
row: 573
|
row: 573
|
||||||
column: 5
|
column: 5
|
||||||
|
@ -845,7 +889,8 @@ expression: diagnostics
|
||||||
row: 577
|
row: 577
|
||||||
column: 9
|
column: 9
|
||||||
fix:
|
fix:
|
||||||
content: "args,"
|
edits:
|
||||||
|
- content: "args,"
|
||||||
location:
|
location:
|
||||||
row: 577
|
row: 577
|
||||||
column: 5
|
column: 5
|
||||||
|
@ -865,7 +910,8 @@ expression: diagnostics
|
||||||
row: 583
|
row: 583
|
||||||
column: 9
|
column: 9
|
||||||
fix:
|
fix:
|
||||||
content: "args,"
|
edits:
|
||||||
|
- content: "args,"
|
||||||
location:
|
location:
|
||||||
row: 583
|
row: 583
|
||||||
column: 5
|
column: 5
|
||||||
|
@ -885,7 +931,8 @@ expression: diagnostics
|
||||||
row: 590
|
row: 590
|
||||||
column: 12
|
column: 12
|
||||||
fix:
|
fix:
|
||||||
content: "kwargs,"
|
edits:
|
||||||
|
- content: "kwargs,"
|
||||||
location:
|
location:
|
||||||
row: 590
|
row: 590
|
||||||
column: 6
|
column: 6
|
||||||
|
@ -905,7 +952,8 @@ expression: diagnostics
|
||||||
row: 598
|
row: 598
|
||||||
column: 14
|
column: 14
|
||||||
fix:
|
fix:
|
||||||
content: "kwarg_only,"
|
edits:
|
||||||
|
- content: "kwarg_only,"
|
||||||
location:
|
location:
|
||||||
row: 598
|
row: 598
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -925,7 +973,8 @@ expression: diagnostics
|
||||||
row: 627
|
row: 627
|
||||||
column: 19
|
column: 19
|
||||||
fix:
|
fix:
|
||||||
content: "},"
|
edits:
|
||||||
|
- content: "},"
|
||||||
location:
|
location:
|
||||||
row: 627
|
row: 627
|
||||||
column: 18
|
column: 18
|
||||||
|
@ -945,7 +994,8 @@ expression: diagnostics
|
||||||
row: 632
|
row: 632
|
||||||
column: 41
|
column: 41
|
||||||
fix:
|
fix:
|
||||||
content: "),"
|
edits:
|
||||||
|
- content: "),"
|
||||||
location:
|
location:
|
||||||
row: 632
|
row: 632
|
||||||
column: 40
|
column: 40
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 1
|
row: 1
|
||||||
column: 29
|
column: 29
|
||||||
fix:
|
fix:
|
||||||
content: "[x for x in range(3)]"
|
edits:
|
||||||
|
- content: "[x for x in range(3)]"
|
||||||
location:
|
location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 4
|
row: 4
|
||||||
column: 1
|
column: 1
|
||||||
fix:
|
fix:
|
||||||
content: "[\n x for x in range(3)\n]"
|
edits:
|
||||||
|
- content: "[\n x for x in range(3)\n]"
|
||||||
location:
|
location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 4
|
column: 4
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 1
|
row: 1
|
||||||
column: 28
|
column: 28
|
||||||
fix:
|
fix:
|
||||||
content: "{x for x in range(3)}"
|
edits:
|
||||||
|
- content: "{x for x in range(3)}"
|
||||||
location:
|
location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 4
|
row: 4
|
||||||
column: 1
|
column: 1
|
||||||
fix:
|
fix:
|
||||||
content: "{\n x for x in range(3)\n}"
|
edits:
|
||||||
|
- content: "{\n x for x in range(3)\n}"
|
||||||
location:
|
location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 5
|
row: 5
|
||||||
column: 48
|
column: 48
|
||||||
fix:
|
fix:
|
||||||
content: " {a if a < 6 else 0 for a in range(3)} "
|
edits:
|
||||||
|
- content: " {a if a < 6 else 0 for a in range(3)} "
|
||||||
location:
|
location:
|
||||||
row: 5
|
row: 5
|
||||||
column: 7
|
column: 7
|
||||||
|
@ -74,7 +77,8 @@ expression: diagnostics
|
||||||
row: 6
|
row: 6
|
||||||
column: 57
|
column: 57
|
||||||
fix:
|
fix:
|
||||||
content: "{a if a < 6 else 0 for a in range(3)}"
|
edits:
|
||||||
|
- content: "{a if a < 6 else 0 for a in range(3)}"
|
||||||
location:
|
location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 16
|
column: 16
|
||||||
|
@ -94,7 +98,8 @@ expression: diagnostics
|
||||||
row: 7
|
row: 7
|
||||||
column: 39
|
column: 39
|
||||||
fix:
|
fix:
|
||||||
content: " {a for a in range(3)} "
|
edits:
|
||||||
|
- content: " {a for a in range(3)} "
|
||||||
location:
|
location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 15
|
column: 15
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 1
|
row: 1
|
||||||
column: 30
|
column: 30
|
||||||
fix:
|
fix:
|
||||||
content: "{x: x for x in range(3)}"
|
edits:
|
||||||
|
- content: "{x: x for x in range(3)}"
|
||||||
location:
|
location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 4
|
row: 4
|
||||||
column: 1
|
column: 1
|
||||||
fix:
|
fix:
|
||||||
content: "{\n x: x for x in range(3)\n}"
|
edits:
|
||||||
|
- content: "{\n x: x for x in range(3)\n}"
|
||||||
location:
|
location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 6
|
row: 6
|
||||||
column: 37
|
column: 37
|
||||||
fix:
|
fix:
|
||||||
content: " {x: x for x in range(3)} "
|
edits:
|
||||||
|
- content: " {x: x for x in range(3)} "
|
||||||
location:
|
location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 7
|
column: 7
|
||||||
|
@ -74,7 +77,8 @@ expression: diagnostics
|
||||||
row: 7
|
row: 7
|
||||||
column: 45
|
column: 45
|
||||||
fix:
|
fix:
|
||||||
content: " {x: x for x in range(3)} "
|
edits:
|
||||||
|
- content: " {x: x for x in range(3)} "
|
||||||
location:
|
location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 15
|
column: 15
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 1
|
row: 1
|
||||||
column: 30
|
column: 30
|
||||||
fix:
|
fix:
|
||||||
content: "{x for x in range(3)}"
|
edits:
|
||||||
|
- content: "{x for x in range(3)}"
|
||||||
location:
|
location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 4
|
row: 4
|
||||||
column: 1
|
column: 1
|
||||||
fix:
|
fix:
|
||||||
content: "{\n x for x in range(3)\n}"
|
edits:
|
||||||
|
- content: "{\n x for x in range(3)\n}"
|
||||||
location:
|
location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 4
|
column: 4
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 1
|
row: 1
|
||||||
column: 32
|
column: 32
|
||||||
fix:
|
fix:
|
||||||
content: "{i: i for i in range(3)}"
|
edits:
|
||||||
|
- content: "{i: i for i in range(3)}"
|
||||||
location:
|
location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 0
|
column: 0
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 1
|
row: 1
|
||||||
column: 11
|
column: 11
|
||||||
fix:
|
fix:
|
||||||
content: "{1, 2}"
|
edits:
|
||||||
|
- content: "{1, 2}"
|
||||||
location:
|
location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 2
|
row: 2
|
||||||
column: 11
|
column: 11
|
||||||
fix:
|
fix:
|
||||||
content: "{1, 2}"
|
edits:
|
||||||
|
- content: "{1, 2}"
|
||||||
location:
|
location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 3
|
row: 3
|
||||||
column: 7
|
column: 7
|
||||||
fix:
|
fix:
|
||||||
content: set()
|
edits:
|
||||||
|
- content: set()
|
||||||
location:
|
location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -74,7 +77,8 @@ expression: diagnostics
|
||||||
row: 4
|
row: 4
|
||||||
column: 7
|
column: 7
|
||||||
fix:
|
fix:
|
||||||
content: set()
|
edits:
|
||||||
|
- content: set()
|
||||||
location:
|
location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -94,7 +98,8 @@ expression: diagnostics
|
||||||
row: 6
|
row: 6
|
||||||
column: 9
|
column: 9
|
||||||
fix:
|
fix:
|
||||||
content: "{1}"
|
edits:
|
||||||
|
- content: "{1}"
|
||||||
location:
|
location:
|
||||||
row: 6
|
row: 6
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -114,7 +119,8 @@ expression: diagnostics
|
||||||
row: 9
|
row: 9
|
||||||
column: 2
|
column: 2
|
||||||
fix:
|
fix:
|
||||||
content: "{\n 1,\n}"
|
edits:
|
||||||
|
- content: "{\n 1,\n}"
|
||||||
location:
|
location:
|
||||||
row: 7
|
row: 7
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -134,7 +140,8 @@ expression: diagnostics
|
||||||
row: 12
|
row: 12
|
||||||
column: 2
|
column: 2
|
||||||
fix:
|
fix:
|
||||||
content: "{\n 1,\n}"
|
edits:
|
||||||
|
- content: "{\n 1,\n}"
|
||||||
location:
|
location:
|
||||||
row: 10
|
row: 10
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -154,7 +161,8 @@ expression: diagnostics
|
||||||
row: 15
|
row: 15
|
||||||
column: 1
|
column: 1
|
||||||
fix:
|
fix:
|
||||||
content: "{1}"
|
edits:
|
||||||
|
- content: "{1}"
|
||||||
location:
|
location:
|
||||||
row: 13
|
row: 13
|
||||||
column: 0
|
column: 0
|
||||||
|
@ -174,7 +182,8 @@ expression: diagnostics
|
||||||
row: 18
|
row: 18
|
||||||
column: 1
|
column: 1
|
||||||
fix:
|
fix:
|
||||||
content: "{1,}"
|
edits:
|
||||||
|
- content: "{1,}"
|
||||||
location:
|
location:
|
||||||
row: 16
|
row: 16
|
||||||
column: 0
|
column: 0
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 1
|
row: 1
|
||||||
column: 19
|
column: 19
|
||||||
fix:
|
fix:
|
||||||
content: "{1: 2}"
|
edits:
|
||||||
|
- content: "{1: 2}"
|
||||||
location:
|
location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 5
|
column: 5
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 2
|
row: 2
|
||||||
column: 20
|
column: 20
|
||||||
fix:
|
fix:
|
||||||
content: "{1: 2,}"
|
edits:
|
||||||
|
- content: "{1: 2,}"
|
||||||
location:
|
location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 5
|
column: 5
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 3
|
row: 3
|
||||||
column: 13
|
column: 13
|
||||||
fix:
|
fix:
|
||||||
content: "{}"
|
edits:
|
||||||
|
- content: "{}"
|
||||||
location:
|
location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 5
|
column: 5
|
||||||
|
@ -74,7 +77,8 @@ expression: diagnostics
|
||||||
row: 4
|
row: 4
|
||||||
column: 13
|
column: 13
|
||||||
fix:
|
fix:
|
||||||
content: "{}"
|
edits:
|
||||||
|
- content: "{}"
|
||||||
location:
|
location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 5
|
column: 5
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 1
|
row: 1
|
||||||
column: 11
|
column: 11
|
||||||
fix:
|
fix:
|
||||||
content: ()
|
edits:
|
||||||
|
- content: ()
|
||||||
location:
|
location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 2
|
row: 2
|
||||||
column: 10
|
column: 10
|
||||||
fix:
|
fix:
|
||||||
content: "[]"
|
edits:
|
||||||
|
- content: "[]"
|
||||||
location:
|
location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 3
|
row: 3
|
||||||
column: 11
|
column: 11
|
||||||
fix:
|
fix:
|
||||||
content: "{}"
|
edits:
|
||||||
|
- content: "{}"
|
||||||
location:
|
location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 5
|
column: 5
|
||||||
|
@ -74,7 +77,8 @@ expression: diagnostics
|
||||||
row: 4
|
row: 4
|
||||||
column: 14
|
column: 14
|
||||||
fix:
|
fix:
|
||||||
content: "{\"a\": 1}"
|
edits:
|
||||||
|
- content: "{\"a\": 1}"
|
||||||
location:
|
location:
|
||||||
row: 4
|
row: 4
|
||||||
column: 5
|
column: 5
|
||||||
|
|
|
@ -14,7 +14,8 @@ expression: diagnostics
|
||||||
row: 1
|
row: 1
|
||||||
column: 11
|
column: 11
|
||||||
fix:
|
fix:
|
||||||
content: ()
|
edits:
|
||||||
|
- content: ()
|
||||||
location:
|
location:
|
||||||
row: 1
|
row: 1
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -34,7 +35,8 @@ expression: diagnostics
|
||||||
row: 2
|
row: 2
|
||||||
column: 10
|
column: 10
|
||||||
fix:
|
fix:
|
||||||
content: "[]"
|
edits:
|
||||||
|
- content: "[]"
|
||||||
location:
|
location:
|
||||||
row: 2
|
row: 2
|
||||||
column: 4
|
column: 4
|
||||||
|
@ -54,7 +56,8 @@ expression: diagnostics
|
||||||
row: 3
|
row: 3
|
||||||
column: 11
|
column: 11
|
||||||
fix:
|
fix:
|
||||||
content: "{}"
|
edits:
|
||||||
|
- content: "{}"
|
||||||
location:
|
location:
|
||||||
row: 3
|
row: 3
|
||||||
column: 5
|
column: 5
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue