org-lint.el 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240
  1. ;;; org-lint.el --- Linting for Org documents -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2015-2019 Free Software Foundation, Inc.
  3. ;; Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; This file is part of GNU Emacs.
  6. ;; GNU Emacs is free software; you can redistribute it and/or modify
  7. ;; it under the terms of the GNU General Public License as published by
  8. ;; the Free Software Foundation, either version 3 of the License, or
  9. ;; (at your option) any later version.
  10. ;; GNU Emacs is distributed in the hope that it will be useful,
  11. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ;; GNU General Public License for more details.
  14. ;; You should have received a copy of the GNU General Public License
  15. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  16. ;;; Commentary:
  17. ;; This library implements linting for Org syntax. The sole public
  18. ;; function is `org-lint', which see.
  19. ;; Internally, the library defines a new structure:
  20. ;; `org-lint-checker', with the following slots:
  21. ;; - NAME: Unique check identifier, as a non-nil symbol that doesn't
  22. ;; start with an hyphen.
  23. ;;
  24. ;; The check is done calling the function `org-lint-NAME' with one
  25. ;; mandatory argument, the parse tree describing the current Org
  26. ;; buffer. Such function calls are wrapped within
  27. ;; a `save-excursion' and point is always at `point-min'. Its
  28. ;; return value has to be an alist (POSITION MESSAGE) when
  29. ;; POSITION refer to the buffer position of the error, as an
  30. ;; integer, and MESSAGE is a string describing the error.
  31. ;; - DESCRIPTION: Summary about the check, as a string.
  32. ;; - CATEGORIES: Categories relative to the check, as a list of
  33. ;; symbol. They are used for filtering when calling `org-lint'.
  34. ;; Checkers not explicitly associated to a category are collected
  35. ;; in the `default' one.
  36. ;; - TRUST: The trust level one can have in the check. It is either
  37. ;; `low' or `high', depending on the heuristics implemented and
  38. ;; the nature of the check. This has an indicative value only and
  39. ;; is displayed along reports.
  40. ;; All checks have to be listed in `org-lint--checkers'.
  41. ;; Results are displayed in a special "*Org Lint*" buffer with
  42. ;; a dedicated major mode, derived from `tabulated-list-mode'.
  43. ;;
  44. ;; In addition to the usual key-bindings inherited from it, "C-j" and
  45. ;; "TAB" display problematic line reported under point whereas "RET"
  46. ;; jumps to it. Also, "h" hides all reports similar to the current
  47. ;; one. Additionally, "i" removes them from subsequent reports.
  48. ;; Checks currently implemented are:
  49. ;; - duplicate CUSTOM_ID properties
  50. ;; - duplicate NAME values
  51. ;; - duplicate targets
  52. ;; - duplicate footnote definitions
  53. ;; - orphaned affiliated keywords
  54. ;; - obsolete affiliated keywords
  55. ;; - missing language in source blocks
  56. ;; - missing back-end in export blocks
  57. ;; - invalid Babel call blocks
  58. ;; - NAME values with a colon
  59. ;; - deprecated export block syntax
  60. ;; - deprecated Babel header properties
  61. ;; - wrong header arguments in source blocks
  62. ;; - misuse of CATEGORY keyword
  63. ;; - "coderef" links with unknown destination
  64. ;; - "custom-id" links with unknown destination
  65. ;; - "fuzzy" links with unknown destination
  66. ;; - "id" links with unknown destination
  67. ;; - links to non-existent local files
  68. ;; - SETUPFILE keywords with non-existent file parameter
  69. ;; - INCLUDE keywords with wrong link parameter
  70. ;; - obsolete markup in INCLUDE keyword
  71. ;; - unknown items in OPTIONS keyword
  72. ;; - spurious macro arguments or invalid macro templates
  73. ;; - special properties in properties drawer
  74. ;; - obsolete syntax for PROPERTIES drawers
  75. ;; - Invalid EFFORT property value
  76. ;; - missing definition for footnote references
  77. ;; - missing reference for footnote definitions
  78. ;; - non-footnote definitions in footnote section
  79. ;; - probable invalid keywords
  80. ;; - invalid blocks
  81. ;; - misplaced planning info line
  82. ;; - incomplete drawers
  83. ;; - indented diary-sexps
  84. ;; - obsolete QUOTE section
  85. ;; - obsolete "file+application" link
  86. ;; - spurious colons in tags
  87. ;;; Code:
  88. (require 'cl-lib)
  89. (require 'org-element)
  90. (require 'org-macro)
  91. (require 'ox)
  92. (require 'ob)
  93. ;;; Checkers
  94. (cl-defstruct (org-lint-checker (:copier nil))
  95. (name 'missing-checker-name)
  96. (description "")
  97. (categories '(default))
  98. (trust 'high)) ; `low' or `high'
  99. (defun org-lint-missing-checker-name (_)
  100. (error
  101. "`A checker has no `:name' property. Please verify `org-lint--checkers'"))
  102. (defconst org-lint--checkers
  103. (list
  104. (make-org-lint-checker
  105. :name 'duplicate-custom-id
  106. :description "Report duplicates CUSTOM_ID properties"
  107. :categories '(link))
  108. (make-org-lint-checker
  109. :name 'duplicate-name
  110. :description "Report duplicate NAME values"
  111. :categories '(babel link))
  112. (make-org-lint-checker
  113. :name 'duplicate-target
  114. :description "Report duplicate targets"
  115. :categories '(link))
  116. (make-org-lint-checker
  117. :name 'duplicate-footnote-definition
  118. :description "Report duplicate footnote definitions"
  119. :categories '(footnote))
  120. (make-org-lint-checker
  121. :name 'orphaned-affiliated-keywords
  122. :description "Report orphaned affiliated keywords"
  123. :trust 'low)
  124. (make-org-lint-checker
  125. :name 'obsolete-affiliated-keywords
  126. :description "Report obsolete affiliated keywords"
  127. :categories '(obsolete))
  128. (make-org-lint-checker
  129. :name 'deprecated-export-blocks
  130. :description "Report deprecated export block syntax"
  131. :categories '(obsolete export)
  132. :trust 'low)
  133. (make-org-lint-checker
  134. :name 'deprecated-header-syntax
  135. :description "Report deprecated Babel header syntax"
  136. :categories '(obsolete babel)
  137. :trust 'low)
  138. (make-org-lint-checker
  139. :name 'missing-language-in-src-block
  140. :description "Report missing language in source blocks"
  141. :categories '(babel))
  142. (make-org-lint-checker
  143. :name 'missing-backend-in-export-block
  144. :description "Report missing back-end in export blocks"
  145. :categories '(export))
  146. (make-org-lint-checker
  147. :name 'invalid-babel-call-block
  148. :description "Report invalid Babel call blocks"
  149. :categories '(babel))
  150. (make-org-lint-checker
  151. :name 'colon-in-name
  152. :description "Report NAME values with a colon"
  153. :categories '(babel))
  154. (make-org-lint-checker
  155. :name 'wrong-header-argument
  156. :description "Report wrong babel headers"
  157. :categories '(babel))
  158. (make-org-lint-checker
  159. :name 'wrong-header-value
  160. :description "Report invalid value in babel headers"
  161. :categories '(babel)
  162. :trust 'low)
  163. (make-org-lint-checker
  164. :name 'deprecated-category-setup
  165. :description "Report misuse of CATEGORY keyword"
  166. :categories '(obsolete))
  167. (make-org-lint-checker
  168. :name 'invalid-coderef-link
  169. :description "Report \"coderef\" links with unknown destination"
  170. :categories '(link))
  171. (make-org-lint-checker
  172. :name 'invalid-custom-id-link
  173. :description "Report \"custom-id\" links with unknown destination"
  174. :categories '(link))
  175. (make-org-lint-checker
  176. :name 'invalid-fuzzy-link
  177. :description "Report \"fuzzy\" links with unknown destination"
  178. :categories '(link))
  179. (make-org-lint-checker
  180. :name 'invalid-id-link
  181. :description "Report \"id\" links with unknown destination"
  182. :categories '(link))
  183. (make-org-lint-checker
  184. :name 'link-to-local-file
  185. :description "Report links to non-existent local files"
  186. :categories '(link)
  187. :trust 'low)
  188. (make-org-lint-checker
  189. :name 'non-existent-setupfile-parameter
  190. :description "Report SETUPFILE keywords with non-existent file parameter"
  191. :trust 'low)
  192. (make-org-lint-checker
  193. :name 'wrong-include-link-parameter
  194. :description "Report INCLUDE keywords with misleading link parameter"
  195. :categories '(export)
  196. :trust 'low)
  197. (make-org-lint-checker
  198. :name 'obsolete-include-markup
  199. :description "Report obsolete markup in INCLUDE keyword"
  200. :categories '(obsolete export)
  201. :trust 'low)
  202. (make-org-lint-checker
  203. :name 'unknown-options-item
  204. :description "Report unknown items in OPTIONS keyword"
  205. :categories '(export)
  206. :trust 'low)
  207. (make-org-lint-checker
  208. :name 'invalid-macro-argument-and-template
  209. :description "Report spurious macro arguments or invalid macro templates"
  210. :categories '(export)
  211. :trust 'low)
  212. (make-org-lint-checker
  213. :name 'special-property-in-properties-drawer
  214. :description "Report special properties in properties drawers"
  215. :categories '(properties))
  216. (make-org-lint-checker
  217. :name 'obsolete-properties-drawer
  218. :description "Report obsolete syntax for properties drawers"
  219. :categories '(obsolete properties))
  220. (make-org-lint-checker
  221. :name 'invalid-effort-property
  222. :description "Report invalid duration in EFFORT property"
  223. :categories '(properties))
  224. (make-org-lint-checker
  225. :name 'undefined-footnote-reference
  226. :description "Report missing definition for footnote references"
  227. :categories '(footnote))
  228. (make-org-lint-checker
  229. :name 'unreferenced-footnote-definition
  230. :description "Report missing reference for footnote definitions"
  231. :categories '(footnote))
  232. (make-org-lint-checker
  233. :name 'extraneous-element-in-footnote-section
  234. :description "Report non-footnote definitions in footnote section"
  235. :categories '(footnote))
  236. (make-org-lint-checker
  237. :name 'invalid-keyword-syntax
  238. :description "Report probable invalid keywords"
  239. :trust 'low)
  240. (make-org-lint-checker
  241. :name 'invalid-block
  242. :description "Report invalid blocks"
  243. :trust 'low)
  244. (make-org-lint-checker
  245. :name 'misplaced-planning-info
  246. :description "Report misplaced planning info line"
  247. :trust 'low)
  248. (make-org-lint-checker
  249. :name 'incomplete-drawer
  250. :description "Report probable incomplete drawers"
  251. :trust 'low)
  252. (make-org-lint-checker
  253. :name 'indented-diary-sexp
  254. :description "Report probable indented diary-sexps"
  255. :trust 'low)
  256. (make-org-lint-checker
  257. :name 'quote-section
  258. :description "Report obsolete QUOTE section"
  259. :categories '(obsolete)
  260. :trust 'low)
  261. (make-org-lint-checker
  262. :name 'file-application
  263. :description "Report obsolete \"file+application\" link"
  264. :categories '(link obsolete))
  265. (make-org-lint-checker
  266. :name 'spurious-colons
  267. :description "Report spurious colons in tags"))
  268. "List of all available checkers.")
  269. (defun org-lint--collect-duplicates
  270. (ast type extract-key extract-position build-message)
  271. "Helper function to collect duplicates in parse tree AST.
  272. EXTRACT-KEY is a function extracting key. It is called with
  273. a single argument: the element or object. Comparison is done
  274. with `equal'.
  275. EXTRACT-POSITION is a function returning position for the report.
  276. It is called with two arguments, the object or element, and the
  277. key.
  278. BUILD-MESSAGE is a function creating the report message. It is
  279. called with one argument, the key used for comparison."
  280. (let* (keys
  281. originals
  282. reports
  283. (make-report
  284. (lambda (position value)
  285. (push (list position (funcall build-message value)) reports))))
  286. (org-element-map ast type
  287. (lambda (datum)
  288. (let ((key (funcall extract-key datum)))
  289. (cond
  290. ((not key))
  291. ((assoc key keys) (cl-pushnew (assoc key keys) originals)
  292. (funcall make-report (funcall extract-position datum key) key))
  293. (t (push (cons key (funcall extract-position datum key)) keys))))))
  294. (dolist (e originals reports) (funcall make-report (cdr e) (car e)))))
  295. (defun org-lint-duplicate-custom-id (ast)
  296. (org-lint--collect-duplicates
  297. ast
  298. 'node-property
  299. (lambda (property)
  300. (and (eq (compare-strings "CUSTOM_ID" nil nil
  301. (org-element-property :key property) nil nil
  302. t)
  303. t)
  304. (org-element-property :value property)))
  305. (lambda (property _) (org-element-property :begin property))
  306. (lambda (key) (format "Duplicate CUSTOM_ID property \"%s\"" key))))
  307. (defun org-lint-duplicate-name (ast)
  308. (org-lint--collect-duplicates
  309. ast
  310. org-element-all-elements
  311. (lambda (datum) (org-element-property :name datum))
  312. (lambda (datum name)
  313. (goto-char (org-element-property :begin datum))
  314. (re-search-forward
  315. (format "^[ \t]*#\\+[A-Za-z]+: +%s *$" (regexp-quote name)))
  316. (match-beginning 0))
  317. (lambda (key) (format "Duplicate NAME \"%s\"" key))))
  318. (defun org-lint-duplicate-target (ast)
  319. (org-lint--collect-duplicates
  320. ast
  321. 'target
  322. (lambda (target) (split-string (org-element-property :value target)))
  323. (lambda (target _) (org-element-property :begin target))
  324. (lambda (key)
  325. (format "Duplicate target <<%s>>" (mapconcat #'identity key " ")))))
  326. (defun org-lint-duplicate-footnote-definition (ast)
  327. (org-lint--collect-duplicates
  328. ast
  329. 'footnote-definition
  330. (lambda (definition) (org-element-property :label definition))
  331. (lambda (definition _) (org-element-property :post-affiliated definition))
  332. (lambda (key) (format "Duplicate footnote definition \"%s\"" key))))
  333. (defun org-lint-orphaned-affiliated-keywords (ast)
  334. ;; Ignore orphan RESULTS keywords, which could be generated from
  335. ;; a source block returning no value.
  336. (let ((keywords (cl-set-difference org-element-affiliated-keywords
  337. '("RESULT" "RESULTS")
  338. :test #'equal)))
  339. (org-element-map ast 'keyword
  340. (lambda (k)
  341. (let ((key (org-element-property :key k)))
  342. (and (or (let ((case-fold-search t))
  343. (string-match-p "\\`ATTR_[-_A-Za-z0-9]+\\'" key))
  344. (member key keywords))
  345. (list (org-element-property :post-affiliated k)
  346. (format "Orphaned affiliated keyword: \"%s\"" key))))))))
  347. (defun org-lint-obsolete-affiliated-keywords (_)
  348. (let ((regexp (format "^[ \t]*#\\+%s:"
  349. (regexp-opt '("DATA" "LABEL" "RESNAME" "SOURCE"
  350. "SRCNAME" "TBLNAME" "RESULT" "HEADERS")
  351. t)))
  352. reports)
  353. (while (re-search-forward regexp nil t)
  354. (let ((key (upcase (match-string-no-properties 1))))
  355. (when (< (point)
  356. (org-element-property :post-affiliated (org-element-at-point)))
  357. (push
  358. (list (line-beginning-position)
  359. (format
  360. "Obsolete affiliated keyword: \"%s\". Use \"%s\" instead"
  361. key
  362. (pcase key
  363. ("HEADERS" "HEADER")
  364. ("RESULT" "RESULTS")
  365. (_ "NAME"))))
  366. reports))))
  367. reports))
  368. (defun org-lint-deprecated-export-blocks (ast)
  369. (let ((deprecated '("ASCII" "BEAMER" "HTML" "LATEX" "MAN" "MARKDOWN" "MD"
  370. "ODT" "ORG" "TEXINFO")))
  371. (org-element-map ast 'special-block
  372. (lambda (b)
  373. (let ((type (org-element-property :type b)))
  374. (when (member-ignore-case type deprecated)
  375. (list
  376. (org-element-property :post-affiliated b)
  377. (format
  378. "Deprecated syntax for export block. Use \"BEGIN_EXPORT %s\" \
  379. instead"
  380. type))))))))
  381. (defun org-lint-deprecated-header-syntax (ast)
  382. (let* ((deprecated-babel-properties
  383. (mapcar (lambda (arg) (symbol-name (car arg)))
  384. org-babel-common-header-args-w-values))
  385. (deprecated-re
  386. (format "\\`%s[ \t]" (regexp-opt deprecated-babel-properties t))))
  387. (org-element-map ast '(keyword node-property)
  388. (lambda (datum)
  389. (let ((key (org-element-property :key datum)))
  390. (pcase (org-element-type datum)
  391. (`keyword
  392. (let ((value (org-element-property :value datum)))
  393. (and (string= key "PROPERTY")
  394. (string-match deprecated-re value)
  395. (list (org-element-property :begin datum)
  396. (format "Deprecated syntax for \"%s\". \
  397. Use header-args instead"
  398. (match-string-no-properties 1 value))))))
  399. (`node-property
  400. (and (member-ignore-case key deprecated-babel-properties)
  401. (list
  402. (org-element-property :begin datum)
  403. (format "Deprecated syntax for \"%s\". \
  404. Use :header-args: instead"
  405. key))))))))))
  406. (defun org-lint-missing-language-in-src-block (ast)
  407. (org-element-map ast 'src-block
  408. (lambda (b)
  409. (unless (org-element-property :language b)
  410. (list (org-element-property :post-affiliated b)
  411. "Missing language in source block")))))
  412. (defun org-lint-missing-backend-in-export-block (ast)
  413. (org-element-map ast 'export-block
  414. (lambda (b)
  415. (unless (org-element-property :type b)
  416. (list (org-element-property :post-affiliated b)
  417. "Missing back-end in export block")))))
  418. (defun org-lint-invalid-babel-call-block (ast)
  419. (org-element-map ast 'babel-call
  420. (lambda (b)
  421. (cond
  422. ((not (org-element-property :call b))
  423. (list (org-element-property :post-affiliated b)
  424. "Invalid syntax in babel call block"))
  425. ((let ((h (org-element-property :end-header b)))
  426. (and h (string-match-p "\\`\\[.*\\]\\'" h)))
  427. (list
  428. (org-element-property :post-affiliated b)
  429. "Babel call's end header must not be wrapped within brackets"))))))
  430. (defun org-lint-deprecated-category-setup (ast)
  431. (org-element-map ast 'keyword
  432. (let (category-flag)
  433. (lambda (k)
  434. (cond
  435. ((not (string= (org-element-property :key k) "CATEGORY")) nil)
  436. (category-flag
  437. (list (org-element-property :post-affiliated k)
  438. "Spurious CATEGORY keyword. Set :CATEGORY: property instead"))
  439. (t (setf category-flag t) nil))))))
  440. (defun org-lint-invalid-coderef-link (ast)
  441. (let ((info (list :parse-tree ast)))
  442. (org-element-map ast 'link
  443. (lambda (link)
  444. (let ((ref (org-element-property :path link)))
  445. (and (equal (org-element-property :type link) "coderef")
  446. (not (ignore-errors (org-export-resolve-coderef ref info)))
  447. (list (org-element-property :begin link)
  448. (format "Unknown coderef \"%s\"" ref))))))))
  449. (defun org-lint-invalid-custom-id-link (ast)
  450. (let ((info (list :parse-tree ast)))
  451. (org-element-map ast 'link
  452. (lambda (link)
  453. (and (equal (org-element-property :type link) "custom-id")
  454. (not (ignore-errors (org-export-resolve-id-link link info)))
  455. (list (org-element-property :begin link)
  456. (format "Unknown custom ID \"%s\""
  457. (org-element-property :path link))))))))
  458. (defun org-lint-invalid-fuzzy-link (ast)
  459. (let ((info (list :parse-tree ast)))
  460. (org-element-map ast 'link
  461. (lambda (link)
  462. (and (equal (org-element-property :type link) "fuzzy")
  463. (not (ignore-errors (org-export-resolve-fuzzy-link link info)))
  464. (list (org-element-property :begin link)
  465. (format "Unknown fuzzy location \"%s\""
  466. (let ((path (org-element-property :path link)))
  467. (if (string-prefix-p "*" path)
  468. (substring path 1)
  469. path)))))))))
  470. (defun org-lint-invalid-id-link (ast)
  471. (org-element-map ast 'link
  472. (lambda (link)
  473. (let ((id (org-element-property :path link)))
  474. (and (equal (org-element-property :type link) "id")
  475. (not (org-id-find id))
  476. (list (org-element-property :begin link)
  477. (format "Unknown ID \"%s\"" id)))))))
  478. (defun org-lint-special-property-in-properties-drawer (ast)
  479. (org-element-map ast 'node-property
  480. (lambda (p)
  481. (let ((key (org-element-property :key p)))
  482. (and (member-ignore-case key org-special-properties)
  483. (list (org-element-property :begin p)
  484. (format
  485. "Special property \"%s\" found in a properties drawer"
  486. key)))))))
  487. (defun org-lint-obsolete-properties-drawer (ast)
  488. (org-element-map ast 'drawer
  489. (lambda (d)
  490. (when (equal (org-element-property :drawer-name d) "PROPERTIES")
  491. (let ((section (org-element-lineage d '(section))))
  492. (unless (org-element-map section 'property-drawer #'identity nil t)
  493. (list (org-element-property :post-affiliated d)
  494. (if (save-excursion
  495. (goto-char (org-element-property :post-affiliated d))
  496. (forward-line -1)
  497. (or (org-at-heading-p) (org-at-planning-p)))
  498. "Incorrect contents for PROPERTIES drawer"
  499. "Incorrect location for PROPERTIES drawer"))))))))
  500. (defun org-lint-invalid-effort-property (ast)
  501. (org-element-map ast 'node-property
  502. (lambda (p)
  503. (when (equal "EFFORT" (org-element-property :key p))
  504. (let ((value (org-element-property :value p)))
  505. (and (org-string-nw-p value)
  506. (not (org-duration-p value))
  507. (list (org-element-property :begin p)
  508. (format "Invalid effort duration format: %S" value))))))))
  509. (defun org-lint-link-to-local-file (ast)
  510. (org-element-map ast 'link
  511. (lambda (l)
  512. (when (equal "file" (org-element-property :type l))
  513. (let ((file (org-element-property :path l)))
  514. (and (not (file-remote-p file))
  515. (not (file-exists-p file))
  516. (list (org-element-property :begin l)
  517. (format (if (org-element-lineage l '(link))
  518. "Link to non-existent image file \"%s\"\
  519. in link description"
  520. "Link to non-existent local file \"%s\"")
  521. file))))))))
  522. (defun org-lint-non-existent-setupfile-parameter (ast)
  523. (org-element-map ast 'keyword
  524. (lambda (k)
  525. (when (equal (org-element-property :key k) "SETUPFILE")
  526. (let ((file (org-unbracket-string
  527. "\"" "\""
  528. (org-element-property :value k))))
  529. (and (not (org-file-url-p file))
  530. (not (file-remote-p file))
  531. (not (file-exists-p file))
  532. (list (org-element-property :begin k)
  533. (format "Non-existent setup file %S" file))))))))
  534. (defun org-lint-wrong-include-link-parameter (ast)
  535. (org-element-map ast 'keyword
  536. (lambda (k)
  537. (when (equal (org-element-property :key k) "INCLUDE")
  538. (let* ((value (org-element-property :value k))
  539. (path
  540. (and (string-match "^\\(\".+\"\\|\\S-+\\)[ \t]*" value)
  541. (save-match-data
  542. (org-strip-quotes (match-string 1 value))))))
  543. (if (not path)
  544. (list (org-element-property :post-affiliated k)
  545. "Missing location argument in INCLUDE keyword")
  546. (let* ((file (org-string-nw-p
  547. (if (string-match "::\\(.*\\)\\'" path)
  548. (substring path 0 (match-beginning 0))
  549. path)))
  550. (search (and (not (equal file path))
  551. (org-string-nw-p (match-string 1 path)))))
  552. (if (and file
  553. (not (file-remote-p file))
  554. (not (file-exists-p file)))
  555. (list (org-element-property :post-affiliated k)
  556. "Non-existent file argument in INCLUDE keyword")
  557. (let* ((visiting (if file (find-buffer-visiting file)
  558. (current-buffer)))
  559. (buffer (or visiting (find-file-noselect file))))
  560. (unwind-protect
  561. (with-current-buffer buffer
  562. (when (and search
  563. (not
  564. (ignore-errors
  565. (let ((org-link-search-inhibit-query t))
  566. (org-link-search search nil t)))))
  567. (list (org-element-property :post-affiliated k)
  568. (format
  569. "Invalid search part \"%s\" in INCLUDE keyword"
  570. search))))
  571. (unless visiting (kill-buffer buffer))))))))))))
  572. (defun org-lint-obsolete-include-markup (ast)
  573. (let ((regexp (format "\\`\\(?:\".+\"\\|\\S-+\\)[ \t]+%s"
  574. (regexp-opt
  575. '("ASCII" "BEAMER" "HTML" "LATEX" "MAN" "MARKDOWN" "MD"
  576. "ODT" "ORG" "TEXINFO")
  577. t))))
  578. (org-element-map ast 'keyword
  579. (lambda (k)
  580. (when (equal (org-element-property :key k) "INCLUDE")
  581. (let ((case-fold-search t)
  582. (value (org-element-property :value k)))
  583. (when (string-match regexp value)
  584. (let ((markup (match-string-no-properties 1 value)))
  585. (list (org-element-property :post-affiliated k)
  586. (format "Obsolete markup \"%s\" in INCLUDE keyword. \
  587. Use \"export %s\" instead"
  588. markup
  589. markup))))))))))
  590. (defun org-lint-unknown-options-item (ast)
  591. (let ((allowed (delq nil
  592. (append
  593. (mapcar (lambda (o) (nth 2 o)) org-export-options-alist)
  594. (cl-mapcan
  595. (lambda (b)
  596. (mapcar (lambda (o) (nth 2 o))
  597. (org-export-backend-options b)))
  598. org-export-registered-backends))))
  599. reports)
  600. (org-element-map ast 'keyword
  601. (lambda (k)
  602. (when (string= (org-element-property :key k) "OPTIONS")
  603. (let ((value (org-element-property :value k))
  604. (start 0))
  605. (while (string-match "\\(.+?\\):\\((.*?)\\|\\S-*\\)[ \t]*"
  606. value
  607. start)
  608. (setf start (match-end 0))
  609. (let ((item (match-string 1 value)))
  610. (unless (member item allowed)
  611. (push (list (org-element-property :post-affiliated k)
  612. (format "Unknown OPTIONS item \"%s\"" item))
  613. reports))))))))
  614. reports))
  615. (defun org-lint-invalid-macro-argument-and-template (ast)
  616. (let ((extract-placeholders
  617. (lambda (template)
  618. (let ((start 0)
  619. args)
  620. (while (string-match "\\$\\([1-9][0-9]*\\)" template start)
  621. (setf start (match-end 0))
  622. (push (string-to-number (match-string 1 template)) args))
  623. (sort (org-uniquify args) #'<))))
  624. reports)
  625. ;; Check arguments for macro templates.
  626. (org-element-map ast 'keyword
  627. (lambda (k)
  628. (when (string= (org-element-property :key k) "MACRO")
  629. (let* ((value (org-element-property :value k))
  630. (name (and (string-match "^\\S-+" value)
  631. (match-string 0 value)))
  632. (template (and name
  633. (org-trim (substring value (match-end 0))))))
  634. (cond
  635. ((not name)
  636. (push (list (org-element-property :post-affiliated k)
  637. "Missing name in MACRO keyword")
  638. reports))
  639. ((not (org-string-nw-p template))
  640. (push (list (org-element-property :post-affiliated k)
  641. "Missing template in macro \"%s\"" name)
  642. reports))
  643. (t
  644. (unless (let ((args (funcall extract-placeholders template)))
  645. (equal (number-sequence 1 (or (org-last args) 0)) args))
  646. (push (list (org-element-property :post-affiliated k)
  647. (format "Unused placeholders in macro \"%s\""
  648. name))
  649. reports))))))))
  650. ;; Check arguments for macros.
  651. (org-macro-initialize-templates)
  652. (let ((templates (append
  653. (mapcar (lambda (m) (cons m "$1"))
  654. '("author" "date" "email" "title" "results"))
  655. org-macro-templates)))
  656. (org-element-map ast 'macro
  657. (lambda (macro)
  658. (let* ((name (org-element-property :key macro))
  659. (template (cdr (assoc-string name templates t))))
  660. (if (not template)
  661. (push (list (org-element-property :begin macro)
  662. (format "Undefined macro \"%s\"" name))
  663. reports)
  664. (let ((arg-numbers (funcall extract-placeholders template)))
  665. (when arg-numbers
  666. (let ((spurious-args
  667. (nthcdr (apply #'max arg-numbers)
  668. (org-element-property :args macro))))
  669. (when spurious-args
  670. (push
  671. (list (org-element-property :begin macro)
  672. (format "Unused argument%s in macro \"%s\": %s"
  673. (if (> (length spurious-args) 1) "s" "")
  674. name
  675. (mapconcat (lambda (a) (format "\"%s\"" a))
  676. spurious-args
  677. ", ")))
  678. reports))))))))))
  679. reports))
  680. (defun org-lint-undefined-footnote-reference (ast)
  681. (let ((definitions (org-element-map ast 'footnote-definition
  682. (lambda (f) (org-element-property :label f)))))
  683. (org-element-map ast 'footnote-reference
  684. (lambda (f)
  685. (let ((label (org-element-property :label f)))
  686. (and (eq 'standard (org-element-property :type f))
  687. (not (member label definitions))
  688. (list (org-element-property :begin f)
  689. (format "Missing definition for footnote [%s]"
  690. label))))))))
  691. (defun org-lint-unreferenced-footnote-definition (ast)
  692. (let ((references (org-element-map ast 'footnote-reference
  693. (lambda (f) (org-element-property :label f)))))
  694. (org-element-map ast 'footnote-definition
  695. (lambda (f)
  696. (let ((label (org-element-property :label f)))
  697. (and label
  698. (not (member label references))
  699. (list (org-element-property :post-affiliated f)
  700. (format "No reference for footnote definition [%s]"
  701. label))))))))
  702. (defun org-lint-colon-in-name (ast)
  703. (org-element-map ast org-element-all-elements
  704. (lambda (e)
  705. (let ((name (org-element-property :name e)))
  706. (and name
  707. (string-match-p ":" name)
  708. (list (progn
  709. (goto-char (org-element-property :begin e))
  710. (re-search-forward
  711. (format "^[ \t]*#\\+\\w+: +%s *$" (regexp-quote name)))
  712. (match-beginning 0))
  713. (format
  714. "Name \"%s\" contains a colon; Babel cannot use it as input"
  715. name)))))))
  716. (defun org-lint-misplaced-planning-info (_)
  717. (let ((case-fold-search t)
  718. reports)
  719. (while (re-search-forward org-planning-line-re nil t)
  720. (unless (memq (org-element-type (org-element-at-point))
  721. '(comment-block example-block export-block planning
  722. src-block verse-block))
  723. (push (list (line-beginning-position) "Misplaced planning info line")
  724. reports)))
  725. reports))
  726. (defun org-lint-incomplete-drawer (_)
  727. (let (reports)
  728. (while (re-search-forward org-drawer-regexp nil t)
  729. (let ((name (org-trim (match-string-no-properties 0)))
  730. (element (org-element-at-point)))
  731. (pcase (org-element-type element)
  732. ((or `drawer `property-drawer)
  733. (goto-char (org-element-property :end element))
  734. nil)
  735. ((or `comment-block `example-block `export-block `src-block
  736. `verse-block)
  737. nil)
  738. (_
  739. (push (list (line-beginning-position)
  740. (format "Possible incomplete drawer \"%s\"" name))
  741. reports)))))
  742. reports))
  743. (defun org-lint-indented-diary-sexp (_)
  744. (let (reports)
  745. (while (re-search-forward "^[ \t]+%%(" nil t)
  746. (unless (memq (org-element-type (org-element-at-point))
  747. '(comment-block diary-sexp example-block export-block
  748. src-block verse-block))
  749. (push (list (line-beginning-position) "Possible indented diary-sexp")
  750. reports)))
  751. reports))
  752. (defun org-lint-invalid-block (_)
  753. (let ((case-fold-search t)
  754. (regexp "^[ \t]*#\\+\\(BEGIN\\|END\\)\\(?::\\|_[^[:space:]]*\\)?[ \t]*")
  755. reports)
  756. (while (re-search-forward regexp nil t)
  757. (let ((name (org-trim (buffer-substring-no-properties
  758. (line-beginning-position) (line-end-position)))))
  759. (cond
  760. ((and (string-prefix-p "END" (match-string 1) t)
  761. (not (eolp)))
  762. (push (list (line-beginning-position)
  763. (format "Invalid block closing line \"%s\"" name))
  764. reports))
  765. ((not (memq (org-element-type (org-element-at-point))
  766. '(center-block comment-block dynamic-block example-block
  767. export-block quote-block special-block
  768. src-block verse-block)))
  769. (push (list (line-beginning-position)
  770. (format "Possible incomplete block \"%s\""
  771. name))
  772. reports)))))
  773. reports))
  774. (defun org-lint-invalid-keyword-syntax (_)
  775. (let ((regexp "^[ \t]*#\\+\\([^[:space:]:]*\\)\\(?: \\|$\\)")
  776. (exception-re
  777. (format "[ \t]*#\\+%s\\(\\[.*\\]\\)?:\\(?: \\|$\\)"
  778. (regexp-opt org-element-dual-keywords)))
  779. reports)
  780. (while (re-search-forward regexp nil t)
  781. (let ((name (match-string-no-properties 1)))
  782. (unless (or (string-prefix-p "BEGIN" name t)
  783. (string-prefix-p "END" name t)
  784. (save-excursion
  785. (beginning-of-line)
  786. (let ((case-fold-search t)) (looking-at exception-re))))
  787. (push (list (match-beginning 0)
  788. (format "Possible missing colon in keyword \"%s\"" name))
  789. reports))))
  790. reports))
  791. (defun org-lint-extraneous-element-in-footnote-section (ast)
  792. (org-element-map ast 'headline
  793. (lambda (h)
  794. (and (org-element-property :footnote-section-p h)
  795. (org-element-map (org-element-contents h)
  796. (cl-remove-if
  797. (lambda (e)
  798. (memq e '(comment comment-block footnote-definition
  799. property-drawer section)))
  800. org-element-all-elements)
  801. (lambda (e)
  802. (not (and (eq (org-element-type e) 'headline)
  803. (org-element-property :commentedp e))))
  804. nil t '(footnote-definition property-drawer))
  805. (list (org-element-property :begin h)
  806. "Extraneous elements in footnote section are not exported")))))
  807. (defun org-lint-quote-section (ast)
  808. (org-element-map ast '(headline inlinetask)
  809. (lambda (h)
  810. (let ((title (org-element-property :raw-value h)))
  811. (and (or (string-prefix-p "QUOTE " title)
  812. (string-prefix-p (concat org-comment-string " QUOTE ") title))
  813. (list (org-element-property :begin h)
  814. "Deprecated QUOTE section"))))))
  815. (defun org-lint-file-application (ast)
  816. (org-element-map ast 'link
  817. (lambda (l)
  818. (let ((app (org-element-property :application l)))
  819. (and app
  820. (list (org-element-property :begin l)
  821. (format "Deprecated \"file+%s\" link type" app)))))))
  822. (defun org-lint-wrong-header-argument (ast)
  823. (let* ((reports)
  824. (verify
  825. (lambda (datum language headers)
  826. (let ((allowed
  827. ;; If LANGUAGE is specified, restrict allowed
  828. ;; headers to both LANGUAGE-specific and default
  829. ;; ones. Otherwise, accept headers from any loaded
  830. ;; language.
  831. (append
  832. org-babel-header-arg-names
  833. (cl-mapcan
  834. (lambda (l)
  835. (let ((v (intern (format "org-babel-header-args:%s" l))))
  836. (and (boundp v) (mapcar #'car (symbol-value v)))))
  837. (if language (list language)
  838. (mapcar #'car org-babel-load-languages))))))
  839. (dolist (header headers)
  840. (let ((h (symbol-name (car header)))
  841. (p (or (org-element-property :post-affiliated datum)
  842. (org-element-property :begin datum))))
  843. (cond
  844. ((not (string-prefix-p ":" h))
  845. (push
  846. (list p
  847. (format "Missing colon in header argument \"%s\"" h))
  848. reports))
  849. ((assoc-string (substring h 1) allowed))
  850. (t (push (list p (format "Unknown header argument \"%s\"" h))
  851. reports)))))))))
  852. (org-element-map ast '(babel-call inline-babel-call inline-src-block keyword
  853. node-property src-block)
  854. (lambda (datum)
  855. (pcase (org-element-type datum)
  856. ((or `babel-call `inline-babel-call)
  857. (funcall verify
  858. datum
  859. nil
  860. (cl-mapcan #'org-babel-parse-header-arguments
  861. (list
  862. (org-element-property :inside-header datum)
  863. (org-element-property :end-header datum)))))
  864. (`inline-src-block
  865. (funcall verify
  866. datum
  867. (org-element-property :language datum)
  868. (org-babel-parse-header-arguments
  869. (org-element-property :parameters datum))))
  870. (`keyword
  871. (when (string= (org-element-property :key datum) "PROPERTY")
  872. (let ((value (org-element-property :value datum)))
  873. (when (string-match "\\`header-args\\(?::\\(\\S-+\\)\\)?\\+? *"
  874. value)
  875. (funcall verify
  876. datum
  877. (match-string 1 value)
  878. (org-babel-parse-header-arguments
  879. (substring value (match-end 0))))))))
  880. (`node-property
  881. (let ((key (org-element-property :key datum)))
  882. (when (let ((case-fold-search t))
  883. (string-match "\\`HEADER-ARGS\\(?::\\(\\S-+\\)\\)?\\+?"
  884. key))
  885. (funcall verify
  886. datum
  887. (match-string 1 key)
  888. (org-babel-parse-header-arguments
  889. (org-element-property :value datum))))))
  890. (`src-block
  891. (funcall verify
  892. datum
  893. (org-element-property :language datum)
  894. (cl-mapcan #'org-babel-parse-header-arguments
  895. (cons (org-element-property :parameters datum)
  896. (org-element-property :header datum))))))))
  897. reports))
  898. (defun org-lint-wrong-header-value (ast)
  899. (let (reports)
  900. (org-element-map ast
  901. '(babel-call inline-babel-call inline-src-block src-block)
  902. (lambda (datum)
  903. (let* ((type (org-element-type datum))
  904. (language (org-element-property :language datum))
  905. (allowed-header-values
  906. (append (and language
  907. (let ((v (intern (concat "org-babel-header-args:"
  908. language))))
  909. (and (boundp v) (symbol-value v))))
  910. org-babel-common-header-args-w-values))
  911. (datum-header-values
  912. (org-babel-parse-header-arguments
  913. (org-trim
  914. (pcase type
  915. (`src-block
  916. (mapconcat
  917. #'identity
  918. (cons (org-element-property :parameters datum)
  919. (org-element-property :header datum))
  920. " "))
  921. (`inline-src-block
  922. (or (org-element-property :parameters datum) ""))
  923. (_
  924. (concat
  925. (org-element-property :inside-header datum)
  926. " "
  927. (org-element-property :end-header datum))))))))
  928. (dolist (header datum-header-values)
  929. (let ((allowed-values
  930. (cdr (assoc-string (substring (symbol-name (car header)) 1)
  931. allowed-header-values))))
  932. (unless (memq allowed-values '(:any nil))
  933. (let ((values (cdr header))
  934. groups-alist)
  935. (dolist (v (if (stringp values) (split-string values)
  936. (list values)))
  937. (let ((valid-value nil))
  938. (catch 'exit
  939. (dolist (group allowed-values)
  940. (cond
  941. ((not (funcall
  942. (if (stringp v) #'assoc-string #'assoc)
  943. v group))
  944. (when (memq :any group)
  945. (setf valid-value t)
  946. (push (cons group v) groups-alist)))
  947. ((assq group groups-alist)
  948. (push
  949. (list
  950. (or (org-element-property :post-affiliated datum)
  951. (org-element-property :begin datum))
  952. (format
  953. "Forbidden combination in header \"%s\": %s, %s"
  954. (car header)
  955. (cdr (assq group groups-alist))
  956. v))
  957. reports)
  958. (throw 'exit nil))
  959. (t (push (cons group v) groups-alist)
  960. (setf valid-value t))))
  961. (unless valid-value
  962. (push
  963. (list
  964. (or (org-element-property :post-affiliated datum)
  965. (org-element-property :begin datum))
  966. (format "Unknown value \"%s\" for header \"%s\""
  967. v
  968. (car header)))
  969. reports))))))))))))
  970. reports))
  971. (defun org-lint-spurious-colons (ast)
  972. (org-element-map ast '(headline inlinetask)
  973. (lambda (h)
  974. (when (member "" (org-element-property :tags h))
  975. (list (org-element-property :begin h)
  976. "Tags contain a spurious colon")))))
  977. ;;; Reports UI
  978. (defvar org-lint--report-mode-map
  979. (let ((map (make-sparse-keymap)))
  980. (set-keymap-parent map tabulated-list-mode-map)
  981. (define-key map (kbd "RET") 'org-lint--jump-to-source)
  982. (define-key map (kbd "TAB") 'org-lint--show-source)
  983. (define-key map (kbd "C-j") 'org-lint--show-source)
  984. (define-key map (kbd "h") 'org-lint--hide-checker)
  985. (define-key map (kbd "i") 'org-lint--ignore-checker)
  986. map)
  987. "Local keymap for `org-lint--report-mode' buffers.")
  988. (define-derived-mode org-lint--report-mode tabulated-list-mode "OrgLint"
  989. "Major mode used to display reports emitted during linting.
  990. \\{org-lint--report-mode-map}"
  991. (setf tabulated-list-format
  992. `[("Line" 6
  993. (lambda (a b)
  994. (< (string-to-number (aref (cadr a) 0))
  995. (string-to-number (aref (cadr b) 0))))
  996. :right-align t)
  997. ("Trust" 5 t)
  998. ("Warning" 0 t)])
  999. (tabulated-list-init-header))
  1000. (defun org-lint--generate-reports (buffer checkers)
  1001. "Generate linting report for BUFFER.
  1002. CHECKERS is the list of checkers used.
  1003. Return an alist (ID [LINE TRUST DESCRIPTION CHECKER]), suitable
  1004. for `tabulated-list-printer'."
  1005. (with-current-buffer buffer
  1006. (save-excursion
  1007. (goto-char (point-min))
  1008. (let ((ast (org-element-parse-buffer))
  1009. (id 0)
  1010. (last-line 1)
  1011. (last-pos 1))
  1012. ;; Insert unique ID for each report. Replace buffer positions
  1013. ;; with line numbers.
  1014. (mapcar
  1015. (lambda (report)
  1016. (list
  1017. (cl-incf id)
  1018. (apply #'vector
  1019. (cons
  1020. (progn
  1021. (goto-char (car report))
  1022. (beginning-of-line)
  1023. (prog1 (number-to-string
  1024. (cl-incf last-line
  1025. (count-lines last-pos (point))))
  1026. (setf last-pos (point))))
  1027. (cdr report)))))
  1028. ;; Insert trust level in generated reports. Also sort them
  1029. ;; by buffer position in order to optimize lines computation.
  1030. (sort (cl-mapcan
  1031. (lambda (c)
  1032. (let ((trust (symbol-name (org-lint-checker-trust c))))
  1033. (mapcar
  1034. (lambda (report)
  1035. (list (car report) trust (nth 1 report) c))
  1036. (save-excursion
  1037. (funcall
  1038. (intern (format "org-lint-%s"
  1039. (org-lint-checker-name c)))
  1040. ast)))))
  1041. checkers)
  1042. #'car-less-than-car))))))
  1043. (defvar-local org-lint--source-buffer nil
  1044. "Source buffer associated to current report buffer.")
  1045. (defvar-local org-lint--local-checkers nil
  1046. "List of checkers used to build current report.")
  1047. (defun org-lint--refresh-reports ()
  1048. (setq tabulated-list-entries
  1049. (org-lint--generate-reports org-lint--source-buffer
  1050. org-lint--local-checkers))
  1051. (tabulated-list-print))
  1052. (defun org-lint--current-line ()
  1053. "Return current report line, as a number."
  1054. (string-to-number (aref (tabulated-list-get-entry) 0)))
  1055. (defun org-lint--current-checker (&optional entry)
  1056. "Return current report checker.
  1057. When optional argument ENTRY is non-nil, use this entry instead
  1058. of current one."
  1059. (aref (if entry (nth 1 entry) (tabulated-list-get-entry)) 3))
  1060. (defun org-lint--display-reports (source checkers)
  1061. "Display linting reports for buffer SOURCE.
  1062. CHECKERS is the list of checkers used."
  1063. (let ((buffer (get-buffer-create "*Org Lint*")))
  1064. (with-current-buffer buffer
  1065. (org-lint--report-mode)
  1066. (setf org-lint--source-buffer source)
  1067. (setf org-lint--local-checkers checkers)
  1068. (org-lint--refresh-reports)
  1069. (tabulated-list-print)
  1070. (add-hook 'tabulated-list-revert-hook #'org-lint--refresh-reports nil t))
  1071. (pop-to-buffer buffer)))
  1072. (defun org-lint--jump-to-source ()
  1073. "Move to source line that generated the report at point."
  1074. (interactive)
  1075. (let ((l (org-lint--current-line)))
  1076. (switch-to-buffer-other-window org-lint--source-buffer)
  1077. (org-goto-line l)
  1078. (org-show-set-visibility 'local)
  1079. (recenter)))
  1080. (defun org-lint--show-source ()
  1081. "Show source line that generated the report at point."
  1082. (interactive)
  1083. (let ((buffer (current-buffer)))
  1084. (org-lint--jump-to-source)
  1085. (switch-to-buffer-other-window buffer)))
  1086. (defun org-lint--hide-checker ()
  1087. "Hide all reports from checker that generated the report at point."
  1088. (interactive)
  1089. (let ((c (org-lint--current-checker)))
  1090. (setf tabulated-list-entries
  1091. (cl-remove-if (lambda (e) (equal c (org-lint--current-checker e)))
  1092. tabulated-list-entries))
  1093. (tabulated-list-print)))
  1094. (defun org-lint--ignore-checker ()
  1095. "Ignore all reports from checker that generated the report at point.
  1096. Checker will also be ignored in all subsequent reports."
  1097. (interactive)
  1098. (setf org-lint--local-checkers
  1099. (remove (org-lint--current-checker) org-lint--local-checkers))
  1100. (org-lint--hide-checker))
  1101. ;;; Public function
  1102. ;;;###autoload
  1103. (defun org-lint (&optional arg)
  1104. "Check current Org buffer for syntax mistakes.
  1105. By default, run all checkers. With a `\\[universal-argument]' prefix ARG, \
  1106. select one
  1107. category of checkers only. With a `\\[universal-argument] \
  1108. \\[universal-argument]' prefix, run one precise
  1109. checker by its name.
  1110. ARG can also be a list of checker names, as symbols, to run."
  1111. (interactive "P")
  1112. (unless (derived-mode-p 'org-mode) (user-error "Not in an Org buffer"))
  1113. (when (called-interactively-p 'any)
  1114. (message "Org linting process starting..."))
  1115. (let ((checkers
  1116. (pcase arg
  1117. (`nil org-lint--checkers)
  1118. (`(4)
  1119. (let ((category
  1120. (completing-read
  1121. "Checker category: "
  1122. (mapcar #'org-lint-checker-categories org-lint--checkers)
  1123. nil t)))
  1124. (cl-remove-if-not
  1125. (lambda (c)
  1126. (assoc-string (org-lint-checker-categories c) category))
  1127. org-lint--checkers)))
  1128. (`(16)
  1129. (list
  1130. (let ((name (completing-read
  1131. "Checker name: "
  1132. (mapcar #'org-lint-checker-name org-lint--checkers)
  1133. nil t)))
  1134. (catch 'exit
  1135. (dolist (c org-lint--checkers)
  1136. (when (string= (org-lint-checker-name c) name)
  1137. (throw 'exit c)))))))
  1138. ((pred consp)
  1139. (cl-remove-if-not (lambda (c) (memq (org-lint-checker-name c) arg))
  1140. org-lint--checkers))
  1141. (_ (user-error "Invalid argument `%S' for `org-lint'" arg)))))
  1142. (if (not (called-interactively-p 'any))
  1143. (org-lint--generate-reports (current-buffer) checkers)
  1144. (org-lint--display-reports (current-buffer) checkers)
  1145. (message "Org linting process completed"))))
  1146. (provide 'org-lint)
  1147. ;;; org-lint.el ends here