-
Notifications
You must be signed in to change notification settings - Fork 66
/
solidity-common.el
47 lines (36 loc) · 1.46 KB
/
solidity-common.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
;;; solidity-common.el --- Common code used by all sourcefiles
;; Copyright (C) 2015-2018 Lefteris Karapetsas
;; Author: Lefteris Karapetsas <[email protected]>
;; Keywords: languages
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Some common definitions used by all source files of the package are defined
;; here in order to avoid circular dependencies
;;
;;; Code:
(defcustom solidity-solc-path "solc"
"Path to the solc binary."
:group 'solidity
:type 'string
:package-version '(solidity . "0.1.1"))
(defcustom solidity-solium-path "solium"
"Path to the solium binary."
:group 'solidity
:type 'string
:package-version '(solidity . "0.1.4"))
(defcustom solidity-solhint-path "solhint"
"Path to the solhint binary."
:group 'solidity
:type 'string
:package-version '(solidity . "0.1.12"))
(provide 'solidity-common)
;;; solidity-common.el ends here