web-dev-qa-db-fra.com

SwiftLint: exclure un fichier pour une règle spécifique

J'essaie de faire quelque chose comme ça dans mon fichier .swiftlint.yml:

force_cast:
  severity: warning # explicitly
  excluded:
    - Dog.Swift

J'ai ce code et je n'aime pas l'avertissement force_try que j'obtiens:

let cell = tableView.dequeueReusableCellWithIdentifier(Constants.dogViewCellReuseIdentifier,
                                                               forIndexPath: indexPath) as! DogViewCell

Je souhaite supprimer l'avertissement pour ce fichier en excluant ce fichier de la règle.

Y-a-t-il un moyen de faire ça ?

24
etayluz

Eh bien, si vous ne voulez pas que des règles spécifiques soient appliquées à un fichier spécifique, vous pouvez utiliser la technique mentionnée par @Benno Kress. Pour cela, vous devez ajouter un commentaire dans votre fichier Swift comme indiqué ci-dessous.

Les règles seront désactivées jusqu'à la fin du fichier ou jusqu'à ce que le linter voit un commentaire d'activation correspondant:

// swiftlint:disable <rule1> 

   YOUR CODE WHERE NO rule1 is applied

// swiftlint:enable <rule1>

Il est également possible d'ignorer certains fichiers en configurant swiftlint. ajoutez un fichier ". swiftlint.yml " dans le répertoire où vous exécuterez SwiftLint.

Ajoutez le contenu suivant pour exclure certains fichiers. Disons file1, file2 ... etc

excluded: 
  - file1
  - file2
  - folder1
  - folder1/ExcludedFile.Swift

Pour désactiver certaines règles, ajoutez complètement les éléments suivants au même fichier ". Swiftlint.yml ".

disabled_rules: # rule identifiers to exclude from running
  - colon
  - comma
  - control_statement

pour plus d'informations, reportez-vous aux liens suivants.

https://swifting.io/blog/2016/03/29/11-swiftlint/

https://github.com/realm/SwiftLint#disable-rules-in-code

40
arango_86

Je me débarrasse juste avec force_cast

Étape 1:

cd path-to-your-project

Étape 2:

touch .swiftlint.yml

Étape 3: ouvrez .swiftlint.yml et ajoutez

disabled_rules: # rule identifiers to exclude from running
 - force_cast

enter image description here

Référence - https://github.com/realm/SwiftLint#disable-rules-in-code

13
Jack

Tu peux écrire // swiftlint:disable force_cast au début du fichier dans lequel vous souhaitez supprimer l'avertissement pour cette règle. Il est désactivé jusqu'à la fin du fichier ou jusqu'à ce que vous ajoutiez la ligne // swiftlint:enable force_cast.

Source: https://github.com/realm/SwiftLint#disable-rules-in-code

10
Benno Kress

Configurez SwiftLint en ajoutant un fichier .swiftlint.yml à partir du répertoire à partir duquel vous exécuterez SwiftLint. Voici l'ensemble complet des options que vous pouvez utiliser dans votre .swiftlint.yaml fichier

disabled_rules: # rule identifiers to exclude from running
  - colon
  - comma
  - control_statement
opt_in_rules: # some rules are only opt-in
  - empty_count
  # Find all the available rules by running:
  # swiftlint rules
included: # paths to include during linting. `--path` is ignored if present.
  - Source
excluded: # paths to ignore during linting. Takes precedence over `included`.
  - Carthage
  - Pods
  - Source/ExcludedFolder
  - Source/ExcludedFile.Swift
  - Source/*/ExcludedFile.Swift # Exclude files with a wildcard
analyzer_rules: # Rules run by `swiftlint analyze` (experimental)
  - explicit_self

# configurable rules can be customized from this configuration file
# binary rules can set their severity level
force_cast: warning # implicitly
force_try:
  severity: warning # explicitly
# rules that have both warning and error levels, can set just the warning level
# implicitly
line_length: 110
# they can set both implicitly with an array
type_body_length:
  - 300 # warning
  - 400 # error
# or they can set both explicitly
file_length:
  warning: 500
  error: 1200
# naming rules can set warnings/errors for min_length and max_length
# additionally they can set excluded names
type_name:
  min_length: 4 # only warning
  max_length: # warning and error
    warning: 40
    error: 50
  excluded: iPhone # excluded via string
identifier_name:
  min_length: # only min_length
    error: 4 # only error
  excluded: # excluded via string array
    - id
    - URL
    - GlobalAPIKey
reporter: "xcode" # reporter type (xcode, json, csv, checkstyle, junit, html, emoji, sonarqube, markdown)

Référence: github.com/realm/SwiftLint#disable-rules-in-code

2