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/ty_python_semantic/src/types/mro.rs
crates/ty_python_semantic/src/types/mro.rs
use std::collections::VecDeque; use std::ops::Deref; use indexmap::IndexMap; use rustc_hash::FxBuildHasher; use crate::Db; use crate::types::class_base::ClassBase; use crate::types::generics::Specialization; use crate::types::{ClassLiteral, ClassType, KnownClass, KnownInstanceType, SpecialFormType, Type}; /// The in...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/ide_support.rs
crates/ty_python_semantic/src/types/ide_support.rs
use std::collections::HashMap; use crate::FxIndexSet; use crate::place::builtins_module_scope; use crate::semantic_index::definition::Definition; use crate::semantic_index::definition::DefinitionKind; use crate::semantic_index::{attribute_scopes, global_scope, semantic_index, use_def_map}; use crate::types::call::{Cal...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/bound_super.rs
crates/ty_python_semantic/src/types/bound_super.rs
//! Logic for inferring `super()`, `super(x)` and `super(x, y)` calls. use itertools::{Either, Itertools}; use ruff_db::diagnostic::Diagnostic; use ruff_python_ast::AnyNodeRef; use crate::{ Db, DisplaySettings, place::{Place, PlaceAndQualifiers}, types::{ ClassBase, ClassType, DynamicType, Interse...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/class.rs
crates/ty_python_semantic/src/types/class.rs
use std::cell::RefCell; use std::fmt::Write; use std::sync::{LazyLock, Mutex}; use super::TypeVarVariance; use super::{ BoundTypeVarInstance, MemberLookupPolicy, Mro, MroError, MroIterator, SpecialFormType, SubclassOfType, Truthiness, Type, TypeQualifiers, class_base::ClassBase, function::FunctionType, }; ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/overrides.rs
crates/ty_python_semantic/src/types/overrides.rs
//! Checks relating to invalid method overrides in subclasses, //! including (but not limited to) violations of the [Liskov Substitution Principle]. //! //! [Liskov Substitution Principle]: https://en.wikipedia.org/wiki/Liskov_substitution_principle use bitflags::bitflags; use ruff_db::diagnostic::Annotation; use rust...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/enums.rs
crates/ty_python_semantic/src/types/enums.rs
use ruff_python_ast::name::Name; use rustc_hash::FxHashMap; use crate::{ Db, FxIndexMap, place::{Place, PlaceAndQualifiers, place_from_bindings, place_from_declarations}, semantic_index::{place_table, use_def_map}, types::{ ClassBase, ClassLiteral, DynamicType, EnumLiteralType, KnownClass, Memb...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/function.rs
crates/ty_python_semantic/src/types/function.rs
//! Contains representations of function literals. There are several complicating factors: //! //! - Functions can be generic, and can have specializations applied to them. These are not the //! same thing! For instance, a method of a generic class might not itself be generic, but it can //! still have the class's ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/narrow.rs
crates/ty_python_semantic/src/types/narrow.rs
use crate::Db; use crate::semantic_index::expression::Expression; use crate::semantic_index::place::{PlaceExpr, PlaceTable, ScopedPlaceId}; use crate::semantic_index::place_table; use crate::semantic_index::predicate::{ CallableAndCallExpr, ClassPatternKind, PatternPredicate, PatternPredicateKind, Predicate, Pr...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/subclass_of.rs
crates/ty_python_semantic/src/types/subclass_of.rs
use crate::place::PlaceAndQualifiers; use crate::semantic_index::definition::Definition; use crate::types::constraints::ConstraintSet; use crate::types::generics::InferableTypeVars; use crate::types::protocol_class::ProtocolClass; use crate::types::variance::VarianceInferable; use crate::types::{ ApplyTypeMappingVi...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/generics.rs
crates/ty_python_semantic/src/types/generics.rs
use std::cell::RefCell; use std::collections::hash_map::Entry; use std::fmt::Display; use itertools::{Either, Itertools}; use ruff_python_ast as ast; use ruff_python_ast::name::Name; use rustc_hash::{FxHashMap, FxHashSet}; use crate::semantic_index::definition::Definition; use crate::semantic_index::scope::{FileScope...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/display.rs
crates/ty_python_semantic/src/types/display.rs
//! Display implementations for types. use std::borrow::Cow; use std::cell::RefCell; use std::collections::hash_map::Entry; use std::fmt::{self, Display, Formatter, Write}; use std::rc::Rc; use ruff_db::files::FilePath; use ruff_db::source::line_index; use ruff_python_ast::str::{Quote, TripleQuotes}; use ruff_python_...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/tuple.rs
crates/ty_python_semantic/src/types/tuple.rs
//! Types describing fixed- and variable-length tuples. //! //! At runtime, a Python tuple is a fixed-length immutable list of values. There is no restriction //! on the types of the elements of a tuple value. In the type system, we want to model both //! "heterogeneous" tuples that have elements of a fixed sequence of...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/special_form.rs
crates/ty_python_semantic/src/types/special_form.rs
//! An enumeration of special forms in the Python type system. //! Each of these is considered to inhabit a unique type in our model of the type system. use super::{ClassType, Type, class::KnownClass}; use crate::db::Db; use crate::semantic_index::place::ScopedPlaceId; use crate::semantic_index::{FileScopeId, place_ta...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/variance.rs
crates/ty_python_semantic/src/types/variance.rs
use crate::{Db, types::BoundTypeVarInstance}; #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq, salsa::Update, get_size2::GetSize)] pub enum TypeVarVariance { Invariant, Covariant, Contravariant, Bivariant, } impl TypeVarVariance { pub const fn bottom() -> Self { TypeVarVariance::Bivariant...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/property_tests.rs
crates/ty_python_semantic/src/types/property_tests.rs
//! This module contains quickcheck-based property tests for `Type`s. //! //! These tests are disabled by default, as they are non-deterministic and slow. You can //! run them explicitly using: //! //! ```sh //! cargo test -p ty_python_semantic -- --ignored types::property_tests::stable //! ``` //! //! The number of te...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/definition.rs
crates/ty_python_semantic/src/types/definition.rs
use crate::Db; use crate::semantic_index::definition::Definition; use ruff_db::files::FileRange; use ruff_db::parsed::parsed_module; use ruff_db::source::source_text; use ruff_text_size::{TextLen, TextRange}; use ty_module_resolver::Module; #[derive(Debug, PartialEq, Eq, Hash)] pub enum TypeDefinition<'db> { Modul...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/type_ordering.rs
crates/ty_python_semantic/src/types/type_ordering.rs
use std::cmp::Ordering; use salsa::plumbing::AsId; use crate::{db::Db, types::bound_super::SuperOwnerKind}; use super::{ DynamicType, TodoType, Type, TypeGuardLike, TypeGuardType, TypeIsType, class_base::ClassBase, subclass_of::SubclassOfInner, }; /// Return an [`Ordering`] that describes the canonical orde...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/constraints.rs
crates/ty_python_semantic/src/types/constraints.rs
//! Constraints under which type properties hold //! //! For "concrete" types (which contain no type variables), type properties like assignability have //! simple answers: one type is either assignable to another type, or it isn't. (The _rules_ for //! comparing two particular concrete types can be rather complex, but...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/typed_dict.rs
crates/ty_python_semantic/src/types/typed_dict.rs
use std::cmp::Ordering; use std::collections::BTreeMap; use std::ops::{Deref, DerefMut}; use bitflags::bitflags; use ruff_db::diagnostic::{Annotation, Diagnostic, Span, SubDiagnostic, SubDiagnosticSeverity}; use ruff_db::parsed::parsed_module; use ruff_python_ast::Arguments; use ruff_python_ast::{self as ast, AnyNodeR...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/unpacker.rs
crates/ty_python_semantic/src/types/unpacker.rs
use std::borrow::Cow; use ruff_db::parsed::ParsedModuleRef; use rustc_hash::FxHashMap; use ruff_python_ast::{self as ast, AnyNodeRef}; use crate::Db; use crate::semantic_index::ast_ids::node_key::ExpressionNodeKey; use crate::semantic_index::scope::ScopeId; use crate::types::tuple::{ResizeTupleError, Tuple, TupleLen...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/member.rs
crates/ty_python_semantic/src/types/member.rs
use crate::Db; use crate::place::{ ConsideredDefinitions, Place, PlaceAndQualifiers, RequiresExplicitReExport, place_by_id, place_from_bindings, }; use crate::semantic_index::{place_table, scope::ScopeId, use_def_map}; use crate::types::Type; /// The return type of certain member-lookup operations. Contains in...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/context.rs
crates/ty_python_semantic/src/types/context.rs
use std::fmt; use drop_bomb::DebugDropBomb; use ruff_db::diagnostic::{DiagnosticTag, SubDiagnostic, SubDiagnosticSeverity}; use ruff_db::parsed::ParsedModuleRef; use ruff_db::{ diagnostic::{Annotation, Diagnostic, DiagnosticId, IntoDiagnosticMessage, Severity, Span}, files::File, }; 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_python_semantic/src/types/instance.rs
crates/ty_python_semantic/src/types/instance.rs
//! Instance types: both nominal and structural. use std::borrow::Cow; use std::marker::PhantomData; use super::protocol_class::ProtocolInterface; use super::{BoundTypeVarInstance, ClassType, KnownClass, SubclassOfType, Type, TypeVarVariance}; use crate::place::PlaceAndQualifiers; use crate::semantic_index::definitio...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/protocol_class.rs
crates/ty_python_semantic/src/types/protocol_class.rs
use std::fmt::Write; use std::{collections::BTreeMap, ops::Deref}; use itertools::Itertools; use ruff_python_ast::name::Name; use rustc_hash::FxHashMap; use crate::types::{CallableTypeKind, TypeContext}; use crate::{ Db, FxOrderSet, place::{Definedness, Place, PlaceAndQualifiers, place_from_bindings, place_f...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/diagnostic.rs
crates/ty_python_semantic/src/types/diagnostic.rs
use super::call::CallErrorKind; use super::context::InferContext; use super::mro::DuplicateBaseError; use super::{ CallArguments, CallDunderError, ClassBase, ClassLiteral, KnownClass, add_inferred_python_version_hint_to_diagnostic, }; use crate::diagnostic::did_you_mean; use crate::diagnostic::format_enumeratio...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/string_annotation.rs
crates/ty_python_semantic/src/types/string_annotation.rs
use ruff_db::source::source_text; use ruff_python_ast::{self as ast, ModExpression}; use ruff_python_parser::Parsed; use ruff_text_size::Ranged; use crate::declare_lint; use crate::lint::{Level, LintStatus}; use super::context::InferContext; declare_lint! { /// ## What it does /// Checks for f-strings in typ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/call/bind.rs
crates/ty_python_semantic/src/types/call/bind.rs
//! When analyzing a call site, we create _bindings_, which match and type-check the actual //! arguments against the parameters of the callable. Like with //! [signatures][crate::types::signatures], we have to handle the fact that the callable might be a //! union of types, each of which might contain multiple overloa...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/call/arguments.rs
crates/ty_python_semantic/src/types/call/arguments.rs
use std::borrow::Cow; use std::fmt::Display; use itertools::{Either, Itertools}; use ruff_python_ast as ast; use crate::Db; use crate::types::KnownClass; use crate::types::enums::{enum_member_literals, enum_metadata}; use crate::types::tuple::{Tuple, TupleType}; use super::Type; #[derive(Clone, Copy, Debug)] pub(cr...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/infer/builder.rs
crates/ty_python_semantic/src/types/infer/builder.rs
use std::iter; use itertools::{Either, EitherOrBoth, Itertools}; use ruff_db::diagnostic::{Annotation, Diagnostic, DiagnosticId, Severity, Span}; use ruff_db::files::File; use ruff_db::parsed::{ParsedModuleRef, parsed_module}; use ruff_db::source::source_text; use ruff_python_ast::visitor::{Visitor, walk_expr}; use ru...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/infer/tests.rs
crates/ty_python_semantic/src/types/infer/tests.rs
use super::builder::TypeInferenceBuilder; use crate::db::tests::{TestDb, setup_db}; use crate::place::symbol; use crate::place::{ConsideredDefinitions, Place, global_symbol}; use crate::semantic_index::definition::Definition; use crate::semantic_index::scope::FileScopeId; use crate::semantic_index::{global_scope, place...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/infer/builder/type_expression.rs
crates/ty_python_semantic/src/types/infer/builder/type_expression.rs
use itertools::Either; use ruff_python_ast as ast; use super::{DeferredExpressionState, TypeInferenceBuilder}; use crate::FxOrderSet; use crate::semantic_index::semantic_index; use crate::types::diagnostic::{ self, INVALID_TYPE_FORM, NOT_SUBSCRIPTABLE, report_invalid_argument_number_to_special_form, report_inv...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/infer/builder/annotation_expression.rs
crates/ty_python_semantic/src/types/infer/builder/annotation_expression.rs
use ruff_python_ast as ast; use super::{DeferredExpressionState, TypeInferenceBuilder}; use crate::place::TypeOrigin; use crate::types::diagnostic::{INVALID_TYPE_FORM, report_invalid_arguments_to_annotated}; use crate::types::string_annotation::{ BYTE_STRING_TYPE_ANNOTATION, FSTRING_TYPE_ANNOTATION, parse_string_a...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/property_tests/setup.rs
crates/ty_python_semantic/src/types/property_tests/setup.rs
use crate::db::tests::{TestDb, setup_db}; use std::sync::{Arc, Mutex, OnceLock}; static CACHED_DB: OnceLock<Arc<Mutex<TestDb>>> = OnceLock::new(); pub(crate) fn get_cached_db() -> TestDb { let db = CACHED_DB.get_or_init(|| Arc::new(Mutex::new(setup_db()))); db.lock().unwrap().clone() }
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/types/property_tests/type_generation.rs
crates/ty_python_semantic/src/types/property_tests/type_generation.rs
use crate::Db; use crate::db::tests::TestDb; use crate::place::{builtins_symbol, known_module_symbol}; use crate::types::enums::is_single_member_enum; use crate::types::tuple::TupleType; use crate::types::{ BoundMethodType, EnumLiteralType, IntersectionBuilder, IntersectionType, KnownClass, Parameter, Parameter...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/builder.rs
crates/ty_python_semantic/src/semantic_index/builder.rs
use std::cell::{OnceCell, RefCell}; use std::sync::Arc; use except_handlers::TryNodeContextStackManager; use rustc_hash::{FxHashMap, FxHashSet}; use ruff_db::files::File; use ruff_db::parsed::ParsedModuleRef; use ruff_db::source::{SourceText, source_text}; use ruff_index::IndexVec; use ruff_python_ast::name::Name; us...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/place.rs
crates/ty_python_semantic/src/semantic_index/place.rs
use crate::semantic_index::member::{ Member, MemberExpr, MemberExprRef, MemberTable, MemberTableBuilder, ScopedMemberId, }; use crate::semantic_index::scope::FileScopeId; use crate::semantic_index::symbol::{ScopedSymbolId, Symbol, SymbolTable, SymbolTableBuilder}; use ruff_index::IndexVec; use ruff_python_ast as as...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/use_def.rs
crates/ty_python_semantic/src/semantic_index/use_def.rs
//! First, some terminology: //! //! * A "place" is semantically a location where a value can be read or written, and syntactically, //! an expression that can be the target of an assignment, e.g. `x`, `x[0]`, `x.y`. (The term is //! borrowed from Rust). In Python syntax, an expression like `f().x` is also allowed ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/reachability_constraints.rs
crates/ty_python_semantic/src/semantic_index/reachability_constraints.rs
//! # Reachability constraints //! //! During semantic index building, we record so-called reachability constraints that keep track //! of a set of conditions that need to apply in order for a certain statement or expression to //! be reachable from the start of the scope. As an example, consider the following situatio...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/predicate.rs
crates/ty_python_semantic/src/semantic_index/predicate.rs
//! _Predicates_ are Python expressions whose runtime values can affect type inference. //! //! We currently use predicates in two places: //! //! - [_Narrowing constraints_][crate::semantic_index::narrowing_constraints] constrain the type of //! a binding that is visible at a particular use. //! - [_Reachability con...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/narrowing_constraints.rs
crates/ty_python_semantic/src/semantic_index/narrowing_constraints.rs
//! # Narrowing constraints //! //! When building a semantic index for a file, we associate each binding with a _narrowing //! constraint_, which constrains the type of the binding's place. Note that a binding can be //! associated with a different narrowing constraint at different points in a file. See the //! [`use_d...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/expression.rs
crates/ty_python_semantic/src/semantic_index/expression.rs
use crate::ast_node_ref::AstNodeRef; use crate::db::Db; use crate::semantic_index::scope::{FileScopeId, ScopeId}; use ruff_db::files::File; use ruff_db::parsed::ParsedModuleRef; use ruff_python_ast as ast; use salsa; /// Whether or not this expression should be inferred as a normal expression or /// a type expression....
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/scope.rs
crates/ty_python_semantic/src/semantic_index/scope.rs
use std::ops::Range; use ruff_db::{files::File, parsed::ParsedModuleRef}; use ruff_index::newtype_index; use ruff_python_ast as ast; use crate::{ Db, ast_node_ref::AstNodeRef, node_key::NodeKey, semantic_index::{ SemanticIndex, reachability_constraints::ScopedReachabilityConstraintId, semantic...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/definition.rs
crates/ty_python_semantic/src/semantic_index/definition.rs
use std::ops::Deref; use ruff_db::files::{File, FileRange}; use ruff_db::parsed::{ParsedModuleRef, parsed_module}; use ruff_python_ast::find_node::covering_node; use ruff_python_ast::traversal::suite; use ruff_python_ast::{self as ast, AnyNodeRef, Expr}; use ruff_text_size::{Ranged, TextRange}; use crate::Db; use cra...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/re_exports.rs
crates/ty_python_semantic/src/semantic_index/re_exports.rs
//! A visitor and query to find all global-scope symbols that are exported from a module //! when a wildcard import is used. //! //! For example, if a module `foo` contains `from bar import *`, which symbols from the global //! scope of `bar` are imported into the global namespace of `foo`? //! //! ## Why is this a sep...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/member.rs
crates/ty_python_semantic/src/semantic_index/member.rs
use bitflags::bitflags; use hashbrown::hash_table::Entry; use ruff_index::{IndexVec, newtype_index}; use ruff_python_ast::{self as ast, name::Name}; use ruff_text_size::{TextLen as _, TextRange, TextSize}; use rustc_hash::FxHasher; use smallvec::SmallVec; use std::hash::{Hash, Hasher as _}; use std::ops::{Deref, DerefM...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/ast_ids.rs
crates/ty_python_semantic/src/semantic_index/ast_ids.rs
use rustc_hash::FxHashMap; use ruff_index::newtype_index; use ruff_python_ast as ast; use ruff_python_ast::ExprRef; use crate::Db; use crate::semantic_index::ast_ids::node_key::ExpressionNodeKey; use crate::semantic_index::scope::ScopeId; use crate::semantic_index::semantic_index; /// AST ids for a single scope. ///...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/symbol.rs
crates/ty_python_semantic/src/semantic_index/symbol.rs
use bitflags::bitflags; use hashbrown::hash_table::Entry; use ruff_index::{IndexVec, newtype_index}; use ruff_python_ast::name::Name; use rustc_hash::FxHasher; use std::hash::{Hash as _, Hasher as _}; use std::ops::{Deref, DerefMut}; /// Uniquely identifies a symbol in a given scope. #[newtype_index] #[derive(get_size...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/use_def/place_state.rs
crates/ty_python_semantic/src/semantic_index/use_def/place_state.rs
//! Track live bindings per place, applicable constraints per binding, and live declarations. //! //! These data structures operate entirely on scope-local newtype-indices for definitions and //! constraints, referring to their location in the `all_definitions` and `all_constraints` //! indexvecs in [`super::UseDefMapB...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/semantic_index/builder/except_handlers.rs
crates/ty_python_semantic/src/semantic_index/builder/except_handlers.rs
use crate::semantic_index::use_def::FlowSnapshot; use super::SemanticIndexBuilder; /// An abstraction over the fact that each scope should have its own [`TryNodeContextStack`] #[derive(Debug, Default)] pub(super) struct TryNodeContextStackManager(Vec<TryNodeContextStack>); impl TryNodeContextStackManager { /// P...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/suppression/unused.rs
crates/ty_python_semantic/src/suppression/unused.rs
use ruff_db::source::source_text; use ruff_diagnostics::{Edit, Fix}; use ruff_text_size::{TextLen, TextRange, TextSize}; use std::fmt::Write as _; use crate::lint::LintId; use crate::suppression::{ CheckSuppressionsContext, Suppression, SuppressionTarget, UNUSED_IGNORE_COMMENT, }; /// Checks for unused suppressio...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/suppression/parser.rs
crates/ty_python_semantic/src/suppression/parser.rs
use std::error::Error; use crate::suppression::SuppressionKind; use ruff_python_trivia::Cursor; use ruff_text_size::{TextLen, TextRange, TextSize}; use smallvec::{SmallVec, smallvec}; use thiserror::Error; pub(super) struct SuppressionParser<'src> { cursor: Cursor<'src>, range: TextRange, } impl<'src> Suppre...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/src/suppression/add_ignore.rs
crates/ty_python_semantic/src/suppression/add_ignore.rs
use ruff_db::files::File; use ruff_db::parsed::parsed_module; use ruff_db::source::source_text; use ruff_diagnostics::{Edit, Fix}; use ruff_python_ast::token::TokenKind; use ruff_text_size::{Ranged, TextLen, TextRange, TextSize}; use crate::Db; use crate::lint::LintId; use crate::suppression::{SuppressionTarget, suppr...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/tests/mdtest.rs
crates/ty_python_semantic/tests/mdtest.rs
use anyhow::anyhow; use camino::Utf8Path; use ty_static::EnvVars; use ty_test::OutputFormat; /// See `crates/ty_test/README.md` for documentation on these tests. #[expect(clippy::needless_pass_by_value)] fn mdtest(fixture_path: &Utf8Path, content: String) -> datatest_stable::Result<()> { let short_title = fixture_...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_python_semantic/tests/corpus.rs
crates/ty_python_semantic/tests/corpus.rs
use std::sync::Arc; use anyhow::{Context, anyhow}; use ruff_db::Db; use ruff_db::files::{File, Files, system_path_to_file}; use ruff_db::system::{DbWithTestSystem, System, SystemPath, SystemPathBuf, TestSystem}; use ruff_db::vendored::VendoredFileSystem; use ruff_python_ast::PythonVersion; use ty_module_resolver::Sea...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/round_trip.rs
crates/ruff_dev/src/round_trip.rs
//! Run round-trip source code generation on a given Python or Jupyter notebook file. use std::fs; use std::path::PathBuf; use anyhow::Result; use ruff_python_ast::PySourceType; use ruff_python_codegen::round_trip; #[derive(clap::Args)] pub(crate) struct Args { /// Python or Jupyter notebook file to round-trip....
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/generate_all.rs
crates/ruff_dev/src/generate_all.rs
//! Run all code and documentation generation steps. use anyhow::Result; use crate::{ generate_cli_help, generate_docs, generate_json_schema, generate_ty_cli_reference, generate_ty_env_vars_reference, generate_ty_options, generate_ty_rules, generate_ty_schema, }; pub(crate) const REGENERATE_ALL_COMMAND: &str...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/print_ast.rs
crates/ruff_dev/src/print_ast.rs
//! Print the AST for a given Python file. use std::path::PathBuf; use anyhow::Result; use ruff_linter::source_kind::SourceKind; use ruff_python_ast::PySourceType; use ruff_python_parser::{ParseOptions, parse}; #[derive(clap::Args)] pub(crate) struct Args { /// Python file for which to generate the AST. #[a...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/generate_ty_schema.rs
crates/ruff_dev/src/generate_ty_schema.rs
use std::fs; use std::path::PathBuf; use anyhow::{Result, bail}; use pretty_assertions::StrComparison; use schemars::generate::SchemaSettings; use crate::ROOT_DIR; use crate::generate_all::{Mode, REGENERATE_ALL_COMMAND}; use ty_project::metadata::options::Options; #[derive(clap::Args)] pub(crate) struct Args { /...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/generate_ty_options.rs
crates/ruff_dev/src/generate_ty_options.rs
//! Generate a Markdown-compatible listing of configuration options for `pyproject.toml`. use std::borrow::Cow; use std::{fmt::Write, path::PathBuf}; use anyhow::bail; use itertools::Itertools; use pretty_assertions::StrComparison; use ruff_options_metadata::{OptionField, OptionSet, OptionsMetadata, Visit}; use ruff_...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/print_tokens.rs
crates/ruff_dev/src/print_tokens.rs
//! Print the token stream for a given Python file. use std::path::PathBuf; use anyhow::Result; use ruff_linter::source_kind::SourceKind; use ruff_python_ast::PySourceType; use ruff_python_parser::parse_unchecked_source; #[derive(clap::Args)] pub(crate) struct Args { /// Python file for which to generate the AS...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/generate_json_schema.rs
crates/ruff_dev/src/generate_json_schema.rs
use std::fs; use std::path::PathBuf; use anyhow::{Result, bail}; use pretty_assertions::StrComparison; use schemars::generate::SchemaSettings; use crate::ROOT_DIR; use crate::generate_all::{Mode, REGENERATE_ALL_COMMAND}; use ruff_workspace::options::Options; #[derive(clap::Args)] pub(crate) struct Args { /// Wri...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/print_cst.rs
crates/ruff_dev/src/print_cst.rs
//! Print the `LibCST` CST for a given Python file. use std::fs; use std::path::PathBuf; use anyhow::{Result, bail}; #[derive(clap::Args)] pub(crate) struct Args { /// Python file for which to generate the CST. #[arg(required = true)] file: PathBuf, } pub(crate) fn main(args: &Args) -> Result<()> { ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/format_dev.rs
crates/ruff_dev/src/format_dev.rs
use std::fmt::{Display, Formatter}; use std::fs::File; use std::io::{BufWriter, Write}; use std::num::NonZeroU16; use std::ops::{Add, AddAssign}; use std::panic::catch_unwind; use std::path::{Path, PathBuf}; use std::process::ExitCode; use std::time::{Duration, Instant}; use std::{fmt, fs, io, iter}; use anyhow::{Cont...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/generate_docs.rs
crates/ruff_dev/src/generate_docs.rs
//! Generate Markdown documentation for applicable rules. use std::collections::HashSet; use std::fmt::Write as _; use std::fs; use std::path::PathBuf; use anyhow::Result; use itertools::Itertools; use regex::{Captures, Regex}; use ruff_linter::codes::RuleGroup; use strum::IntoEnumIterator; use ruff_linter::FixAvail...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/generate_options.rs
crates/ruff_dev/src/generate_options.rs
//! Generate a Markdown-compatible listing of configuration options for `pyproject.toml`. //! //! Used for <https://docs.astral.sh/ruff/settings/>. use itertools::Itertools; use std::fmt::Write; use ruff_options_metadata::{OptionField, OptionSet, OptionsMetadata, Visit}; use ruff_python_trivia::textwrap; use ruff_work...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/generate_ty_cli_reference.rs
crates/ruff_dev/src/generate_ty_cli_reference.rs
//! Generate a Markdown-compatible reference for the ty command-line interface. use std::cmp::max; use std::path::PathBuf; use anyhow::{Result, bail}; use clap::{Command, CommandFactory}; use itertools::Itertools; use pretty_assertions::StrComparison; use crate::ROOT_DIR; use crate::generate_all::{Mode, REGENERATE_AL...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/main.rs
crates/ruff_dev/src/main.rs
//! This crate implements an internal CLI for developers of Ruff. //! //! Within the ruff repository you can run it with `cargo dev`. #![allow(clippy::print_stdout, clippy::print_stderr)] use anyhow::Result; use clap::{Parser, Subcommand}; use ruff::{args::GlobalConfigArgs, check}; use ruff_linter::logging::set_up_lo...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/generate_cli_help.rs
crates/ruff_dev/src/generate_cli_help.rs
//! Generate CLI help. use std::path::PathBuf; use std::{fs, str}; use anyhow::{Context, Result, bail}; use clap::CommandFactory; use pretty_assertions::StrComparison; use ruff::args; use crate::ROOT_DIR; use crate::generate_all::{Mode, REGENERATE_ALL_COMMAND}; const COMMAND_HELP_BEGIN_PRAGMA: &str = "<!-- Begin a...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/generate_ty_rules.rs
crates/ruff_dev/src/generate_ty_rules.rs
//! Generates the rules table for ty use std::borrow::Cow; use std::fmt::Write as _; use std::fs; use std::path::PathBuf; use anyhow::{Result, bail}; use itertools::Itertools as _; use pretty_assertions::StrComparison; use crate::ROOT_DIR; use crate::generate_all::{Mode, REGENERATE_ALL_COMMAND}; #[derive(clap::Args...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/generate_rules_table.rs
crates/ruff_dev/src/generate_rules_table.rs
//! Generate a Markdown-compatible table of supported lint rules. //! //! Used for <https://docs.astral.sh/ruff/rules/>. use itertools::Itertools; use ruff_linter::codes::RuleGroup; use std::borrow::Cow; use std::fmt::Write; use strum::IntoEnumIterator; use ruff_linter::FixAvailability; use ruff_linter::registry::{Li...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_dev/src/generate_ty_env_vars_reference.rs
crates/ruff_dev/src/generate_ty_env_vars_reference.rs
//! Generate the environment variables reference from `ty_static::EnvVars`. use std::collections::BTreeSet; use std::fs; use std::path::PathBuf; use anyhow::bail; use pretty_assertions::StrComparison; use ty_static::EnvVars; use crate::generate_all::Mode; #[derive(clap::Args)] pub(crate) struct Args { #[arg(lo...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_source_file/src/lib.rs
crates/ruff_source_file/src/lib.rs
use std::cmp::Ordering; use std::fmt::{Debug, Display, Formatter}; use std::hash::Hash; use std::sync::{Arc, OnceLock}; #[cfg(feature = "serde")] use serde::{Deserialize, Serialize}; use ruff_text_size::{Ranged, TextRange, TextSize}; pub use crate::line_index::{LineIndex, OneIndexed, PositionEncoding}; pub 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_source_file/src/line_index.rs
crates/ruff_source_file/src/line_index.rs
use std::fmt; use std::fmt::{Debug, Formatter}; use std::num::{NonZeroUsize, ParseIntError}; use std::ops::Deref; use std::str::FromStr; use std::sync::Arc; use crate::{LineColumn, SourceLocation}; use ruff_text_size::{TextLen, TextRange, TextSize}; #[cfg(feature = "serde")] use serde::{Deserialize, Serialize}; /// I...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_source_file/src/line_ranges.rs
crates/ruff_source_file/src/line_ranges.rs
use crate::find_newline; use memchr::{memchr2, memrchr2}; use ruff_text_size::{TextLen, TextRange, TextSize}; use std::ops::Add; /// Extension trait for [`str`] that provides methods for working with ranges of lines. pub trait LineRanges { /// Computes the start position of the line of `offset`. /// /// ##...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_source_file/src/newlines.rs
crates/ruff_source_file/src/newlines.rs
use std::iter::FusedIterator; use std::ops::Deref; use memchr::{memchr2, memrchr2}; use ruff_text_size::{TextLen, TextRange, TextSize}; /// Extension trait for [`str`] that provides a [`UniversalNewlineIterator`]. pub trait UniversalNewlines { fn universal_newlines(&self) -> UniversalNewlineIterator<'_>; } impl ...
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/linter.rs
crates/ruff_linter/src/linter.rs
use std::borrow::Cow; use std::path::Path; use anyhow::{Result, anyhow}; use colored::Colorize; use itertools::Itertools; use ruff_python_parser::semantic_errors::SemanticSyntaxError; use rustc_hash::FxBuildHasher; use ruff_db::diagnostic::{Diagnostic, SecondaryCode}; use ruff_notebook::Notebook; use ruff_python_ast:...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/text_helpers.rs
crates/ruff_linter/src/text_helpers.rs
use std::borrow::Cow; pub(crate) trait ShowNonprinting { fn show_nonprinting(&self) -> Cow<'_, str>; } macro_rules! impl_show_nonprinting { ($(($from:expr, $to:expr)),+) => { impl ShowNonprinting for str { fn show_nonprinting(&self) -> Cow<'_, str> { if self.find(&[$($from)...
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/test.rs
crates/ruff_linter/src/test.rs
#![cfg(any(test, fuzzing))] //! Helper functions for the tests of rule implementations. use std::borrow::Cow; use std::fmt; use std::path::Path; #[cfg(not(fuzzing))] use anyhow::Result; use itertools::Itertools; use rustc_hash::FxHashMap; use ruff_db::diagnostic::{ Diagnostic, DiagnosticFormat, DisplayDiagnostic...
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/lib.rs
crates/ruff_linter/src/lib.rs
//! This is the library for the [Ruff] Python linter. //! //! **The API is currently completely unstable** //! and subject to change drastically. //! //! [Ruff]: https://github.com/astral-sh/ruff pub use locator::Locator; pub use noqa::generate_noqa_edits; #[cfg(feature = "clap")] pub use registry::clap_completion::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/upstream_categories.rs
crates/ruff_linter/src/upstream_categories.rs
//! This module should probably not exist in this shape or form. use crate::codes::Rule; use crate::registry::Linter; #[derive(Hash, Eq, PartialEq, Copy, Clone, Debug)] pub struct UpstreamCategoryAndPrefix { pub category: &'static str, pub prefix: &'static str, } const C: UpstreamCategoryAndPrefix = UpstreamC...
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/doc_lines.rs
crates/ruff_linter/src/doc_lines.rs
//! Doc line extraction. In this context, a doc line is a line consisting of a //! standalone comment or a constant string statement. use std::iter::FusedIterator; use std::slice::Iter; use ruff_python_ast::statement_visitor::{StatementVisitor, walk_stmt}; use ruff_python_ast::token::{Token, TokenKind, Tokens}; use r...
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/rule_redirects.rs
crates/ruff_linter/src/rule_redirects.rs
use std::collections::HashMap; use std::sync::LazyLock; /// Returns the redirect target for the given code. pub(crate) fn get_redirect_target(code: &str) -> Option<&'static str> { REDIRECTS.get(code).copied() } /// Returns the code and the redirect target if the given code is a redirect. /// (The same code is ret...
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/suppression.rs
crates/ruff_linter/src/suppression.rs
use compact_str::CompactString; use core::fmt; use ruff_db::diagnostic::Diagnostic; use ruff_diagnostics::{Edit, Fix}; use ruff_python_ast::token::{TokenKind, Tokens}; use ruff_python_ast::whitespace::indentation; use rustc_hash::FxHashSet; use std::cell::Cell; use std::{error::Error, fmt::Formatter}; use thiserror::Er...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/packaging.rs
crates/ruff_linter/src/packaging.rs
//! Detect Python package roots and file associations. use std::path::{Path, PathBuf}; // If we have a Python package layout like: // - root/ // - foo/ // - __init__.py // - bar.py // - baz/ // - __init__.py // - qux.py // // Then today, if you run with defaults (`src = ["."]`) from `root`, ...
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/locator.rs
crates/ruff_linter/src/locator.rs
//! Struct used to efficiently slice source code at (row, column) Locations. use std::cell::OnceCell; use ruff_source_file::{LineColumn, LineIndex, LineRanges, OneIndexed, SourceCode}; use ruff_text_size::{Ranged, TextLen, TextRange, TextSize}; #[derive(Debug)] pub struct Locator<'a> { contents: &'a str, ind...
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/fs.rs
crates/ruff_linter/src/fs.rs
use std::path::{Path, PathBuf}; use path_absolutize::Absolutize; use crate::registry::RuleSet; use crate::settings::types::CompiledPerFileIgnoreList; /// Return the current working directory. /// /// On WASM this just returns `.`. Otherwise, defer to [`path_absolutize::path_dedot::CWD`]. pub fn get_cwd() -> &'static...
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/codes.rs
crates/ruff_linter/src/codes.rs
/// In this module we generate [`Rule`], an enum of all rules, and [`RuleCodePrefix`], an enum of /// all rules categories. A rule category is something like pyflakes or flake8-todos. Each rule /// category contains all rules and their common prefixes, i.e. everything you can specify in /// `--select`. For pylint this ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/renamer.rs
crates/ruff_linter/src/renamer.rs
//! Code modification struct to support symbol renaming within a scope. use anyhow::{Result, anyhow}; use itertools::Itertools; use ruff_python_ast as ast; use ruff_python_codegen::Stylist; use ruff_python_semantic::{Binding, BindingKind, Scope, ScopeId, SemanticModel}; use ruff_python_stdlib::{builtins::is_python_bu...
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/line_width.rs
crates/ruff_linter/src/line_width.rs
use std::error::Error; use std::fmt; use std::hash::Hasher; use std::num::{NonZeroU8, NonZeroU16, ParseIntError}; use std::str::FromStr; use serde::{Deserialize, Serialize}; use unicode_width::UnicodeWidthChar; use ruff_cache::{CacheKey, CacheKeyHasher}; use ruff_macros::CacheKey; use ruff_text_size::TextSize; /// T...
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/noqa.rs
crates/ruff_linter/src/noqa.rs
use std::collections::BTreeMap; use std::error::Error; use std::fmt::Display; use std::fs; use std::ops::Add; use std::path::Path; use anyhow::Result; use itertools::Itertools; use log::warn; use ruff_db::diagnostic::{Diagnostic, SecondaryCode}; use ruff_python_trivia::{CommentRanges, Cursor, indentation_at_offset}; ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_linter/src/rule_selector.rs
crates/ruff_linter/src/rule_selector.rs
use std::str::FromStr; use serde::de::{self, Visitor}; use serde::{Deserialize, Serialize}; use strum::IntoEnumIterator; use strum_macros::EnumIter; use crate::codes::RuleIter; use crate::codes::{RuleCodePrefix, RuleGroup}; use crate::registry::{Linter, Rule, RuleNamespace}; use crate::rule_redirects::get_redirect; u...
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.rs
crates/ruff_linter/src/registry.rs
//! Remnant of the registry of all [`Rule`] implementations, now it's reexporting from codes.rs //! with some helper symbols use ruff_db::diagnostic::LintName; use strum_macros::EnumIter; pub use codes::Rule; use ruff_macros::RuleNamespace; pub use rule_set::{RuleSet, RuleSetIterator}; use crate::codes::{self}; mod...
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/directives.rs
crates/ruff_linter/src/directives.rs
//! Extract `# noqa`, `# isort: skip`, and `# TODO` directives from tokenized source. use std::iter::Peekable; use std::str::FromStr; use bitflags::bitflags; use ruff_python_ast::token::{TokenKind, Tokens}; use ruff_python_index::Indexer; use ruff_python_trivia::CommentRanges; use ruff_source_file::LineRanges; use r...
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/source_kind.rs
crates/ruff_linter/src/source_kind.rs
use std::fmt::Formatter; use std::io; use std::io::Write; use std::path::Path; use anyhow::Result; use similar::{ChangeTag, TextDiff}; use thiserror::Error; use ruff_diagnostics::SourceMap; use ruff_notebook::{Cell, Notebook, NotebookError}; use ruff_python_ast::PySourceType; use colored::Colorize; use crate::fs; u...
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/pyproject_toml.rs
crates/ruff_linter/src/pyproject_toml.rs
use colored::Colorize; use log::warn; use pyproject_toml::PyProjectToml; use ruff_text_size::{TextRange, TextSize}; use ruff_db::diagnostic::Diagnostic; use ruff_source_file::SourceFile; use crate::registry::Rule; use crate::rules::ruff::rules::InvalidPyprojectToml; use crate::settings::LinterSettings; use crate::{IO...
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/violation.rs
crates/ruff_linter/src/violation.rs
use std::fmt::{Debug, Display}; use serde::Serialize; use ruff_db::diagnostic::Diagnostic; use ruff_source_file::SourceFile; use ruff_text_size::TextRange; use crate::{ codes::{Rule, RuleGroup}, message::create_lint_diagnostic, }; #[derive(Debug, Copy, Clone, Serialize)] pub enum FixAvailability { Somet...
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/logging.rs
crates/ruff_linter/src/logging.rs
use std::fmt::{Display, Formatter}; use std::path::{Path, PathBuf}; use std::sync::{LazyLock, Mutex}; use anyhow::Result; use colored::Colorize; use fern; use log::Level; use ruff_python_parser::ParseError; use rustc_hash::FxHashSet; use ruff_source_file::{LineColumn, LineIndex, OneIndexed, SourceCode}; use crate::f...
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/package.rs
crates/ruff_linter/src/package.rs
use std::path::Path; /// The root directory of a Python package. #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum PackageRoot<'a> { /// A normal package root. Root { path: &'a Path }, /// A nested package root. That is, a package root that's a subdirectory (direct or indirect) of /// another Pytho...
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/preview.rs
crates/ruff_linter/src/preview.rs
//! Helpers to test if a specific preview style is enabled or not. //! //! The motivation for these functions isn't to avoid code duplication but to ease promoting preview behavior //! to stable. The challenge with directly checking the `preview` attribute of [`LinterSettings`] is that it is unclear //! which specific ...
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/docstrings/numpy.rs
crates/ruff_linter/src/docstrings/numpy.rs
//! Abstractions for NumPy-style docstrings. use crate::docstrings::sections::SectionKind; pub(crate) static NUMPY_SECTIONS: &[SectionKind] = &[ SectionKind::Attributes, SectionKind::Examples, SectionKind::Methods, SectionKind::Notes, SectionKind::Raises, SectionKind::References, SectionKi...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false