diff options
| author | Bozhidar Batsov <bozhidar@batsov.com> | 2018-10-03 09:37:51 +0300 |
|---|---|---|
| committer | Bozhidar Batsov <bozhidar@batsov.com> | 2018-10-03 09:37:51 +0300 |
| commit | a0342c1f6933c1cf4778a6d4e0dfc07170179188 (patch) | |
| tree | 9d975e42419bf6cd224ad3419b4ffb59a6e0bb84 | |
| parent | b15f33a2397abe60de6df898d5e9da0da3044cc9 (diff) | |
Add .dir-locals.el config for the project
| -rw-r--r-- | .dir-locals.el | 11 | ||||
| -rw-r--r-- | projectile.el | 4 |
2 files changed, 11 insertions, 4 deletions
diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..d369289 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,11 @@ +((emacs-lisp-mode + (bug-reference-url-format . "https://github.com/bbatsov/projectile/issues/%s") + (bug-reference-bug-regexp . "#\\(?2:[[:digit:]]+\\)") + (indent-tabs-mode) + (fill-column . 80) + (sentence-end-double-space . t) + (emacs-lisp-docstring-fill-column . 75) + (checkdoc-symbol-words . ("top-level" "major-mode" "macroexpand-all" "print-level" "print-length")) + (checkdoc-package-keywords-flag) + (checkdoc-arguments-in-order-flag) + (checkdoc-verb-check-experimental-flag))) diff --git a/projectile.el b/projectile.el index 33a922c..b3521f5 100644 --- a/projectile.el +++ b/projectile.el @@ -4139,8 +4139,4 @@ Otherwise behave as if called interactively. (provide 'projectile) -;; Local Variables: -;; indent-tabs-mode: nil -;; End: - ;;; projectile.el ends here |
