How do I create .swiftlint.yml file & where I need to put it?
If you are using the terminal: cd your_project_directory touch .swiftlint.yml
If you are using the terminal: cd your_project_directory touch .swiftlint.yml
Well, if you don’t want some specific rules to be applied to a specific file you can use the technique mentioned by @Benno Kress. For that you need to add a comment in your swift file as given below. The rules will be disabled until the end of the file or until the linter sees … Read more