From 9a3300eac22a7ff96accf37fa2d761c13cc38020 Mon Sep 17 00:00:00 2001 From: Daniel Laps <daniel.laps@hhu.de> Date: Mon, 22 Apr 2019 23:34:25 +0200 Subject: [PATCH] Improve package --- flycheck-clolyze.el | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/flycheck-clolyze.el b/flycheck-clolyze.el index f03f0d1..bfffa5a 100644 --- a/flycheck-clolyze.el +++ b/flycheck-clolyze.el @@ -1,6 +1,21 @@ -;;; flycheck-clolyze.el --- Add clolyze to flycheck +;;; flycheck-clolyze.el --- Add Clolyze to to flycheck -*- lexical-binding: t; -*- -;;; Copyright (C) 2019 Daniel Laps +;; Copyright (C) 2019 Daniel Laps <daniel.laps@hhu.de> +;; +;; URL: https://github.com/DLaps/flycheck-clolyze +;; Author: Daniel Laps <daniel.laps@hhu.de> +;; Version: 1.0.0 +;; Package-Requires: ((flycheck "0.25") (emacs "24")) + +;;; Commentary: + +;; This package adds Clolyze to flycheck. To use it, add +;; to your init.el: +;; (require 'flycheck-clolyze) + +;;; License: + +;; This file is not part of GNU Emacs. ;; 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 @@ -15,13 +30,7 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see <https://www.gnu.org/licenses/>. -;;; Commentary: - -;; This package adds Clolyze to flycheck. To use it, add -;; to your init.el: -;; (require 'flycheck-clolyze) - - +;;; Code: (require 'flycheck) (flycheck-define-checker clolyze @@ -33,3 +42,4 @@ (add-to-list 'flycheck-checkers 'clolyze) (provide 'flycheck-clolyze) +;;; flycheck-clolyze.el ends here -- GitLab