mirror of
https://github.com/Respect/Validation.git
synced 2026-03-14 22:35:45 +01:00
Enhance LintSpdxCommand with contributor tracking and header normalization
Improves SPDX header linting to ensure consistent license metadata across the codebase. Key changes: - Enforce deterministic tag ordering (License-Identifier, FileCopyrightText, FileContributor) to ensure consistency, prevent merge conflicts, and simplify code reviews - Add contributor alias mapping to consolidate contributors with multiple emails or name variations (e.g., "nickl-" → "Nick Lombard") - Add --contributions-strategy option with "blame" (current code authors) and "log" (all historical contributors) to support different attribution philosophies - Add optional path argument to lint specific files or directories - Add --fix option to automatically correct header issues Assisted-by: Claude Code (claude-opus-4-5-20251101)
This commit is contained in:
parent
1b584d88a3
commit
7db3bea8a6
209 changed files with 766 additions and 240 deletions
|
|
@ -44,7 +44,7 @@ return (static function () {
|
|||
new ValidatorChangelogLinter(),
|
||||
)));
|
||||
$application->addCommand(new LintMixinCommand($differ));
|
||||
$application->addCommand(new LintSpdxCommand());
|
||||
$application->addCommand(new LintSpdxCommand($differ));
|
||||
$application->addCommand(new UpdateDomainSuffixesCommand($dataSaver));
|
||||
$application->addCommand(new UpdateDomainToplevelCommand($dataSaver));
|
||||
$application->addCommand(new UpdatePostalCodesCommand($dataSaver));
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Case Insensitive Validation
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Comparable values
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Comparing empty values
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Custom validators
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Feature Guide
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Getting Started
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Handling exceptions
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Handling results
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Overview
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Message placeholder conversion
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Placeholder Pipes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Message translation
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Migrating from v2.x to v3.x
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Prefixes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Validators
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# After
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# All
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# AllOf
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Alnum
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Alpha
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# AlwaysInvalid
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# AlwaysValid
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# AnyOf
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# ArrayType
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# ArrayVal
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Attributes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Base
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Base64
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Between
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# BetweenExclusive
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Blank
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# BoolType
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# BoolVal
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Bsn
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# CallableType
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Charset
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Circuit
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Cnh
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Cnpj
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Consonant
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Contains
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# ContainsAny
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# ContainsCount
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Control
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Countable
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# CountryCode
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Cpf
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# CreditCard
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# CurrencyCode
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Date
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# DateTime
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# DateTimeDiff
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Decimal
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Digit
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Directory
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Domain
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Each
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Email
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Emoji
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# EndsWith
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Equals
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Equivalent
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Even
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Executable
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Exists
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Extension
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Factor
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Factory
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# FalseVal
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Falsy
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# File
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Finite
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# FloatType
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# FloatVal
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Graph
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# GreaterThan
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# GreaterThanOrEqual
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Hetu
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# HexRgbColor
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Iban
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Identical
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Image
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Imei
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# In
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Infinite
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Instance
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# IntType
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# IntVal
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Ip
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Isbn
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# IterableType
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# IterableVal
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Json
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# Key
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# KeyExists
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# KeyOptional
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# KeySet
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# LanguageCode
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
SPDX-License-Identifier: MIT
|
||||
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
||||
-->
|
||||
|
||||
# LeapDate
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue