Skip to main content

A tool that runs lint focusing only on the latest changes in Git.

Project description

BracketDot

What is this ?

A tool that runs lint focusing only on the latest changes in Git.

The supported lint is as follows.

  • Swift
    • Spell checker
    • Static analytics by SwiftLint
  • Objective-C
    • Warnings by xcodebuild
    • Static analytics by OCLint

How to start ?

Requires Python 3.6 or higher

Install by using pip.

pip install bracketdot

Check Swift codes

Install SwiftLint.

brew install swiftlint

Move directory to your swift project which you want to analyze and run the following command.

cd ${Swift Project Directory}
difflint-swift --last

You can get analytics results in ./difflint_report.json.

Check Objective-C codes

Install Command Line Tools from Apple Developer site.

Install OCLint and xcpretty.

brew tap oclint/formulae
brew install oclint
gem install xcpretty

Move directory to your Objective-C project which you want to analyze and run the following command.

cd ${Objective-C Project Directory}
difflint-objc --last --project Project.xcodeproj --target Target --config Debug

You can get analytics results in ./difflint_report.json.

Fix legacy Objective-C notation

This feature is currently under development and should not be used by non-developers.

Move directory to your Objective-C project which you want to analyze and run the following command.

cd ${Objective-C Project Directory}
bracket-dot

Objective-C files will be converted as follows.

Before:

String *title = [[self sharedInstance] generateTitle];

After:

String *title = self.sharedInstance.generateTitle;

How to develop ?

Clone this repository to your local, and execute the following command.

cd ${Bracket Dot Directory}
pip install -e '.[dev]'

You can debug by using launch configuration for VSCode.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

bracketdot-1.0.1-py3-none-any.whl (11.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page