Skip to content

Commit fb3040a

Browse files
authored
adds GPLv3 (#112)
1 parent 0a0ead9 commit fb3040a

6 files changed

+628
-2
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# CHANGELOG
22

3+
## 2017-08-17
4+
- Added a LICENSE file and the appropriate headers
35

46
## 2017-04-20
57
- Fixes a bug where large responses would cause psc-ide-send-sync to fail

LICENSE

+621
Large diffs are not rendered by default.

psc-ide-flycheck.el

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
;;; psc-ide-flycheck.el --- Flycheck support for the purescript language -*- lexical-binding: t -*-
22

33
;; Copyright (c) 2015 The psc-ide-emacs authors
4+
;; License: GNU General Public License version 3, or (at your option) any later version
45

56
;; Author: Brian Sermons
67
;; URL: https://github.com/epost/psc-ide-emacs

psc-ide-protocol.el

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
;;; -*- lexical-binding: t -*-
2+
;; License: GNU General Public License version 3, or (at your option) any later version
23
(require 'json)
34
(require 'dash-functional)
45
(require 's)

psc-ide.el

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
;;; psc-ide.el --- Minor mode for PureScript's psc-ide tool. -*- lexical-binding: t -*-
22

33
;; Copyright (C) 2017 The psc-ide-emacs authors
4+
;; License: GNU General Public License version 3, or (at your option) any later version
5+
46

57
;; Author : Erik Post <[email protected]>
68
;; Dmitry Bushenko <[email protected]>

purescript-extras.el

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
;; Some extras
1+
;; License: GNU General Public License version 3, or (at your option) any later version
22

33
(require 'compile)
44
(require 'purescript-mode) ;; needed for 'purescript-ident-at-point'
55

6-
76
(add-hook 'purescript-mode-hook
87
(lambda ()
98
(set (make-local-variable 'compile-command)

0 commit comments

Comments
 (0)