Linting And Formatting

Code style and quality rules for NeMo AutoModel — ruff configuration, naming conventions, type hints, docstrings, copyright headers, and the code review checklist.

71OpxScoreProvisional
Community resultNot enough feedback0 votes
Model evidenceNo verified tests
ClaudeLlama

Score breakdown

Estimated from the available content and source signals.

Provisional
Documentation77
Practical value68
Evidence63
Source trust72

Model compatibility

Inferred fit is not the same as a recorded hands-on test.

ClaudeinferredThe skill text mentions Claude or a closely associated term.
LlamainferredThe skill text mentions Llama or a closely associated term.
ChatGPTuntestedNo model-specific signal or recorded compatibility test was found.
GeminiuntestedNo model-specific signal or recorded compatibility test was found.
CopilotuntestedNo model-specific signal or recorded compatibility test was found.
PerplexityuntestedNo model-specific signal or recorded compatibility test was found.
MistraluntestedNo model-specific signal or recorded compatibility test was found.
GrokuntestedNo model-specific signal or recorded compatibility test was found.

Overview

Linting and Formatting

Single source of truth for code style in NeMo AutoModel. Read this before writing new code or reviewing PRs.

Formatting and Linting

Run before every commit:

# Auto-format all source files (line length, quotes, trailing commas, etc.)
ruff format .

# Lint and auto-fix what can be fixed (unused imports, isort, etc.)
ruff check --fix .

To check without modifying files:

ruff format --check .   # exits non-zero if any file would change
ruff check .            # exits non-zero on lint violations
bandit -r app.py nemo_automodel examples scripts tools tutorials -t B614

To lint a single file or directory:

ruff format nemo_automodel/components/models/llama/model.py
ruff check --fix nemo_automodel/components/models/llama/

What linting enforces (from pyproject.toml)

RuleIDDescription
Line length120 characters (formatter)
Quote styleDouble quotes
Unused importsF401Auto-removed by --fix (ignored in __init__.py)
Unused variablesF841Auto-removed by --fix
Undefined namesF821Error
f-string without placeholdersF541Error
Import sortingIisort-compatible ordering, auto-fixed
Docstring conventionD101/D103Google style (currently ignored — selected then suppressed)
No pickleS301/S403Security: forbids pickle.load
Restricted PyTorch loadB614Requires explicit weights_only=True for torch.load
Ambiguous variable namesE741Error (e.g., l, O, I)

Tests (tests/) are excluded from Ruff and Bandit checks. Docstring rules (D) are also relaxed in test files.

Type Hints

Required on all public API functions and methods.

  • Use T | None instead of Optional[T]
  • Use X | Y instead of Union[X, Y]
  • Use built-in generics (list, dict, tuple) instead of typing equivalents

Docstrings

Google-style where docstrings are added:

def build_model(config: dict) -> torch.nn.Module:
    """Instantiate and shard the model from config.

    Args:
        config: Mapping with _target_ and model hyperparameters.

    Returns:
        Fully initialized model ready for distributed training.
    """

NVIDIA Copyright Header

Every Python file must start with the NVIDIA copyright block. Do not remove or modify it. Use the current year (2026).

# Copyright (c) 2026, NVIDIA CORPORATION.  All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

Additional Style Conventions

  • Explicit over implicit. Inline logic where possible; avoid hiding behavior behind unnecessary layers of indirection.
  • No speculative abstractions. Do not add features, parameters, or generalization beyond what is explicitly asked for.
  • Optional dependencies must be guarded with safe_import() from nemo_automodel.shared.import_utils. Never let an optional import crash module loading.
  • Components must not import each other — enforced by import-linter (see pyproject.toml).

Code Review Checklist

  1. Copyright header present on all new Python files
  2. Type hints on all public functions and methods
  3. Docstrings on public classes and functions (Google style)
  4. Double quotes for strings
  5. No bare print() — use logging.getLogger(__name__)
  6. No commented-out code without explanation
  7. Optional imports guarded with safe_import()
  8. No cross-component imports between components/ subdirectories

Automated Review

The review-only maintainability heuristics and thresholds live in .github/workflows/claude-review.yml. Keep repository-wide coding rules here and automated-review prompt policy there so the detailed checklist has one source of truth.

Best for

  • Use Linting And Formatting when this documented workflow matches the task.

Tips and best practices

  • Review the source instructions and adapt inputs before running the workflow.

What This Skill Can Do

AI-generated examples showing real capabilities

Was this skill useful?

Be the first to share a result.

Related skills