web-dev-qa-db-ja.com

SwiftLint:特定のルールのファイルを除外

私は.swiftlint.ymlファイルで次のようなことをしようとしています:

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

私はこのコードを持っていますが、私はそれについて得ているforce_try警告が好きではありません:

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

このファイルをルールから除外して、このファイルの警告を抑制したい。

それを行う方法はありますか?

24
etayluz

さて、特定のファイルに特定のルールを適用したくない場合は、@ Benno Kressが言及した手法を使用できます。そのためには、以下のようにSwiftファイルにコメントを追加する必要があります。

ルールは、ファイルの終わりまで、またはリンターが一致する有効化コメントを見つけるまで無効になります。

// swiftlint:disable <rule1> 

   YOUR CODE WHERE NO rule1 is applied

// swiftlint:enable <rule1>

Swiftlintを構成することにより、一部のファイルをスキップすることもできます。 SwiftLintを実行するディレクトリに「。swiftlint.yml」ファイルを追加します。

一部のファイルを除外するには、次のコンテンツを追加します。 file1、file2 ...などとしましょう

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

一部のルールを完全に無効にするには、同じ「。swiftlint.yml」ファイルに以下を追加します。

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

詳細については、次のリンクを参照してください。

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

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

40
arango_86

私はちょうどforce_castで取り除く

ステップ1:

cd path-to-your-project

ステップ2:

touch .swiftlint.yml

ステップ3:.swiftlint.ymlを開いて追加します

disabled_rules: # rule identifiers to exclude from running
 - force_cast

enter image description here

リファレンス- https://github.com/realm/SwiftLint#disable-rules-in-code

13
Jack

このルールの警告を抑制するファイルの先頭に// swiftlint:disable force_castを記述できます。ファイルの終わりまで、または// swiftlint:enable force_cast行を追加するまで無効になります。

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

10
Benno Kress

SwiftLintを実行するディレクトリから.swiftlint.ymlファイルを追加して、SwiftLintを構成します。 .swiftlint.yamlファイルで使用できるオプションの完全なセットは次のとおりです

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)

リファレンス:github.com/realm/SwiftLint#disable-rules-in-code

2