Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • c7a06af3c1a78f61c41509e8499ab56b77a33c13
  • master par défaut protégée
  • rust
  • rust-playlist-sync
  • fix-qt-deprecated-qvariant-type
  • fix-mpris-qtwindow-race-condition
  • rust-appimage-wayland
  • windows-build-rebased
  • v2.5 protégée
  • v2.4 protégée
  • v2.3-1 protégée
  • v2.3 protégée
  • v2.2 protégée
  • v2.1 protégée
  • v2.0 protégée
  • v1.8-3 protégée
  • v1.8-2 protégée
  • v1.8-1 protégée
  • v1.8 protégée
  • v1.7 protégée
  • v1.6 protégée
  • v1.5 protégée
  • v1.4 protégée
  • v1.3 protégée
  • v1.2 protégée
  • v1.1 protégée
  • v1.0 protégée
27 résultats

CHANGELOG.md

Blame
  • Pour retrouver l'état du dépôt de ce projet au moment de chacune de ses versions, extrayez-en les étiquettes.
    .eslintrc 1,89 Kio
    {
        "parser": "@typescript-eslint/parser",
        "plugins": ["@typescript-eslint"],
        "parserOptions": {
            "ecmaVersion": 9,
            "ecmaFeatures": {
                "jsx": false
            },
            "project": "tsconfig.json"
        },
        "env": {
            "node": true,
            "jasmine": true
        },
        "extends": ["plugin:@typescript-eslint/recommended"],
        "rules": {
            "ordered-imports": "off",
            "no-trailing-spaces": "error",
            "max-classes-per-file": ["warn", 1],
            "object-literal-sort-keys": "off",
            "@typescript-eslint/no-explicit-any": "error",
            "@typescript-eslint/prefer-for-of": "error",
            "@typescript-eslint/typedef": "warn",
            "@typescript-eslint/no-floating-promises": "error",
            "curly": "error",
            "no-empty": "off",
            "no-invalid-this": "error",
            "@typescript-eslint/no-throw-literal": "warn",
            "prefer-const": "error",
            "indent": ["error", 4],
            "max-lines": ["warn", 500],
            "no-duplicate-imports": "error",
            "@typescript-eslint/array-type": "error",
            "@typescript-eslint/promise-function-async": "error",
            "no-bitwise": "error",
            "no-console": "error",
            "no-debugger": "error",
            "prefer-template": "error",
            // Disable these as they were introduced by @typescript-eslint/recommended
            "@typescript-eslint/no-use-before-define": "off",
            "@typescript-eslint/no-inferrable-types": "off",
            "@typescript-eslint/member-delimiter-style": "off",
            "@typescript-eslint/no-unused-expressions": "off",
            "@typescript-eslint/interface-name-prefix": "off"
        },
        "overrides": [
            {
                "files": [
                    "test/**/*"
                ],
                "rules": {
                    "@typescript-eslint/no-empty-function": "off",
                    "@typescript-eslint/no-explicit-any": "off"
                }
            }
        ]
    }