You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
670 B
25 lines
670 B
(*
|
|
* Copyright (c) 2016-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*)
|
|
|
|
open! IStd
|
|
|
|
type mode = On | Off
|
|
|
|
type 'issue_type issue_desc0 =
|
|
{ issue_type: 'issue_type (** issue type *)
|
|
; description: string (** Description in the error message *)
|
|
; mode: mode
|
|
; loc: Location.t (** location in the code *)
|
|
; severity: Exceptions.severity
|
|
; suggestion: string option (** an optional suggestion or correction *) }
|
|
|
|
type issue_desc = IssueType.t issue_desc0
|
|
|
|
val pp_issue : Format.formatter -> issue_desc -> unit
|
|
|
|
val should_run_check : mode -> bool
|