repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_final_literal.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_final_literal.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::{self as ast, comparable::ComparableExpr}; use ruff_text_size::{Ranged, TextSize}; use crate::Locator; use crate::checkers::ast::Checker; use crate::fix::snippet::SourceCodeSnippet; use crate::{Edit, Fix, FixAvailability, Violation}; /...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/no_return_argument_annotation.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/no_return_argument_annotation.rs
use std::fmt; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast as ast; use ruff_text_size::Ranged; use crate::Violation; use crate::checkers::ast::Checker; use ruff_python_ast::PythonVersion; /// ## What it does /// Checks for uses of `typing.NoReturn` (and `typing_extensions.NoRetur...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/mod.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/mod.rs
use std::fmt; use anyhow::Result; use ruff_python_ast::{Expr, ExprContext, ExprName, ExprSubscript, ExprTuple, name::Name}; use ruff_python_codegen::Generator; use ruff_text_size::{Ranged, TextRange}; use crate::checkers::ast::TypingImporter; use crate::{Applicability, Edit, Fix}; pub(crate) use any_eq_ne_annotatio...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/unrecognized_platform.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/unrecognized_platform.rs
use ruff_python_ast::{self as ast, CmpOp, Expr}; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_text_size::Ranged; use crate::Violation; use crate::checkers::ast::Checker; use crate::registry::Rule; /// ## What it does /// Check for unrecognized `sys.platform` checks. Platform checks should b...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/duplicate_union_member.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/duplicate_union_member.rs
use rustc_hash::FxHashSet; use std::collections::HashSet; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::comparable::ComparableExpr; use ruff_python_ast::{AtomicNodeIndex, Expr, ExprBinOp, ExprNoneLiteral, Operator, PythonVersion}; use ruff_python_semantic::analyze::typing::{travers...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/complex_assignment_in_stub.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/complex_assignment_in_stub.rs
use ruff_python_ast::{Expr, StmtAssign}; use ruff_macros::{ViolationMetadata, derive_message_formats}; use crate::Violation; use crate::checkers::ast::Checker; /// ## What it does /// Checks for assignments with multiple or non-name targets in stub files. /// /// ## Why is this bad? /// In general, stub files should...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/type_comment_in_stub.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/type_comment_in_stub.rs
use std::sync::LazyLock; use regex::Regex; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_trivia::CommentRanges; use crate::Locator; use crate::Violation; use crate::checkers::ast::LintContext; /// ## What it does /// Checks for the use of type comments (e.g., `x = 1 # type: int`) in...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/bytestring_usage.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/bytestring_usage.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::{self as ast, Expr}; use ruff_python_semantic::Modules; use ruff_text_size::Ranged; use crate::checkers::ast::Checker; use crate::{FixAvailability, Violation}; /// ## What it does /// Checks for uses of `typing.ByteString` or `collecti...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/exit_annotations.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/exit_annotations.rs
use std::fmt::{Display, Formatter}; use ruff_python_ast::{ Expr, ExprBinOp, ExprSubscript, ExprTuple, Operator, ParameterWithDefault, Parameters, Stmt, StmtClassDef, StmtFunctionDef, }; use smallvec::SmallVec; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_semantic::{SemanticMo...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_none_literal.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_none_literal.rs
use anyhow::Result; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::{ self as ast, Expr, ExprBinOp, ExprContext, ExprNoneLiteral, Operator, PythonVersion, helpers::{pep_604_union, typing_optional}, name::Name, operator_precedence::OperatorPrecedence, token::{Tokens...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/non_empty_stub_body.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/non_empty_stub_body.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::helpers::is_docstring_stmt; use ruff_python_ast::{self as ast, Stmt}; use ruff_text_size::Ranged; use crate::checkers::ast::Checker; use crate::{AlwaysFixableViolation, Edit, Fix}; /// ## What it does /// Checks for non-empty function ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/stub_body_multiple_statements.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/stub_body_multiple_statements.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::Stmt; use ruff_python_ast::identifier::Identifier; use crate::Violation; use crate::checkers::ast::Checker; /// ## What it does /// Checks for functions in stub (`.pyi`) files that contain multiple /// statements. /// /// ## Why is thi...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/duplicate_literal_member.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/duplicate_literal_member.rs
use std::collections::HashSet; use rustc_hash::FxHashSet; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::comparable::ComparableExpr; use ruff_python_ast::{self as ast, Expr, ExprContext}; use ruff_python_semantic::analyze::typing::traverse_literal; use ruff_text_size::{Ranged, Text...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/bad_generator_return_type.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/bad_generator_return_type.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast as ast; use ruff_python_ast::helpers::map_subscript; use ruff_python_ast::identifier::Identifier; use ruff_python_semantic::SemanticModel; use ruff_text_size::{Ranged, TextRange}; use crate::checkers::ast::Checker; use crate::importer::I...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/generic_not_last_base_class.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/generic_not_last_base_class.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::{self as ast, helpers::map_subscript}; use ruff_text_size::Ranged; use crate::checkers::ast::Checker; use crate::fix::edits::{Parentheses, add_argument, remove_argument}; use crate::{Fix, FixAvailability, Violation}; /// ## What it doe...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/complex_if_statement_in_stub.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/complex_if_statement_in_stub.rs
use ruff_python_ast::{self as ast, Expr}; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_text_size::Ranged; use crate::Violation; use crate::checkers::ast::Checker; /// ## What it does /// Checks for `if` statements with complex conditionals in stubs. /// /// ## Why is this bad? /// Type chec...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_numeric_union.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_numeric_union.rs
use bitflags::bitflags; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::{AnyParameterRef, Expr, ExprBinOp, Operator, Parameters, PythonVersion}; use ruff_python_semantic::analyze::typing::traverse_union; use ruff_text_size::{Ranged, TextRange}; use crate::checkers::ast::Checker; use...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/non_self_return_type.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/non_self_return_type.rs
use crate::checkers::ast::{Checker, TypingImporter}; use crate::{Applicability, Edit, Fix, FixAvailability, Violation}; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast as ast; use ruff_python_ast::PythonVersion; use ruff_python_ast::helpers::map_subscript; use ruff_python_ast::identifi...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/pass_statement_stub_body.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/pass_statement_stub_body.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::Stmt; use ruff_text_size::Ranged; use crate::checkers::ast::Checker; use crate::{AlwaysFixableViolation, Edit, Fix}; /// ## What it does /// Checks for `pass` statements in empty stub bodies. /// /// ## Why is this bad? /// For stylist...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/str_or_repr_defined_in_stub.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/str_or_repr_defined_in_stub.rs
use ruff_python_ast as ast; use ruff_python_ast::Stmt; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::identifier::Identifier; use ruff_python_semantic::analyze::visibility::is_abstract; use crate::checkers::ast::Checker; use crate::fix::edits::delete_stmt; use crate::{AlwaysFixable...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/unrecognized_version_info.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/unrecognized_version_info.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::helpers::map_subscript; use ruff_python_ast::{self as ast, CmpOp, Expr, Int}; use ruff_text_size::Ranged; use crate::Violation; use crate::checkers::ast::Checker; use crate::registry::Rule; /// ## What it does /// Checks for problemati...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/iter_method_return_iterable.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/iter_method_return_iterable.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::helpers::map_subscript; use ruff_text_size::Ranged; use ruff_python_semantic::{Definition, Member, MemberKind}; use crate::Violation; use crate::checkers::ast::Checker; /// ## What it does /// Checks for `__iter__` methods in stubs th...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/pre_pep570_positional_argument.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/pre_pep570_positional_argument.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast as ast; use ruff_python_ast::identifier::Identifier; use ruff_python_semantic::analyze::function_type; use crate::Violation; use crate::checkers::ast::Checker; use ruff_python_ast::PythonVersion; /// ## What it does /// Checks for the p...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/unnecessary_type_union.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/unnecessary_type_union.rs
use ast::ExprContext; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::helpers::pep_604_union; use ruff_python_ast::name::Name; use ruff_python_ast::{self as ast, Expr}; use ruff_python_semantic::analyze::typing::traverse_union; use ruff_text_size::{Ranged, TextRange}; use crate::chec...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/future_annotations_in_stub.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/future_annotations_in_stub.rs
use ruff_python_ast::StmtImportFrom; use ruff_macros::{ViolationMetadata, derive_message_formats}; use crate::{Fix, FixAvailability, Violation}; use crate::{checkers::ast::Checker, fix}; /// ## What it does /// Checks for the presence of the `from __future__ import annotations` import /// statement in stub files. //...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/ellipsis_in_non_empty_class_body.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/ellipsis_in_non_empty_class_body.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::whitespace::trailing_comment_start_offset; use ruff_python_ast::{Stmt, StmtExpr}; use ruff_text_size::Ranged; use crate::checkers::ast::Checker; use crate::fix; use crate::{Edit, Fix, FixAvailability, Violation}; /// ## What it does //...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_pyi/rules/numeric_literal_too_long.rs
crates/ruff_linter/src/rules/flake8_pyi/rules/numeric_literal_too_long.rs
use ruff_python_ast::Expr; use ruff_text_size::{Ranged, TextSize}; use ruff_macros::{ViolationMetadata, derive_message_formats}; use crate::checkers::ast::Checker; use crate::{AlwaysFixableViolation, Edit, Fix}; /// ## What it does /// Checks for numeric literals with a string representation longer than ten /// char...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_executable/helpers.rs
crates/ruff_linter/src/rules/flake8_executable/helpers.rs
#![cfg(target_family = "unix")] use std::os::unix::fs::PermissionsExt; use std::path::Path; use anyhow::Result; pub(super) fn is_executable(filepath: &Path) -> Result<bool> { let metadata = filepath.metadata()?; let permissions = metadata.permissions(); Ok(permissions.mode() & 0o111 != 0) }
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_executable/mod.rs
crates/ruff_linter/src/rules/flake8_executable/mod.rs
//! Rules from [flake8-executable](https://pypi.org/project/flake8-executable/). pub(crate) mod helpers; pub(crate) mod rules; #[cfg(unix)] #[cfg(test)] mod tests { use std::path::Path; use anyhow::Result; use test_case::test_case; use crate::registry::Rule; use crate::test::test_path; use cr...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_not_executable.rs
crates/ruff_linter/src/rules/flake8_executable/rules/shebang_not_executable.rs
use std::path::Path; use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_text_size::TextRange; use crate::Violation; use crate::checkers::ast::LintContext; #[cfg(target_family = "unix")] use crate::rules::flake8_executable::helpers::is_executable; /// ## What it does /// Checks for a shebang direc...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_not_first_line.rs
crates/ruff_linter/src/rules/flake8_executable/rules/shebang_not_first_line.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_trivia::is_python_whitespace; use ruff_text_size::{TextRange, TextSize}; use crate::Locator; use crate::Violation; use crate::checkers::ast::LintContext; /// ## What it does /// Checks for a shebang directive that is not at the beginning of...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_missing_executable_file.rs
crates/ruff_linter/src/rules/flake8_executable/rules/shebang_missing_executable_file.rs
use std::path::Path; use ruff_macros::{ViolationMetadata, derive_message_formats}; use crate::Violation; use crate::checkers::ast::LintContext; #[cfg(target_family = "unix")] use crate::rules::flake8_executable::helpers::is_executable; /// ## What it does /// Checks for executable `.py` files that do not have a sheb...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_leading_whitespace.rs
crates/ruff_linter/src/rules/flake8_executable/rules/shebang_leading_whitespace.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_trivia::is_python_whitespace; use ruff_text_size::{TextRange, TextSize}; use crate::Locator; use crate::checkers::ast::LintContext; use crate::{AlwaysFixableViolation, Edit, Fix}; /// ## What it does /// Checks for whitespace before a sheba...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_executable/rules/mod.rs
crates/ruff_linter/src/rules/flake8_executable/rules/mod.rs
use std::path::Path; use ruff_python_trivia::CommentRanges; pub(crate) use shebang_leading_whitespace::*; pub(crate) use shebang_missing_executable_file::*; pub(crate) use shebang_missing_python::*; pub(crate) use shebang_not_executable::*; pub(crate) use shebang_not_first_line::*; use crate::Locator; use crate::chec...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_missing_python.rs
crates/ruff_linter/src/rules/flake8_executable/rules/shebang_missing_python.rs
use ruff_text_size::TextRange; use ruff_macros::{ViolationMetadata, derive_message_formats}; use crate::Violation; use crate::checkers::ast::LintContext; use crate::comments::shebang::ShebangDirective; /// ## What it does /// Checks for a shebang directive in `.py` files that does not contain `python`, /// `pytest`,...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_2020/helpers.rs
crates/ruff_linter/src/rules/flake8_2020/helpers.rs
use ruff_python_ast::Expr; use ruff_python_semantic::SemanticModel; pub(super) fn is_sys(expr: &Expr, target: &str, semantic: &SemanticModel) -> bool { semantic .resolve_qualified_name(expr) .is_some_and(|qualified_name| qualified_name.segments() == ["sys", target]) }
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_2020/mod.rs
crates/ruff_linter/src/rules/flake8_2020/mod.rs
//! Rules from [flake8-2020](https://pypi.org/project/flake8-2020/). mod helpers; pub(crate) mod rules; #[cfg(test)] mod tests { use std::path::Path; use anyhow::Result; use test_case::test_case; use crate::registry::Rule; use crate::test::test_path; use crate::{assert_diagnostics, settings};...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_2020/rules/mod.rs
crates/ruff_linter/src/rules/flake8_2020/rules/mod.rs
pub(crate) use compare::*; pub(crate) use name_or_attribute::*; pub(crate) use subscript::*; mod compare; mod name_or_attribute; mod subscript;
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_2020/rules/compare.rs
crates/ruff_linter/src/rules/flake8_2020/rules/compare.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::{self as ast, CmpOp, Expr}; use ruff_text_size::Ranged; use crate::Violation; use crate::checkers::ast::Checker; use crate::registry::Rule; use crate::rules::flake8_2020::helpers::is_sys; /// ## What it does /// Checks for comparisons...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_2020/rules/subscript.rs
crates/ruff_linter/src/rules/flake8_2020/rules/subscript.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::{self as ast, Expr}; use ruff_text_size::Ranged; use crate::Violation; use crate::checkers::ast::Checker; use crate::registry::Rule; use crate::rules::flake8_2020::helpers::is_sys; /// ## What it does /// Checks for uses of `sys.versio...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/flake8_2020/rules/name_or_attribute.rs
crates/ruff_linter/src/rules/flake8_2020/rules/name_or_attribute.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_ast::Expr; use ruff_python_semantic::Modules; use ruff_text_size::Ranged; use crate::Violation; use crate::checkers::ast::Checker; /// ## What it does /// Checks for uses of `six.PY3`. /// /// ## Why is this bad? /// `six.PY3` will evaluate...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/eradicate/mod.rs
crates/ruff_linter/src/rules/eradicate/mod.rs
//! Rules from [eradicate](https://pypi.org/project/eradicate/). pub(crate) mod detection; pub(crate) mod rules; #[cfg(test)] mod tests { use std::path::Path; use anyhow::Result; use test_case::test_case; use crate::registry::Rule; use crate::test::test_path; use crate::{assert_diagnostics, s...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/eradicate/detection.rs
crates/ruff_linter/src/rules/eradicate/detection.rs
/// See: [eradicate.py](https://github.com/myint/eradicate/blob/98f199940979c94447a461d50d27862b118b282d/eradicate.py) use aho_corasick::AhoCorasick; use itertools::Itertools; use regex::{Regex, RegexSet}; use ruff_python_parser::parse_module; use ruff_python_trivia::{SimpleTokenKind, SimpleTokenizer}; use ruff_text_si...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/eradicate/rules/mod.rs
crates/ruff_linter/src/rules/eradicate/rules/mod.rs
pub(crate) use commented_out_code::*; mod commented_out_code;
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rules/eradicate/rules/commented_out_code.rs
crates/ruff_linter/src/rules/eradicate/rules/commented_out_code.rs
use ruff_macros::{ViolationMetadata, derive_message_formats}; use ruff_python_trivia::CommentRanges; use ruff_source_file::{LineRanges, UniversalNewlineIterator}; use ruff_text_size::TextRange; use crate::Locator; use crate::checkers::ast::LintContext; use crate::{Edit, Fix, FixAvailability, Violation}; use crate::ru...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/cst/helpers.rs
crates/ruff_linter/src/cst/helpers.rs
use libcst_native::{ Expression, LeftParen, Name, ParenthesizableWhitespace, ParenthesizedNode, RightParen, SimpleWhitespace, UnaryOperation, }; /// Return a [`ParenthesizableWhitespace`] containing a single space. pub(crate) fn space() -> ParenthesizableWhitespace<'static> { ParenthesizableWhitespace::Sim...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/cst/matchers.rs
crates/ruff_linter/src/cst/matchers.rs
use crate::fix::codemods::CodegenStylist; use anyhow::{Result, bail}; use libcst_native::{ Arg, Attribute, Call, Comparison, CompoundStatement, Dict, Expression, FormattedString, FormattedStringContent, FormattedStringExpression, FunctionDef, GeneratorExp, If, Import, ImportAlias, ImportFrom, ImportNames, I...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/cst/mod.rs
crates/ruff_linter/src/cst/mod.rs
pub(crate) mod helpers; pub(crate) mod matchers;
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/comments/mod.rs
crates/ruff_linter/src/comments/mod.rs
pub(crate) mod shebang;
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/comments/shebang.rs
crates/ruff_linter/src/comments/shebang.rs
use std::ops::Deref; use ruff_python_trivia::Cursor; /// A shebang directive (e.g., `#!/usr/bin/env python3`). #[derive(Debug, PartialEq, Eq)] pub(crate) struct ShebangDirective<'a>(&'a str); impl<'a> ShebangDirective<'a> { /// Parse a shebang directive from a line, or return `None` if the line does not contain ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/fix/codemods.rs
crates/ruff_linter/src/fix/codemods.rs
//! Interface for editing code snippets. These functions take statements or expressions as input, //! and return the modified code snippet as output. use std::borrow::Cow; use anyhow::{Result, bail}; use libcst_native::{ Codegen, CodegenState, Expression, ImportNames, NameOrAttribute, ParenthesizableWhitespace, ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/fix/snippet.rs
crates/ruff_linter/src/fix/snippet.rs
use unicode_width::UnicodeWidthStr; /// A snippet of source code for user-facing display, as in a diagnostic. #[derive(Debug, Clone, PartialEq, Eq)] pub(crate) struct SourceCodeSnippet(String); impl SourceCodeSnippet { pub(crate) fn new(source_code: String) -> Self { Self(source_code) } pub(crate...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/fix/edits.rs
crates/ruff_linter/src/fix/edits.rs
//! Interface for generating fix edits from higher-level actions (e.g., "remove an argument"). use anyhow::{Context, Result}; use ruff_python_ast::AnyNodeRef; use ruff_python_ast::token::{self, Tokens, parenthesized_range}; use ruff_python_ast::{self as ast, Arguments, ExceptHandler, Expr, ExprList, Parameters, Stmt}...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/fix/mod.rs
crates/ruff_linter/src/fix/mod.rs
use std::collections::BTreeSet; use itertools::Itertools; use rustc_hash::FxHashSet; use ruff_db::diagnostic::Diagnostic; use ruff_diagnostics::{IsolationLevel, SourceMap}; use ruff_text_size::{Ranged, TextLen, TextRange, TextSize}; use crate::Locator; use crate::linter::FixTable; use crate::registry::Rule; use crat...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/message/grouped.rs
crates/ruff_linter/src/message/grouped.rs
use std::collections::BTreeMap; use std::fmt::{Display, Formatter}; use std::io::Write; use std::num::NonZeroUsize; use colored::Colorize; use ruff_db::diagnostic::Diagnostic; use ruff_diagnostics::Applicability; use ruff_notebook::NotebookIndex; use ruff_source_file::{LineColumn, OneIndexed}; use crate::fs::relativ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/message/sarif.rs
crates/ruff_linter/src/message/sarif.rs
use std::collections::HashSet; use std::io::Write; use anyhow::Result; use log::warn; use serde::{Serialize, Serializer}; use serde_json::json; use ruff_db::diagnostic::{Diagnostic, SecondaryCode}; use ruff_source_file::{OneIndexed, SourceFile}; use ruff_text_size::{Ranged, TextRange}; use crate::VERSION; use crate:...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/message/mod.rs
crates/ruff_linter/src/message/mod.rs
use std::backtrace::BacktraceStatus; use std::fmt::Display; use std::io::Write; use std::path::Path; use ruff_db::panic::PanicError; use rustc_hash::FxHashMap; use ruff_db::diagnostic::{ Annotation, Diagnostic, DiagnosticFormat, DiagnosticId, DisplayDiagnosticConfig, DisplayDiagnostics, DisplayGithubDiagnosti...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/registry/rule_set.rs
crates/ruff_linter/src/registry/rule_set.rs
use std::fmt::{Debug, Display, Formatter}; use std::iter::FusedIterator; use ruff_macros::CacheKey; use crate::registry::Rule; const RULESET_SIZE: usize = 15; /// A set of [`Rule`]s. /// /// Uses a bitset where a bit of one signals that the Rule with that [u16] is in this set. #[derive(Clone, Default, CacheKey, Par...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/importer/mod.rs
crates/ruff_linter/src/importer/mod.rs
//! Code modification struct to add and modify import statements. //! //! Enables rules to make module members available (that may be not yet be imported) during fix //! execution. use std::error::Error; use anyhow::Result; use libcst_native as cst; use ruff_diagnostics::Edit; use ruff_python_ast::token::Tokens; use...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/db.rs
crates/ty_server/src/db.rs
use crate::NotebookDocument; use crate::session::index::Document; use crate::system::LSPSystem; use ruff_db::Db as _; use ruff_db::files::{File, FilePath}; use ty_project::{Db as ProjectDb, ProjectDatabase}; #[salsa::db] pub(crate) trait Db: ProjectDb { /// Returns the LSP [`Document`] corresponding to `File` or ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/lib.rs
crates/ty_server/src/lib.rs
use std::{num::NonZeroUsize, sync::Arc}; use anyhow::Context; use lsp_server::Connection; use ruff_db::system::{OsSystem, SystemPathBuf}; use crate::db::Db; pub use crate::logging::{LogLevel, init_logging}; pub use crate::server::{PartialWorkspaceProgress, PartialWorkspaceProgressParams, Server}; pub use crate::sessi...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/session.rs
crates/ty_server/src/session.rs
//! Data model, state management, and configuration resolution. use std::collections::{BTreeMap, HashMap, HashSet, VecDeque}; use std::ops::{Deref, DerefMut}; use std::panic::RefUnwindSafe; use std::sync::Arc; use anyhow::{Context, anyhow}; use lsp_server::{Message, RequestId}; use lsp_types::notification::{DidChange...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/document.rs
crates/ty_server/src/document.rs
//! Types and utilities for working with text, modifying source files, and `ty <-> LSP` type conversion. mod location; mod notebook; mod range; mod text_document; use lsp_types::{PositionEncodingKind, Url}; use ruff_db::system::{SystemPathBuf, SystemVirtualPath, SystemVirtualPathBuf}; use crate::system::AnySystemPat...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/system.rs
crates/ty_server/src/system.rs
use std::any::Any; use std::fmt; use std::fmt::Display; use std::hash::{DefaultHasher, Hash, Hasher as _}; use std::panic::RefUnwindSafe; use std::sync::Arc; use crate::Db; use crate::document::{DocumentKey, LanguageId}; use crate::session::index::{Document, Index}; use lsp_types::Url; use ruff_db::file_revision::File...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server.rs
crates/ty_server/src/server.rs
//! Scheduling, I/O, and API endpoints. use self::schedule::spawn_main_loop; use crate::PositionEncoding; use crate::capabilities::{ResolvedClientCapabilities, server_capabilities}; use crate::session::{InitializationOptions, Session, warn_about_unknown_options}; use anyhow::Context; use lsp_server::Connection; use ls...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/logging.rs
crates/ty_server/src/logging.rs
//! The logging system for `ty server`. //! //! Log messages are controlled by the `logLevel` setting which defaults to `"info"`. Log messages //! are written to `stderr` by default, which should appear in the logs for most LSP clients. A //! `logFile` path can also be specified in the settings, and output will be dire...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/capabilities.rs
crates/ty_server/src/capabilities.rs
use lsp_types::{ self as types, ClientCapabilities, CodeActionKind, CodeActionOptions, CompletionOptions, DeclarationCapability, DiagnosticOptions, DiagnosticServerCapabilities, HoverProviderCapability, InlayHintOptions, InlayHintServerCapabilities, MarkupKind, NotebookCellSelector, NotebookSelector, On...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/session/settings.rs
crates/ty_server/src/session/settings.rs
use super::options::DiagnosticMode; use ty_ide::{CompletionSettings, InlayHintSettings}; use ty_project::metadata::options::ProjectOptionsOverrides; /// Resolved client settings that are shared across all workspaces. #[derive(Clone, Default, Debug, PartialEq)] pub(crate) struct GlobalSettings { pub(super) diagnost...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/session/index.rs
crates/ty_server/src/session/index.rs
use rustc_hash::FxHashMap; use std::sync::Arc; use crate::document::{DocumentKey, LanguageId}; use crate::session::DocumentHandle; use crate::{ PositionEncoding, TextDocument, document::{DocumentVersion, NotebookDocument}, }; /// Stores and tracks all open documents in a session, along with their associated s...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/session/client.rs
crates/ty_server/src/session/client.rs
use crate::Session; use crate::server::{Action, ConnectionSender, SendRequest}; use crate::server::{Event, MainLoopSender}; use lsp_server::{ErrorCode, Message, Notification, RequestId, ResponseError}; use serde_json::Value; use std::any::TypeId; use std::fmt::Display; #[derive(Debug, Clone)] pub(crate) struct Client ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/session/options.rs
crates/ty_server/src/session/options.rs
use std::collections::HashMap; use lsp_types::Url; use ruff_db::system::{SystemPath, SystemPathBuf}; use ruff_macros::Combine; use ruff_python_ast::PythonVersion; use serde::{Deserialize, Serialize}; use serde_json::{Map, Value}; use ty_combine::Combine; use ty_ide::{CompletionSettings, InlayHintSettings}; use ty_proj...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/session/request_queue.rs
crates/ty_server/src/session/request_queue.rs
use crate::session::client::ClientResponseHandler; use lsp_server::RequestId; use rustc_hash::FxHashMap; use std::cell::{Cell, OnceCell, RefCell}; use std::fmt::Formatter; use std::sync::Arc; use std::sync::atomic::AtomicBool; use std::time::Instant; /// Tracks the pending requests between client and server. pub(crate...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/schedule.rs
crates/ty_server/src/server/schedule.rs
use std::num::NonZeroUsize; use crate::session::Session; mod task; mod thread; use self::{ task::{BackgroundTaskBuilder, SyncTask}, thread::ThreadPriority, }; use crate::session::client::Client; pub(super) use task::{BackgroundSchedule, Task}; /// The event loop thread is actually a secondary thread that we...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api.rs
crates/ty_server/src/server/api.rs
use crate::server::schedule::Task; use crate::session::Session; use anyhow::anyhow; use lsp_server as server; use lsp_server::{ErrorCode, RequestId}; use lsp_types::notification::Notification; use lsp_types::request::Request; use std::panic::{AssertUnwindSafe, UnwindSafe}; mod diagnostics; mod notifications; mod reque...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/lazy_work_done_progress.rs
crates/ty_server/src/server/lazy_work_done_progress.rs
use crate::capabilities::ResolvedClientCapabilities; use crate::session::client::Client; use lsp_types::request::WorkDoneProgressCreate; use lsp_types::{ ProgressParams, ProgressParamsValue, ProgressToken, WorkDoneProgress, WorkDoneProgressBegin, WorkDoneProgressCreateParams, WorkDoneProgressEnd, WorkDoneProgre...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/main_loop.rs
crates/ty_server/src/server/main_loop.rs
use crate::server::schedule::Scheduler; use crate::server::{Server, api}; use crate::session::client::{Client, ClientResponseHandler}; use crate::session::{ClientOptions, SuspendedWorkspaceDiagnosticRequest}; use anyhow::anyhow; use crossbeam::select; use lsp_server::Message; use lsp_types::notification::Notification; ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/diagnostics.rs
crates/ty_server/src/server/api/diagnostics.rs
use std::collections::HashMap; use std::hash::{DefaultHasher, Hash as _, Hasher as _}; use lsp_types::notification::PublishDiagnostics; use lsp_types::{ CodeDescription, Diagnostic, DiagnosticRelatedInformation, DiagnosticSeverity, DiagnosticTag, NumberOrString, PublishDiagnosticsParams, Url, }; use ruff_diagn...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/semantic_tokens.rs
crates/ty_server/src/server/api/semantic_tokens.rs
use lsp_types::SemanticToken; use ruff_db::source::{line_index, source_text}; use ruff_source_file::OneIndexed; use ruff_text_size::{Ranged, TextRange}; use ty_ide::{SemanticTokenModifier, SemanticTokenType, semantic_tokens}; use ty_project::ProjectDatabase; use crate::document::{PositionEncoding, ToRangeExt}; /// Co...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/symbols.rs
crates/ty_server/src/server/api/symbols.rs
//! Utility functions common to language server request handlers //! that return symbol information. use lsp_types::{SymbolInformation, SymbolKind}; use ty_ide::SymbolInfo; use crate::Db; use crate::document::{PositionEncoding, ToRangeExt}; /// Convert `ty_ide` `SymbolKind` to LSP `SymbolKind` pub(crate) fn convert_...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/traits.rs
crates/ty_server/src/server/api/traits.rs
//! Traits for handling requests and notifications from the LSP client. //! //! This module defines the trait abstractions used by the language server to handle incoming //! requests and notifications from clients. It provides a type-safe way to implement LSP handlers //! with different execution models (synchronous or...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/notifications.rs
crates/ty_server/src/server/api/notifications.rs
mod cancel; mod did_change; mod did_change_notebook; mod did_change_watched_files; mod did_close; mod did_close_notebook; mod did_open; mod did_open_notebook; pub(super) use cancel::CancelNotificationHandler; pub(super) use did_change::DidChangeTextDocumentHandler; pub(super) use did_change_notebook::DidChangeNotebook...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests.rs
crates/ty_server/src/server/api/requests.rs
mod code_action; mod completion; mod diagnostic; mod doc_highlights; mod document_symbols; mod execute_command; mod goto_declaration; mod goto_definition; mod goto_type_definition; mod hover; mod inlay_hints; mod prepare_rename; mod references; mod rename; mod selection_range; mod semantic_tokens; mod semantic_tokens_r...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/doc_highlights.rs
crates/ty_server/src/server/api/requests/doc_highlights.rs
use std::borrow::Cow; use lsp_types::request::DocumentHighlightRequest; use lsp_types::{DocumentHighlight, DocumentHighlightKind, DocumentHighlightParams, Url}; use ty_ide::{ReferenceKind, document_highlights}; use ty_project::ProjectDatabase; use crate::document::{PositionExt, ToRangeExt}; use crate::server::api::tr...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/semantic_tokens_range.rs
crates/ty_server/src/server/api/requests/semantic_tokens_range.rs
use std::borrow::Cow; use lsp_types::{SemanticTokens, SemanticTokensRangeParams, SemanticTokensRangeResult, Url}; use ty_project::ProjectDatabase; use crate::document::RangeExt; use crate::server::api::semantic_tokens::generate_semantic_tokens; use crate::server::api::traits::{ BackgroundDocumentRequestHandler, R...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/shutdown.rs
crates/ty_server/src/server/api/requests/shutdown.rs
use crate::Session; use crate::server::api::traits::{RequestHandler, SyncRequestHandler}; use crate::session::client::Client; use lsp_types::{WorkspaceDiagnosticReport, WorkspaceDiagnosticReportResult}; use salsa::Database; pub(crate) struct ShutdownHandler; impl RequestHandler for ShutdownHandler { type Request...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/goto_declaration.rs
crates/ty_server/src/server/api/requests/goto_declaration.rs
use std::borrow::Cow; use lsp_types::request::{GotoDeclaration, GotoDeclarationParams}; use lsp_types::{GotoDefinitionResponse, Url}; use ty_ide::goto_declaration; use ty_project::ProjectDatabase; use crate::document::{PositionExt, ToLink}; use crate::server::api::traits::{ BackgroundDocumentRequestHandler, Reque...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/completion.rs
crates/ty_server/src/server/api/requests/completion.rs
use std::borrow::Cow; use std::time::Instant; use lsp_types::request::Completion; use lsp_types::{ CompletionItem, CompletionItemKind, CompletionItemLabelDetails, CompletionList, CompletionParams, CompletionResponse, Documentation, TextEdit, Url, }; use ruff_source_file::OneIndexed; use ruff_text_size::Ranged;...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/rename.rs
crates/ty_server/src/server/api/requests/rename.rs
use std::borrow::Cow; use std::collections::HashMap; use lsp_types::request::Rename; use lsp_types::{RenameParams, TextEdit, Url, WorkspaceEdit}; use ty_ide::rename; use ty_project::ProjectDatabase; use crate::document::{PositionExt, ToLink}; use crate::server::api::traits::{ BackgroundDocumentRequestHandler, Req...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/semantic_tokens.rs
crates/ty_server/src/server/api/requests/semantic_tokens.rs
use std::borrow::Cow; use lsp_types::{SemanticTokens, SemanticTokensParams, SemanticTokensResult, Url}; use ruff_db::source::source_text; use ty_project::ProjectDatabase; use crate::db::Db; use crate::server::api::semantic_tokens::generate_semantic_tokens; use crate::server::api::traits::{ BackgroundDocumentReque...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/references.rs
crates/ty_server/src/server/api/requests/references.rs
use std::borrow::Cow; use lsp_types::request::References; use lsp_types::{Location, ReferenceParams, Url}; use ty_ide::find_references; use ty_project::ProjectDatabase; use crate::document::{PositionExt, ToLink}; use crate::server::api::traits::{ BackgroundDocumentRequestHandler, RequestHandler, RetriableRequestH...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/selection_range.rs
crates/ty_server/src/server/api/requests/selection_range.rs
use std::borrow::Cow; use lsp_types::request::SelectionRangeRequest; use lsp_types::{SelectionRange as LspSelectionRange, SelectionRangeParams, Url}; use ty_ide::selection_range; use ty_project::ProjectDatabase; use crate::document::{PositionExt, ToRangeExt}; use crate::server::api::traits::{ BackgroundDocumentRe...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/workspace_diagnostic.rs
crates/ty_server/src/server/api/requests/workspace_diagnostic.rs
use std::collections::BTreeMap; use std::sync::Mutex; use std::time::{Duration, Instant}; use lsp_server::RequestId; use lsp_types::request::WorkspaceDiagnosticRequest; use lsp_types::{ FullDocumentDiagnosticReport, PreviousResultId, ProgressToken, UnchangedDocumentDiagnosticReport, Url, WorkspaceDiagnosticPar...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/inlay_hints.rs
crates/ty_server/src/server/api/requests/inlay_hints.rs
use std::borrow::Cow; use std::time::Instant; use lsp_types::request::InlayHintRequest; use lsp_types::{InlayHintParams, Url}; use ruff_db::files::File; use ty_ide::{InlayHintKind, InlayHintLabel, InlayHintTextEdit, inlay_hints}; use ty_project::ProjectDatabase; use crate::PositionEncoding; use crate::document::{Rang...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/hover.rs
crates/ty_server/src/server/api/requests/hover.rs
use std::borrow::Cow; use crate::document::{FileRangeExt, PositionExt}; use crate::server::api::traits::{ BackgroundDocumentRequestHandler, RequestHandler, RetriableRequestHandler, }; use crate::session::DocumentSnapshot; use crate::session::client::Client; use lsp_types::request::HoverRequest; use lsp_types::{Hov...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/document_symbols.rs
crates/ty_server/src/server/api/requests/document_symbols.rs
use std::borrow::Cow; use lsp_types::request::DocumentSymbolRequest; use lsp_types::{DocumentSymbol, DocumentSymbolParams, SymbolInformation, Url}; use ruff_db::files::File; use ty_ide::{HierarchicalSymbols, SymbolId, SymbolInfo, document_symbols}; use ty_project::ProjectDatabase; use crate::Db; use crate::document::...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/execute_command.rs
crates/ty_server/src/server/api/requests/execute_command.rs
use crate::capabilities::SupportedCommand; use crate::server; use crate::server::api::LSPResult; use crate::server::api::RequestHandler; use crate::server::api::traits::SyncRequestHandler; use crate::session::Session; use crate::session::client::Client; use lsp_server::ErrorCode; use lsp_types::{self as types, request ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/prepare_rename.rs
crates/ty_server/src/server/api/requests/prepare_rename.rs
use std::borrow::Cow; use lsp_types::request::PrepareRenameRequest; use lsp_types::{PrepareRenameResponse, TextDocumentPositionParams, Url}; use ty_ide::can_rename; use ty_project::ProjectDatabase; use crate::document::{PositionExt, ToRangeExt}; use crate::server::api::traits::{ BackgroundDocumentRequestHandler, ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/goto_definition.rs
crates/ty_server/src/server/api/requests/goto_definition.rs
use std::borrow::Cow; use lsp_types::request::GotoDefinition; use lsp_types::{GotoDefinitionParams, GotoDefinitionResponse, Url}; use ty_ide::goto_definition; use ty_project::ProjectDatabase; use crate::document::{PositionExt, ToLink}; use crate::server::api::traits::{ BackgroundDocumentRequestHandler, RequestHan...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/goto_type_definition.rs
crates/ty_server/src/server/api/requests/goto_type_definition.rs
use std::borrow::Cow; use lsp_types::request::{GotoTypeDefinition, GotoTypeDefinitionParams}; use lsp_types::{GotoDefinitionResponse, Url}; use ty_ide::goto_type_definition; use ty_project::ProjectDatabase; use crate::document::{PositionExt, ToLink}; use crate::server::api::traits::{ BackgroundDocumentRequestHand...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_server/src/server/api/requests/signature_help.rs
crates/ty_server/src/server/api/requests/signature_help.rs
use std::borrow::Cow; use crate::document::{PositionEncoding, PositionExt}; use crate::server::api::traits::{ BackgroundDocumentRequestHandler, RequestHandler, RetriableRequestHandler, }; use crate::session::DocumentSnapshot; use crate::session::client::Client; use lsp_types::request::SignatureHelpRequest; use lsp...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false