lint-check

Führe Lint auf betroffenen Paketen aus, analysiere Fehler und behebe häufige Probleme automatisch (Design-Tokens, React.FC, SSR-Sicherheit, Importbeschränkungen)

npx skills add https://github.com/microsoft/fluentui --skill lint-check

Lint Check and Auto-Fix

Run linting and fix common issues for Fluent UI packages.

Steps

  1. Determine scope. If $ARGUMENTS is provided, lint that specific package. Otherwise, lint affected packages:

    # Specific package
    yarn nx run @fluentui/$ARGUMENTS:lint
    
    # Or affected packages
    yarn nx affected -t lint
    
  2. Parse the output and categorize errors by the custom Fluent UI ESLint rules:

    RuleWhat it catchesHow to fix
    @fluentui/ban-context-exportContext exported from wrong layerMove to react-shared-contexts package
    @fluentui/ban-instanceof-html-elementinstanceof HTMLElement (breaks iframes)Use element.tagName or feature detection
    @fluentui/no-global-reactReact.FC, React.useState etc.Use named imports: import { useState } from 'react'
    @fluentui/no-restricted-importsBanned import pathsUse the allowed import path from the error message
    @fluentui/no-context-default-valueContext created without undefined defaultUse createContext(undefined) and add a guard hook
  3. Auto-fix any issues found by editing the source files directly. For each fix:

    • Read the file
    • Apply the fix
    • Verify the fix by re-running lint on that specific file
  4. Report a summary of what was found and fixed.

References

Mehr Skills von microsoft

oss-growth
microsoft
OSS-Wachstums-Hacker-Persona
agent-framework-azure-ai-py
microsoft
Erstellen Sie Azure AI Foundry-Agents mit dem Microsoft Agent Framework Python SDK (agent-framework-azure-ai). Verwenden Sie dies beim Erstellen persistenter Agents mit AzureAIAgentsProvider, bei der Nutzung gehosteter Tools (Code-Interpreter, Dateisuche, Websuche), bei der Integration von MCP-Servern, bei der Verwaltung von Konversationsthreads oder bei der Implementierung von Streaming-Antworten. Umfasst Funktionstools, strukturierte Ausgaben und Multi-Tool-Agents.
development
airunway-aks-setup
microsoft
Set up AI Runway on AKS — from bare cluster to running model. Covers cluster verification, controller install, GPU assessment, provider setup, and first deployment. WHEN: "setup AI Runway", "onboard AKS cluster", "install AI Runway", "airunway setup", "deploy model to AKS", "GPU inference on AKS", "KAITO setup on AKS", "run LLM on AKS", "vLLM on AKS", "set up model serving on AKS", "AI Runway controller".
devops
appinsights-instrumentation
microsoft
Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices.
devops
applicationinsights-web-ts
microsoft
Instrumentieren Sie Browser-/Web-Apps mit dem Application Insights JavaScript SDK (@microsoft/applicationinsights-web). Verwenden Sie es für Real User Monitoring (RUM) – Seitenaufrufe, Klicks, AJAX/Fetch-Abhängigkeiten, Ausnahmen, benutzerdefinierte Ereignisse und browser-seitige GenAI-Agent-Traces, die mit Backend-OpenTelemetry-Traces korreliert werden. Umfasst SDK-Loader-Skript und npm-Setup, Framework-Erweiterungen (React, React Native, Angular), Click Analytics, Telemetrie-Initialisierer und OTel-GenAI-Semantik-Konventionen für Agent-/Tool-/Modell-Spans, die vom Browser ausgegeben werden.
devops
azure-ai-anomalydetector-java
microsoft
Erstellen Sie Anomalieerkennungsanwendungen mit dem Azure AI Anomaly Detector SDK für Java. Verwenden Sie dies bei der Implementierung von univariater/multivariater Anomalieerkennung, Zeitreihenanalyse oder KI-gestützter Überwachung.
development
azure-ai-language-conversations-py
microsoft
Implementieren Sie Conversational Language Understanding (CLU) mit dem azure-ai-language-conversations Python SDK. Verwenden Sie dies, wenn Sie mit ConversationAnalysisClient arbeiten, um Gesprächsabsichten und Entitäten zu analysieren, NLP-Funktionen zu erstellen oder Sprachverständnis in Anwendungen zu integrieren.
development
azure-ai-ml-py
microsoft
Azure Machine Learning SDK v2 für Python. Verwenden für ML-Workspaces, Jobs, Modelle, Datensätze, Compute und Pipelines. Auslöser: „azure-ai-ml“, „MLClient“, „Workspace“, „Modell-Registry“, „Trainings-Jobs“, „Datensätze“.
development