- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 44 for linterem (0.09 sec)
-
docs/pl/docs/features.md
* Dobrze współpracuje z Twoim **<abbr title='Skrót od "Integrated Development Environment", podobne do edytora kodu'>IDE</abbr>/<abbr title="Program, który sprawdza Twój kod pod kątem błędów">linterem</abbr>/mózgiem**: * Ponieważ struktury danych Pydantic to po prostu instancje klas, które definiujesz; autouzupełnianie, linting, mypy i twoja intuicja powinny działać poprawnie z Twoimi zwalidowanymi danymi.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 10.9K bytes - Viewed (0) -
common/config/.golangci.yml
- ".*\\.gen\\.go" exclude-rules: # Exclude some linters from running on test files. - path: _test\.go$|^tests/|^samples/ linters: - errcheck - maligned - path: _test\.go$ text: "dot-imports: should not use dot imports" # We need to use the deprecated module since the jsonpb replacement is not backwards compatible. - linters: - staticcheck
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 11.7K bytes - Viewed (0) -
common/config/.golangci-format.yml
# "make update-common". run: # Timeout for analysis, e.g. 30s, 5m. # Default: 1m timeout: 20m build-tags: - integ - integfuzz linters: disable-all: true enable: - goimports - gofumpt - gci fast: false linters-settings: gci: sections: - standard # Captures all standard packages if they do not match another section.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Apr 05 03:02:37 UTC 2024 - 2K bytes - Viewed (0) -
.golangci.yml
linters-settings: gofumpt: simplify: true misspell: locale: US staticcheck: checks: ['all', '-ST1005', '-ST1000', '-SA4000', '-SA9004', '-SA1019', '-SA1008', '-U1000', '-ST1016'] linters: disable-all: true enable: - durationcheck - gocritic - gofumpt - goimports - gomodguard - govet - ineffassign - misspell - revive - staticcheck - tenv
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Dec 07 02:17:03 UTC 2023 - 689 bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java
} /** * Creates a new exception from the specified interim result and its associated problems. * * @param result The interim result, may be {@code null}. */ public ModelBuildingException(ModelBuildingResult result) { super(toMessage(result)); this.result = result; } /** * Gets the interim result of the model building up to the point where it failed. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderException.java
/** * Creates a new exception from the specified interim result and its associated problems. * * @param result The interim result, may be {@code null}. */ public ModelBuilderException(ModelBuilderResult result) { super(result.toString()); this.result = result; } /** * Gets the interim result of the model building up to the point where it failed. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 3K bytes - Viewed (0) -
.golangci.yml
linters: enable: - cyclop - exportloopref - gocritic - gosec - ineffassign - misspell - prealloc - unconvert - unparam - goimports - whitespace linters-settings: whitespace: multi-func: true goimports:
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Nov 05 00:37:37 UTC 2022 - 291 bytes - Viewed (0) -
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"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 11.1K bytes - Viewed (0) -
.github/workflows/go-lint.yml
name: Linters and Tests on: pull_request: branches: - master # This ensures that previous jobs for the PR are canceled when the PR is # updated. concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} cancel-in-progress: true permissions: contents: read jobs: build: name: Go ${{ matrix.go-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 16 20:46:53 UTC 2024 - 1010 bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuilder.java
*/ ModelBuildingResult build(ModelBuildingRequest request) throws ModelBuildingException; /** * Builds the effective model by completing the specified interim result which was produced by a previous call to * {@link #build(ModelBuildingRequest)} with {@link ModelBuildingRequest#isTwoPhaseBuilding()} being {@code true}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0)