emacs-eldev / eldev

Elisp development tool
https://emacs-eldev.github.io/eldev/
GNU General Public License v3.0
229 stars 17 forks source link

eldev lint does not ignore package description file #34

Closed sirikid closed 3 years ago

sirikid commented 3 years ago
eldev lint
oj-pkg.el:0: The first line should be of the form: ";;; package --- Summary"
oj-pkg.el:0: You should have a section marked ";;; Commentary:"
oj-pkg.el:2: You should have a section marked ";;; Code:"
oj-pkg.el:4: The footer should be: (provide ’oj-pkg)\n;;; oj-pkg.el ends here
Found 4 warnings in file ‘oj-pkg.el’
doublep commented 3 years ago

Fixed in 0.9. The file is now also not byte-compiled (even without -*- no-byte-compile: t -*-). However, the file must be named after the project, i.e. PROJECT-pkg.el.

sirikid commented 3 years ago

Wow, cool. I have already forgot about this issue. Thank you, Paul.