Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.31 KB

README.md

File metadata and controls

40 lines (26 loc) · 1.31 KB

flycheck-objc-clang

License: MIT MELPA MELPA Stable Build Status

An Objective-C syntax checker using Clang.

Requirements

Installation

You can install flycheck-objc-clang.el from the MELPA or the MELPA Stable repository.

In your init.el:

(require 'flycheck-objc-clang) ; Not necessary if using ELPA package
(with-eval-after-load 'flycheck
  (add-hook 'flycheck-mode-hook #'flycheck-objc-clang-setup))

Configuration

In your init.el:

(custom-set-variables
 '(flycheck-objc-clang-modules t) ; The modules feature is disabled by default
 '(flycheck-objc-clang-arc t))    ; The objc arc feature is disabled by default

License

This software is licensed under the MIT License.

See the LICENSE file for details.