Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/astral-sh/ruff
/ functions
Functions
28,980 in github.com/astral-sh/ruff
⨍
Functions
28,980
◇
Types & classes
6,734
↳
Endpoints
82
↓ 20 callers
Function
contains_effect
Return `true` if the `Expr` contains an expression that appears to include a side-effect (like a function call). Accepts a closure that determines wh
crates/ruff_python_ast/src/helpers.rs:221
↓ 20 callers
Function
create_dir
Helper function to create a directory and all parent directories
crates/ruff_linter/src/rules/isort/categorize.rs:448
↓ 20 callers
Method
display
( self, db: &'db dyn Db, env: &'env ProgramEnvironment<'db>, )
crates/ty_python_semantic/src/types/display.rs:642
↓ 20 callers
Method
drain
(&mut self, range: R)
crates/ruff_index/src/vec.rs:42
↓ 20 callers
Method
expression_type
( &self, expression: impl Into<ExpressionNodeKey>, )
crates/ty_python_semantic/src/types/infer.rs:241
↓ 20 callers
Method
extend_from_slice
(&mut self, segments: &[&'a str])
crates/ruff_python_ast/src/name.rs:477
↓ 20 callers
Method
file_name
(&self)
crates/ty_project/src/watch.rs:73
↓ 20 callers
Method
file_type
(&self)
crates/ruff_db/src/system.rs:312
↓ 20 callers
Method
find_positional
Return the positional argument at the given index, or `None` if no such argument exists.
crates/ruff_python_ast/src/nodes.rs:3586
↓ 20 callers
Method
fmt
(&self, expression: &Expr, f: &mut PyFormatter)
crates/ruff_python_formatter/src/expression/mod.rs:76
↓ 20 callers
Function
indentation
( logical_line: &LogicalLine, prev_logical_line: Option<&LogicalLine>, indent_char: char, inde
crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/indentation.rs:269
↓ 20 callers
Method
is_disjoint_from
Return true if `self & other` should simplify to `Never`: if the intersection of the two types could never be inhabited by any possible runtime value.
crates/ty_python_semantic/src/types/relation.rs:868
↓ 20 callers
Method
is_trivia
(&self)
crates/ruff_python_ast/src/token.rs:437
↓ 20 callers
Method
iter
Returns an iterator over the fixes in the map, along with the file path.
crates/ruff/src/diagnostics.rs:141
↓ 20 callers
Method
kind
(&self)
crates/ty_ide/src/lib.rs:216
↓ 20 callers
Method
push
Pushes a new [`Binding`] and returns its [`BindingId`].
crates/ruff_python_semantic/src/binding.rs:466
↓ 20 callers
Method
range
(&self)
crates/ruff_linter/src/rules/pydoclint/rules/check_docstring.rs:486
↓ 20 callers
Function
remove_argument
Generic function to remove arguments or keyword arguments in function calls and class definitions. (For classes, `args` should be considered `bases`.)
crates/ruff_linter/src/fix/edits.rs:208
↓ 20 callers
Method
report_diagnostic
( &self, context: &CallDiagnosticContext<'_, '_, 'db, '_>, node: ast::AnyNodeRef,
crates/ty_python_semantic/src/types/call/bind.rs:8865
↓ 20 callers
Method
scope
(&self)
crates/ty_python_semantic/src/types/context.rs:206
↓ 20 callers
Method
suffix_elements
(&self)
crates/ty_python_semantic/src/types/tuple.rs:1136
↓ 20 callers
Method
to_notebook_or_file
(&self, db: &dyn Db)
crates/ty_server/src/session.rs:1420
↓ 20 callers
Method
trailing
(&self, node: T)
crates/ruff_python_formatter/src/comments/mod.rs:310
↓ 20 callers
Method
try_call
Calls `self`. Returns a [`CallError`] if `self` is (always or possibly) not callable, or if the arguments are not compatible with the formal parameter
crates/ty_python_semantic/src/types.rs:6692
↓ 20 callers
Method
visit
(&self, db: &'db dyn Db, item: T, compute: impl FnOnce() -> R)
crates/ty_python_semantic/src/types/cyclic.rs:375
↓ 19 callers
Method
ancestor_ids
Returns an iterator over all [`NodeId`] ancestors, starting from the given [`NodeId`].
crates/ruff_python_semantic/src/nodes.rs:63
↓ 19 callers
Method
as_str
(&self)
crates/ruff_db/src/diagnostic/mod.rs:956
↓ 19 callers
Method
as_str
(self)
crates/ruff_linter/src/rules/pyupgrade/rules/pep695/private_type_parameter.rs:81
↓ 19 callers
Function
bool
()
crates/ruff_linter/resources/test/fixtures/flake8_simplify/SIM210.py:12
↓ 19 callers
Method
bump
Consumes the next character
crates/ruff_python_trivia/src/cursor.rs:82
↓ 19 callers
Method
collect_publish_diagnostic_notifications
( &mut self, count: usize, )
crates/ty_server/tests/e2e/main.rs:557
↓ 19 callers
Method
current_statements
Returns an [`Iterator`] over the current statement hierarchy, from the current [`Stmt`] through to any parents.
crates/ruff_python_semantic/src/model.rs:1466
↓ 19 callers
Method
definition
(&self, id: ScopedDefinitionId)
crates/ty_python_core/src/use_def.rs:972
↓ 19 callers
Method
display_with
( self, db: &'db dyn Db, env: &'env ProgramEnvironment<'db>, settings: Display
crates/ty_python_semantic/src/types/display.rs:655
↓ 19 callers
Method
eat_char
(&mut self, c: char)
crates/ruff_python_trivia/src/cursor.rs:91
↓ 19 callers
Method
end_of_scope_symbol_bindings
( &self, symbol: ScopedSymbolId, )
crates/ty_python_core/src/use_def.rs:1004
↓ 19 callers
Method
finish
(self)
crates/ruff_python_formatter/src/comments/visitor.rs:613
↓ 19 callers
Method
following_node
Returns the node following the comment. The direct child node (ignoring lists) of the [`enclosing_node`](DecoratedComment::enclosing_node) that follo
crates/ruff_python_formatter/src/comments/visitor.rs:313
↓ 19 callers
Function
indentation_at_offset
Extract the leading indentation from a line.
crates/ruff_python_trivia/src/whitespace.rs:49
↓ 19 callers
Method
is_ascii
Returns `true` if the text only consists of ASCII characters
crates/ruff_source_file/src/line_index.rs:227
↓ 19 callers
Method
is_empty
(&self)
crates/ruff_annotate_snippets/src/snippet.rs:95
↓ 19 callers
Method
is_empty
(&self, snapshot: &ScratchSnapshot)
crates/ruff_python_parser/src/parser/scratch_buffer.rs:29
↓ 19 callers
Method
is_file
(self)
crates/ty_project/src/watch.rs:162
↓ 19 callers
Function
is_identifier
Returns `true` if a string is a valid Python identifier (e.g., variable name).
crates/ruff_python_stdlib/src/identifiers.rs:7
↓ 19 callers
Method
is_keyword_variadic
Returns `true` if this is a keyword-variadic parameter.
crates/ty_python_semantic/src/types/signatures.rs:5652
↓ 19 callers
Method
is_known
Returns whether this is a known class.
crates/ty_python_semantic/src/types/class.rs:739
↓ 19 callers
Method
is_language_services_disabled
(&self)
crates/ty_server/src/session/settings.rs:43
↓ 19 callers
Function
is_overload
Returns `true` if a function definition is an `@overload`.
crates/ruff_python_semantic/src/analyze/visibility.rs:30
↓ 19 callers
Method
is_string_literal_expr
(&self)
crates/ruff_python_ast/src/generated.rs:2318
↓ 19 callers
Method
is_typevartuple
(self, db: &'db dyn Db)
crates/ty_python_semantic/src/types/typevar.rs:291
↓ 19 callers
Method
load
Loads a reference to the parsed module. Note that holding on to the reference will prevent garbage collection of the AST. This method will reparse th
crates/ruff_db/src/parsed.rs:133
↓ 19 callers
Method
matches
Returns `true` if the given name matches any of the ignored patterns.
crates/ruff_linter/src/rules/pep8_naming/settings.rs:140
↓ 19 callers
Method
next
(&mut self)
crates/ruff_db/src/system/path.rs:979
↓ 19 callers
Method
paramspec_attr
(self, db: &'db dyn Db)
crates/ty_python_semantic/src/types/typevar.rs:1029
↓ 19 callers
Method
parse
Parses the content and returns its AST
crates/ruff_wasm/src/lib.rs:506
↓ 19 callers
Function
parse_suite
(source: &str)
crates/ruff_linter/src/rules/pylint/helpers.rs:414
↓ 19 callers
Method
path
Returns the relative path as specified by the user.
crates/ty_project/src/metadata/value.rs:52
↓ 19 callers
Method
pop
(&mut self)
crates/ty_python_semantic/src/types/constraints.rs:7035
↓ 19 callers
Function
predicate
(index: usize)
crates/ty_python_core/src/narrowing_constraints.rs:434
↓ 19 callers
Method
primary
Add a primary annotation with a message. If the message is empty, then an annotation without any message be created. See the docs on `TestEnvironmen
crates/ruff_db/src/diagnostic/render.rs:2750
↓ 19 callers
Function
process
(__debug__)
crates/ruff_linter/resources/test/fixtures/semantic_errors/write_to_debug.py:3
↓ 19 callers
Method
program_file
(self, db: &'db dyn Db, file: File)
crates/ty_python_core/src/program.rs:48
↓ 19 callers
Method
qualified_name
Returns the [`QualifiedName`] of the imported name (e.g., given `from foo import bar as baz`, returns `["foo", "bar"]`).
crates/ruff_python_semantic/src/imports.rs:60
↓ 19 callers
Method
range
Returns the [`TextRange`] for the diagnostic.
crates/ruff_db/src/diagnostic/mod.rs:520
↓ 19 callers
Function
render_docstring
(raw: &str)
crates/ty_ide/src/docstring/markdown/structured/rst.rs:834
↓ 19 callers
Method
resolver_file
Returns the resolver key for this file.
crates/ty_python_core/src/program_file.rs:85
↓ 19 callers
Method
seen_typing
(&self)
crates/ruff_python_semantic/src/model.rs:1716
↓ 19 callers
Method
source
(&self)
crates/ruff_linter/src/rules/pep8_naming/settings.rs:63
↓ 19 callers
Method
status
(&self)
crates/ty_python_semantic/src/lint.rs:134
↓ 19 callers
Method
stmt
Generate source code from a [`Stmt`].
crates/ruff_python_codegen/src/generator.rs:140
↓ 19 callers
Method
tokens
Returns all the tokens for the parsed output.
crates/ruff_python_parser/src/lib.rs:401
↓ 19 callers
Function
trailing
()
crates/ruff_python_formatter/src/comments/map.rs:643
↓ 19 callers
Method
try_call_dunder
Look up a dunder method on the meta-type of `self` and call it. Returns an `Err` if the dunder method can't be called, or the given arguments are not
crates/ty_python_semantic/src/types.rs:6715
↓ 19 callers
Method
ty
(self)
crates/ty_python_semantic/src/types/protocol_class.rs:1186
↓ 19 callers
Method
vendored
(&self)
crates/ty_module_resolver/src/resolve.rs:1831
↓ 19 callers
Function
walk_stmt
(visitor: &mut V, stmt: &'a Stmt)
crates/ruff_python_ast/src/visitor.rs:135
↓ 19 callers
Method
workspace_settings
Returns the client settings for the workspace that this document belongs to.
crates/ty_server/src/session.rs:1407
↓ 18 callers
Method
append
(self)
crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__regression.py:109
↓ 18 callers
Method
as_str
(self)
crates/ty_module_resolver/src/module.rs:415
↓ 18 callers
Method
binding_id
Returns the [`BindingId`] if this symbol resolves to a concrete binding.
crates/ruff_python_semantic/src/model.rs:44
↓ 18 callers
Method
bytes
Returns an iterator over the bytes of the concatenated bytestring.
crates/ruff_python_ast/src/nodes.rs:1908
↓ 18 callers
Method
class
(&self, db: &'db dyn Db, env: &ProgramEnvironment<'db>)
crates/ty_python_semantic/src/types/instance.rs:264
↓ 18 callers
Method
close
Closes the virtual file.
crates/ruff_db/src/files.rs:629
↓ 18 callers
Method
constraint_data
(&self, constraint: ConstraintId)
crates/ty_python_semantic/src/types/constraints.rs:1400
↓ 18 callers
Method
contents
Return the underlying source code.
crates/ruff_linter/src/locator.rs:106
↓ 18 callers
Method
default_type
( self, db: &'db dyn Db, env: &ProgramEnvironment<'db>, )
crates/ty_python_semantic/src/types/typevar.rs:363
↓ 18 callers
Method
element_type
(self, _db: &'db dyn Db)
crates/ty_python_semantic/src/types/tuple.rs:806
↓ 18 callers
Method
enter_node
(&mut self, node: T)
crates/ruff_python_ast_integration_tests/tests/visitor.rs:205
↓ 18 callers
Method
exit_node
(&mut self)
crates/ruff_python_ast_integration_tests/tests/visitor.rs:213
↓ 18 callers
Method
explicit_extra_items
Returns extra items only when they were explicitly declared. An implicitly open `TypedDict` returns `None` here because its hidden items are not dire
crates/ty_python_semantic/src/types/typed_dict.rs:96
↓ 18 callers
Method
file
(&self)
crates/ty_python_semantic/src/lint.rs:138
↓ 18 callers
Method
files
Returns the files belonging to this project.
crates/ty_project/src/lib.rs:614
↓ 18 callers
Method
finish
(&mut self)
crates/ruff_db/src/display.rs:38
↓ 18 callers
Method
finish
(self)
crates/ruff_linter/src/rules/pydoclint/rules/check_docstring.rs:915
↓ 18 callers
Method
focus_range
Returns the [`FileRange`] of the function's name.
crates/ty_python_semantic/src/types/function.rs:426
↓ 18 callers
Method
has_leading
(&self, node: T)
crates/ruff_python_formatter/src/comments/mod.rs:272
↓ 18 callers
Method
inference_flags
(&self)
crates/ty_python_semantic/src/types/infer/builder.rs:11604
↓ 18 callers
Method
insert
(mut self, insert: impl Into<CompactString>)
crates/ty_ide/src/completion.rs:583
↓ 18 callers
Method
interior_node_data
(&self, node: NodeId)
crates/ty_python_semantic/src/types/constraints.rs:1488
↓ 18 callers
Method
into_iter
(self)
crates/ty_project/src/lib.rs:820
← previous
next →
701–800 of 28,980, ranked by callers