Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/browser/extensions/report-site-issue/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  .eslintrc.js

  Sprache: JAVA
 

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


"use strict";

module.exports = {
  rules: {
    // Rules from the mozilla plugin
    "mozilla/balanced-listeners""error",
    "mozilla/no-aArgs""error",
    "mozilla/var-only-at-top-level""error",

    // No expressions where a statement is expected
    "no-unused-expressions""error",

    // No declaring variables that are never used
    "no-unused-vars""error",

    // Disallow using variables outside the blocks they are defined (especially
    // since only let and const are used, see "no-var").
    "block-scoped-var""error",

    // Warn about cyclomatic complexity in functions.
    complexity: ["error", { max: 26 }],

    // Maximum depth callbacks can be nested.
    "max-nested-callbacks": ["error"4],

    // Disallow use of multiline strings (use template strings instead).
    "no-multi-str""error",

    // Disallow usage of __proto__ property.
    "no-proto""error",

    // Disallow use of assignment in return statement. It is preferable for a
    // single line of code to have only one easily predictable effect.
    "no-return-assign""error",

    // Require use of the second argument for parseInt().
    radix: "error",

    // Require "use strict" to be defined globally in the script.
    strict: ["error""global"],

    // Disallow Yoda conditions (where literal value comes first).
    yoda: "error",

    // Disallow function or variable declarations in nested blocks
    "no-inner-declarations""error",
  },
};

Messung V0.5 in Prozent
C=91 H=98 G=94

¤ Dauer der Verarbeitung: 0.19 Sekunden  (vorverarbeitet am  2026-06-10) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.