File: init.el

package info (click to toggle)
gitlab-ci-mode-el 20191022.12.4%2Bgit20191023.c861dc5f-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 144 kB
  • sloc: lisp: 428; makefile: 27
file content (29 lines) | stat: -rw-r--r-- 757 bytes parent folder | download | duplicates (3)
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
;;; test-init.el --- Test initialization -*- lexical-binding: t; -*-
;;
;; This is free and unencumbered software released into the public
;; domain.
;;
;; Anyone is free to copy, modify, publish, use, compile, sell, or
;; distribute this software, either in source code form or as a compiled
;; binary, for any purpose, commercial or non-commercial, and by any
;; means.


;;; Commentary:
;;
;; This file contains generic initialization for a Cask project’s test
;; suite.  Unless you’re hacking on it you shouldn’t need to edit or run
;; this file.


;;; Code:

(require 'cask "~/.cask/cask.el")
(cask-initialize
 (file-name-directory
  (directory-file-name
   (file-name-directory load-file-name))))

(require 'package-lint)

;;; init.el ends here