Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 4,162 for Lint (0.03 seconds)

  1. .github/workflows/golangci-lint.yml

    name: golangci-lint
    on:
      push:
        branches:
          - main
          - master
      pull_request:
    
    permissions:
      contents: read
      pull-requests: read
    
    jobs:
      golangci:
        name: lint
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: stable
          - name: golangci-lint
            uses: golangci/golangci-lint-action@v7
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Thu Apr 17 07:30:17 GMT 2025
    - 471 bytes
    - Click Count (0)
  2. .github/workflows/helm-lint.yml

        steps:
          - name: Checkout
            uses: actions/checkout@v4
    
          - name: Install Helm
            uses: azure/setup-helm@v4
    
          - name: Run helm lint
            run: |
              cd helm/minio
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Jun 09 09:13:09 GMT 2024
    - 551 bytes
    - Click Count (0)
  3. scripts/lint.sh

    Sofie Van Landeghem <******@****.***> 1774370372 +0100
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Mar 24 16:39:32 GMT 2026
    - 142 bytes
    - Click Count (0)
  4. .github/workflows/go-lint.yml

    Harshavardhana <******@****.***> 1744208919 -0700
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Apr 09 14:28:39 GMT 2025
    - 1010 bytes
    - Click Count (0)
  5. Makefile

    lint: getdeps ## runs golangci-lint suite of linters
    	@echo "Running $@ check"
    	@$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml
    	@command typos && typos ./ || echo "typos binary is not found.. skipping.."
    
    lint-fix: getdeps ## runs golangci-lint suite of linters with automatic fixes
    	@echo "Running $@ check"
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Apr 27 00:44:22 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  6. android-test-app/build.gradle.kts

          setProguardFiles(listOf(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"))
          testProguardFiles("test-proguard-rules.pro")
        }
      }
    
      lint {
        abortOnError = true
      }
    }
    
    dependencies {
      implementation(libs.playservices.safetynet)
      implementation(projects.okhttp)
      implementation(libs.androidx.activity)
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Feb 07 06:56:34 GMT 2026
    - 1.2K bytes
    - Click Count (0)
  7. build-logic/src/main/kotlin/okhttp.quality-conventions.gradle.kts

      jvmSignature(library("codehaus-signature-java18")) { artifact { type = "signature" } }
    
      "lintChecks"(library("androidx-lint-gradle"))
    }
    
    configure<com.android.build.api.dsl.Lint> {
      xmlReport = true
      checkDependencies = true
    }
    
    configure<com.diffplug.gradle.spotless.SpotlessExtension> {
      kotlin {
        target("src/**/*.kt")
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  8. fastapi/.agents/skills/fastapi/references/other-tools.md

    # Other Tools
    
    ## uv
    
    If uv is available, use it to manage dependencies.
    
    ## Ruff
    
    If Ruff is available, use it to lint and format the code. Consider enabling the FastAPI rules.
    
    ## ty
    
    If ty is available, use it to check types.
    
    ## Asyncer
    
    When needing to run blocking code inside of async functions, or async code inside of blocking functions, suggest using Asyncer.
    
    Prefer it over AnyIO or asyncio.
    
    Install:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 10:05:57 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  9. schema/naming.go

    		bs := h.Sum(nil)
    
    		formattedName = formattedName[0:ns.IdentifierMaxLength-8] + hex.EncodeToString(bs)[:8]
    	}
    	return formattedName
    }
    
    var (
    	// https://github.com/golang/lint/blob/master/lint.go#L770
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Wed Jun 12 03:46:59 GMT 2024
    - 5.3K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/io/Closeables.java

       *
       * - It might be preferable to be consistent with the JDK precedent (which they stuck with even
       *   for "UncheckedIOException").
       *
       * - If we change the name, some of our callers break because our Android Lint ParameterName check
       *   doesn't make the exception for com.google.common that internal Error Prone does: b/386402967.
       */
      @SuppressWarnings("IdentifierName")
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 17 20:26:29 GMT 2025
    - 5.1K bytes
    - Click Count (0)
Back to Top