Metadata-Version: 2.1
Name: selective_linter
Version: 1.0.0
Summary: A script to be run from Xcode to lint files as you make changes
Home-page: https://github.com/mattboran/SelectiveSwiftLinter
Author: Matt Boran
Author-email: mattboran@gmail.com
License: UNKNOWN
Download-URL: https://github.com/mattboran/SelectiveSwiftLinter/releases/download/1.0.0/selective_linter-1.0.0-py3-none-any.whl
Description: # Selective (Swift) Linter
        
        This is a package to be used to lint changes in .swift files using [Swiftlint Installed via Homebrew](https://formulae.brew.sh/formula/swiftlint). It's meant to be used as a run script in Xcode.
        
        ### Installation and  Dependencies
        
        To install swiftlint from the terminal use Homebrew:
        ```sh
        $ brew install swiftlint
        ```
        To install this Python3 package
        
        ```sh
        $ pip3 install selective_linter
        ```
        
        To install this into an Xcode project, add the following run script build phase in project settings:
        
        Shell: `/usr/bin/env bash`
        ```sh
        if [ "${CONFIGURATION}" == "Debug" ]; then
            if which selective_linter >/dev/null; then
              selective_linter | xargs -0 echo
            fi
        fi
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Requires-Python: >3.0.0
Description-Content-Type: text/markdown
