org-lint.el 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261
  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 'ob)
  90. (require 'ol)
  91. (require 'org-macro)
  92. (require 'ox)
  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 'percent-encoding-link-escape
  267. :description "Report obsolete escape syntax in links"
  268. :categories '(link obsolete)
  269. :trust 'low)
  270. (make-org-lint-checker
  271. :name 'spurious-colons
  272. :description "Report spurious colons in tags"
  273. :categories '(tags)))
  274. "List of all available checkers.")
  275. (defun org-lint--collect-duplicates
  276. (ast type extract-key extract-position build-message)
  277. "Helper function to collect duplicates in parse tree AST.
  278. EXTRACT-KEY is a function extracting key. It is called with
  279. a single argument: the element or object. Comparison is done
  280. with `equal'.
  281. EXTRACT-POSITION is a function returning position for the report.
  282. It is called with two arguments, the object or element, and the
  283. key.
  284. BUILD-MESSAGE is a function creating the report message. It is
  285. called with one argument, the key used for comparison."
  286. (let* (keys
  287. originals
  288. reports
  289. (make-report
  290. (lambda (position value)
  291. (push (list position (funcall build-message value)) reports))))
  292. (org-element-map ast type
  293. (lambda (datum)
  294. (let ((key (funcall extract-key datum)))
  295. (cond
  296. ((not key))
  297. ((assoc key keys) (cl-pushnew (assoc key keys) originals)
  298. (funcall make-report (funcall extract-position datum key) key))
  299. (t (push (cons key (funcall extract-position datum key)) keys))))))
  300. (dolist (e originals reports) (funcall make-report (cdr e) (car e)))))
  301. (defun org-lint-duplicate-custom-id (ast)
  302. (org-lint--collect-duplicates
  303. ast
  304. 'node-property
  305. (lambda (property)
  306. (and (eq (compare-strings "CUSTOM_ID" nil nil
  307. (org-element-property :key property) nil nil
  308. t)
  309. t)
  310. (org-element-property :value property)))
  311. (lambda (property _) (org-element-property :begin property))
  312. (lambda (key) (format "Duplicate CUSTOM_ID property \"%s\"" key))))
  313. (defun org-lint-duplicate-name (ast)
  314. (org-lint--collect-duplicates
  315. ast
  316. org-element-all-elements
  317. (lambda (datum) (org-element-property :name datum))
  318. (lambda (datum name)
  319. (goto-char (org-element-property :begin datum))
  320. (re-search-forward
  321. (format "^[ \t]*#\\+[A-Za-z]+: +%s *$" (regexp-quote name)))
  322. (match-beginning 0))
  323. (lambda (key) (format "Duplicate NAME \"%s\"" key))))
  324. (defun org-lint-duplicate-target (ast)
  325. (org-lint--collect-duplicates
  326. ast
  327. 'target
  328. (lambda (target) (split-string (org-element-property :value target)))
  329. (lambda (target _) (org-element-property :begin target))
  330. (lambda (key)
  331. (format "Duplicate target <<%s>>" (mapconcat #'identity key " ")))))
  332. (defun org-lint-duplicate-footnote-definition (ast)
  333. (org-lint--collect-duplicates
  334. ast
  335. 'footnote-definition
  336. (lambda (definition) (org-element-property :label definition))
  337. (lambda (definition _) (org-element-property :post-affiliated definition))
  338. (lambda (key) (format "Duplicate footnote definition \"%s\"" key))))
  339. (defun org-lint-orphaned-affiliated-keywords (ast)
  340. ;; Ignore orphan RESULTS keywords, which could be generated from
  341. ;; a source block returning no value.
  342. (let ((keywords (cl-set-difference org-element-affiliated-keywords
  343. '("RESULT" "RESULTS")
  344. :test #'equal)))
  345. (org-element-map ast 'keyword
  346. (lambda (k)
  347. (let ((key (org-element-property :key k)))
  348. (and (or (let ((case-fold-search t))
  349. (string-match-p "\\`ATTR_[-_A-Za-z0-9]+\\'" key))
  350. (member key keywords))
  351. (list (org-element-property :post-affiliated k)
  352. (format "Orphaned affiliated keyword: \"%s\"" key))))))))
  353. (defun org-lint-obsolete-affiliated-keywords (_)
  354. (let ((regexp (format "^[ \t]*#\\+%s:"
  355. (regexp-opt '("DATA" "LABEL" "RESNAME" "SOURCE"
  356. "SRCNAME" "TBLNAME" "RESULT" "HEADERS")
  357. t)))
  358. reports)
  359. (while (re-search-forward regexp nil t)
  360. (let ((key (upcase (match-string-no-properties 1))))
  361. (when (< (point)
  362. (org-element-property :post-affiliated (org-element-at-point)))
  363. (push
  364. (list (line-beginning-position)
  365. (format
  366. "Obsolete affiliated keyword: \"%s\". Use \"%s\" instead"
  367. key
  368. (pcase key
  369. ("HEADERS" "HEADER")
  370. ("RESULT" "RESULTS")
  371. (_ "NAME"))))
  372. reports))))
  373. reports))
  374. (defun org-lint-deprecated-export-blocks (ast)
  375. (let ((deprecated '("ASCII" "BEAMER" "HTML" "LATEX" "MAN" "MARKDOWN" "MD"
  376. "ODT" "ORG" "TEXINFO")))
  377. (org-element-map ast 'special-block
  378. (lambda (b)
  379. (let ((type (org-element-property :type b)))
  380. (when (member-ignore-case type deprecated)
  381. (list
  382. (org-element-property :post-affiliated b)
  383. (format
  384. "Deprecated syntax for export block. Use \"BEGIN_EXPORT %s\" \
  385. instead"
  386. type))))))))
  387. (defun org-lint-deprecated-header-syntax (ast)
  388. (let* ((deprecated-babel-properties
  389. (mapcar (lambda (arg) (symbol-name (car arg)))
  390. org-babel-common-header-args-w-values))
  391. (deprecated-re
  392. (format "\\`%s[ \t]" (regexp-opt deprecated-babel-properties t))))
  393. (org-element-map ast '(keyword node-property)
  394. (lambda (datum)
  395. (let ((key (org-element-property :key datum)))
  396. (pcase (org-element-type datum)
  397. (`keyword
  398. (let ((value (org-element-property :value datum)))
  399. (and (string= key "PROPERTY")
  400. (string-match deprecated-re value)
  401. (list (org-element-property :begin datum)
  402. (format "Deprecated syntax for \"%s\". \
  403. Use header-args instead"
  404. (match-string-no-properties 1 value))))))
  405. (`node-property
  406. (and (member-ignore-case key deprecated-babel-properties)
  407. (list
  408. (org-element-property :begin datum)
  409. (format "Deprecated syntax for \"%s\". \
  410. Use :header-args: instead"
  411. key))))))))))
  412. (defun org-lint-missing-language-in-src-block (ast)
  413. (org-element-map ast 'src-block
  414. (lambda (b)
  415. (unless (org-element-property :language b)
  416. (list (org-element-property :post-affiliated b)
  417. "Missing language in source block")))))
  418. (defun org-lint-missing-backend-in-export-block (ast)
  419. (org-element-map ast 'export-block
  420. (lambda (b)
  421. (unless (org-element-property :type b)
  422. (list (org-element-property :post-affiliated b)
  423. "Missing back-end in export block")))))
  424. (defun org-lint-invalid-babel-call-block (ast)
  425. (org-element-map ast 'babel-call
  426. (lambda (b)
  427. (cond
  428. ((not (org-element-property :call b))
  429. (list (org-element-property :post-affiliated b)
  430. "Invalid syntax in babel call block"))
  431. ((let ((h (org-element-property :end-header b)))
  432. (and h (string-match-p "\\`\\[.*\\]\\'" h)))
  433. (list
  434. (org-element-property :post-affiliated b)
  435. "Babel call's end header must not be wrapped within brackets"))))))
  436. (defun org-lint-deprecated-category-setup (ast)
  437. (org-element-map ast 'keyword
  438. (let (category-flag)
  439. (lambda (k)
  440. (cond
  441. ((not (string= (org-element-property :key k) "CATEGORY")) nil)
  442. (category-flag
  443. (list (org-element-property :post-affiliated k)
  444. "Spurious CATEGORY keyword. Set :CATEGORY: property instead"))
  445. (t (setf category-flag t) nil))))))
  446. (defun org-lint-invalid-coderef-link (ast)
  447. (let ((info (list :parse-tree ast)))
  448. (org-element-map ast 'link
  449. (lambda (link)
  450. (let ((ref (org-element-property :path link)))
  451. (and (equal (org-element-property :type link) "coderef")
  452. (not (ignore-errors (org-export-resolve-coderef ref info)))
  453. (list (org-element-property :begin link)
  454. (format "Unknown coderef \"%s\"" ref))))))))
  455. (defun org-lint-invalid-custom-id-link (ast)
  456. (let ((info (list :parse-tree ast)))
  457. (org-element-map ast 'link
  458. (lambda (link)
  459. (and (equal (org-element-property :type link) "custom-id")
  460. (not (ignore-errors (org-export-resolve-id-link link info)))
  461. (list (org-element-property :begin link)
  462. (format "Unknown custom ID \"%s\""
  463. (org-element-property :path link))))))))
  464. (defun org-lint-invalid-fuzzy-link (ast)
  465. (let ((info (list :parse-tree ast)))
  466. (org-element-map ast 'link
  467. (lambda (link)
  468. (and (equal (org-element-property :type link) "fuzzy")
  469. (not (ignore-errors (org-export-resolve-fuzzy-link link info)))
  470. (list (org-element-property :begin link)
  471. (format "Unknown fuzzy location \"%s\""
  472. (let ((path (org-element-property :path link)))
  473. (if (string-prefix-p "*" path)
  474. (substring path 1)
  475. path)))))))))
  476. (defun org-lint-invalid-id-link (ast)
  477. (org-element-map ast 'link
  478. (lambda (link)
  479. (let ((id (org-element-property :path link)))
  480. (and (equal (org-element-property :type link) "id")
  481. (not (org-id-find id))
  482. (list (org-element-property :begin link)
  483. (format "Unknown ID \"%s\"" id)))))))
  484. (defun org-lint-special-property-in-properties-drawer (ast)
  485. (org-element-map ast 'node-property
  486. (lambda (p)
  487. (let ((key (org-element-property :key p)))
  488. (and (member-ignore-case key org-special-properties)
  489. (list (org-element-property :begin p)
  490. (format
  491. "Special property \"%s\" found in a properties drawer"
  492. key)))))))
  493. (defun org-lint-obsolete-properties-drawer (ast)
  494. (org-element-map ast 'drawer
  495. (lambda (d)
  496. (when (equal (org-element-property :drawer-name d) "PROPERTIES")
  497. (let ((section (org-element-lineage d '(section))))
  498. (unless (org-element-map section 'property-drawer #'identity nil t)
  499. (list (org-element-property :post-affiliated d)
  500. (if (save-excursion
  501. (goto-char (org-element-property :post-affiliated d))
  502. (forward-line -1)
  503. (or (org-at-heading-p) (org-at-planning-p)))
  504. "Incorrect contents for PROPERTIES drawer"
  505. "Incorrect location for PROPERTIES drawer"))))))))
  506. (defun org-lint-invalid-effort-property (ast)
  507. (org-element-map ast 'node-property
  508. (lambda (p)
  509. (when (equal "EFFORT" (org-element-property :key p))
  510. (let ((value (org-element-property :value p)))
  511. (and (org-string-nw-p value)
  512. (not (org-duration-p value))
  513. (list (org-element-property :begin p)
  514. (format "Invalid effort duration format: %S" value))))))))
  515. (defun org-lint-link-to-local-file (ast)
  516. (org-element-map ast 'link
  517. (lambda (l)
  518. (when (equal "file" (org-element-property :type l))
  519. (let ((file (org-element-property :path l)))
  520. (and (not (file-remote-p file))
  521. (not (file-exists-p file))
  522. (list (org-element-property :begin l)
  523. (format (if (org-element-lineage l '(link))
  524. "Link to non-existent image file \"%s\"\
  525. in link description"
  526. "Link to non-existent local file \"%s\"")
  527. file))))))))
  528. (defun org-lint-non-existent-setupfile-parameter (ast)
  529. (org-element-map ast 'keyword
  530. (lambda (k)
  531. (when (equal (org-element-property :key k) "SETUPFILE")
  532. (let ((file (org-unbracket-string
  533. "\"" "\""
  534. (org-element-property :value k))))
  535. (and (not (file-remote-p file))
  536. (not (file-exists-p file))
  537. (list (org-element-property :begin k)
  538. (format "Non-existent setup file \"%s\"" file))))))))
  539. (defun org-lint-wrong-include-link-parameter (ast)
  540. (org-element-map ast 'keyword
  541. (lambda (k)
  542. (when (equal (org-element-property :key k) "INCLUDE")
  543. (let* ((value (org-element-property :value k))
  544. (path
  545. (and (string-match "^\\(\".+\"\\|\\S-+\\)[ \t]*" value)
  546. (save-match-data
  547. (org-strip-quotes (match-string 1 value))))))
  548. (if (not path)
  549. (list (org-element-property :post-affiliated k)
  550. "Missing location argument in INCLUDE keyword")
  551. (let* ((file (org-string-nw-p
  552. (if (string-match "::\\(.*\\)\\'" path)
  553. (substring path 0 (match-beginning 0))
  554. path)))
  555. (search (and (not (equal file path))
  556. (org-string-nw-p (match-string 1 path)))))
  557. (if (and file
  558. (not (file-remote-p file))
  559. (not (file-exists-p file)))
  560. (list (org-element-property :post-affiliated k)
  561. "Non-existent file argument in INCLUDE keyword")
  562. (let* ((visiting (if file (find-buffer-visiting file)
  563. (current-buffer)))
  564. (buffer (or visiting (find-file-noselect file)))
  565. (org-link-search-must-match-exact-headline t))
  566. (unwind-protect
  567. (with-current-buffer buffer
  568. (when (and search
  569. (not (ignore-errors
  570. (org-link-search search nil t))))
  571. (list (org-element-property :post-affiliated k)
  572. (format
  573. "Invalid search part \"%s\" in INCLUDE keyword"
  574. search))))
  575. (unless visiting (kill-buffer buffer))))))))))))
  576. (defun org-lint-obsolete-include-markup (ast)
  577. (let ((regexp (format "\\`\\(?:\".+\"\\|\\S-+\\)[ \t]+%s"
  578. (regexp-opt
  579. '("ASCII" "BEAMER" "HTML" "LATEX" "MAN" "MARKDOWN" "MD"
  580. "ODT" "ORG" "TEXINFO")
  581. t))))
  582. (org-element-map ast 'keyword
  583. (lambda (k)
  584. (when (equal (org-element-property :key k) "INCLUDE")
  585. (let ((case-fold-search t)
  586. (value (org-element-property :value k)))
  587. (when (string-match regexp value)
  588. (let ((markup (match-string-no-properties 1 value)))
  589. (list (org-element-property :post-affiliated k)
  590. (format "Obsolete markup \"%s\" in INCLUDE keyword. \
  591. Use \"export %s\" instead"
  592. markup
  593. markup))))))))))
  594. (defun org-lint-unknown-options-item (ast)
  595. (let ((allowed (delq nil
  596. (append
  597. (mapcar (lambda (o) (nth 2 o)) org-export-options-alist)
  598. (cl-mapcan
  599. (lambda (b)
  600. (mapcar (lambda (o) (nth 2 o))
  601. (org-export-backend-options b)))
  602. org-export-registered-backends))))
  603. reports)
  604. (org-element-map ast 'keyword
  605. (lambda (k)
  606. (when (string= (org-element-property :key k) "OPTIONS")
  607. (let ((value (org-element-property :value k))
  608. (start 0))
  609. (while (string-match "\\(.+?\\):\\((.*?)\\|\\S-*\\)[ \t]*"
  610. value
  611. start)
  612. (setf start (match-end 0))
  613. (let ((item (match-string 1 value)))
  614. (unless (member item allowed)
  615. (push (list (org-element-property :post-affiliated k)
  616. (format "Unknown OPTIONS item \"%s\"" item))
  617. reports))))))))
  618. reports))
  619. (defun org-lint-invalid-macro-argument-and-template (ast)
  620. (let ((extract-placeholders
  621. (lambda (template)
  622. (let ((start 0)
  623. args)
  624. (while (string-match "\\$\\([1-9][0-9]*\\)" template start)
  625. (setf start (match-end 0))
  626. (push (string-to-number (match-string 1 template)) args))
  627. (sort (org-uniquify args) #'<))))
  628. reports)
  629. ;; Check arguments for macro templates.
  630. (org-element-map ast 'keyword
  631. (lambda (k)
  632. (when (string= (org-element-property :key k) "MACRO")
  633. (let* ((value (org-element-property :value k))
  634. (name (and (string-match "^\\S-+" value)
  635. (match-string 0 value)))
  636. (template (and name
  637. (org-trim (substring value (match-end 0))))))
  638. (cond
  639. ((not name)
  640. (push (list (org-element-property :post-affiliated k)
  641. "Missing name in MACRO keyword")
  642. reports))
  643. ((not (org-string-nw-p template))
  644. (push (list (org-element-property :post-affiliated k)
  645. "Missing template in macro \"%s\"" name)
  646. reports))
  647. (t
  648. (unless (let ((args (funcall extract-placeholders template)))
  649. (equal (number-sequence 1 (or (org-last args) 0)) args))
  650. (push (list (org-element-property :post-affiliated k)
  651. (format "Unused placeholders in macro \"%s\""
  652. name))
  653. reports))))))))
  654. ;; Check arguments for macros.
  655. (org-macro-initialize-templates)
  656. (let ((templates (append
  657. (mapcar (lambda (m) (cons m "$1"))
  658. '("author" "date" "email" "title" "results"))
  659. org-macro-templates)))
  660. (org-element-map ast 'macro
  661. (lambda (macro)
  662. (let* ((name (org-element-property :key macro))
  663. (template (cdr (assoc-string name templates t))))
  664. (if (not template)
  665. (push (list (org-element-property :begin macro)
  666. (format "Undefined macro \"%s\"" name))
  667. reports)
  668. (let ((arg-numbers (funcall extract-placeholders template)))
  669. (when arg-numbers
  670. (let ((spurious-args
  671. (nthcdr (apply #'max arg-numbers)
  672. (org-element-property :args macro))))
  673. (when spurious-args
  674. (push
  675. (list (org-element-property :begin macro)
  676. (format "Unused argument%s in macro \"%s\": %s"
  677. (if (> (length spurious-args) 1) "s" "")
  678. name
  679. (mapconcat (lambda (a) (format "\"%s\"" a))
  680. spurious-args
  681. ", ")))
  682. reports))))))))))
  683. reports))
  684. (defun org-lint-undefined-footnote-reference (ast)
  685. (let ((definitions (org-element-map ast 'footnote-definition
  686. (lambda (f) (org-element-property :label f)))))
  687. (org-element-map ast 'footnote-reference
  688. (lambda (f)
  689. (let ((label (org-element-property :label f)))
  690. (and (eq 'standard (org-element-property :type f))
  691. (not (member label definitions))
  692. (list (org-element-property :begin f)
  693. (format "Missing definition for footnote [%s]"
  694. label))))))))
  695. (defun org-lint-unreferenced-footnote-definition (ast)
  696. (let ((references (org-element-map ast 'footnote-reference
  697. (lambda (f) (org-element-property :label f)))))
  698. (org-element-map ast 'footnote-definition
  699. (lambda (f)
  700. (let ((label (org-element-property :label f)))
  701. (and label
  702. (not (member label references))
  703. (list (org-element-property :post-affiliated f)
  704. (format "No reference for footnote definition [%s]"
  705. label))))))))
  706. (defun org-lint-colon-in-name (ast)
  707. (org-element-map ast org-element-all-elements
  708. (lambda (e)
  709. (let ((name (org-element-property :name e)))
  710. (and name
  711. (string-match-p ":" name)
  712. (list (progn
  713. (goto-char (org-element-property :begin e))
  714. (re-search-forward
  715. (format "^[ \t]*#\\+\\w+: +%s *$" (regexp-quote name)))
  716. (match-beginning 0))
  717. (format
  718. "Name \"%s\" contains a colon; Babel cannot use it as input"
  719. name)))))))
  720. (defun org-lint-misplaced-planning-info (_)
  721. (let ((case-fold-search t)
  722. reports)
  723. (while (re-search-forward org-planning-line-re nil t)
  724. (unless (memq (org-element-type (org-element-at-point))
  725. '(comment-block example-block export-block planning
  726. src-block verse-block))
  727. (push (list (line-beginning-position) "Misplaced planning info line")
  728. reports)))
  729. reports))
  730. (defun org-lint-incomplete-drawer (_)
  731. (let (reports)
  732. (while (re-search-forward org-drawer-regexp nil t)
  733. (let ((name (org-trim (match-string-no-properties 0)))
  734. (element (org-element-at-point)))
  735. (pcase (org-element-type element)
  736. ((or `drawer `property-drawer)
  737. (goto-char (org-element-property :end element))
  738. nil)
  739. ((or `comment-block `example-block `export-block `src-block
  740. `verse-block)
  741. nil)
  742. (_
  743. (push (list (line-beginning-position)
  744. (format "Possible incomplete drawer \"%s\"" name))
  745. reports)))))
  746. reports))
  747. (defun org-lint-indented-diary-sexp (_)
  748. (let (reports)
  749. (while (re-search-forward "^[ \t]+%%(" nil t)
  750. (unless (memq (org-element-type (org-element-at-point))
  751. '(comment-block diary-sexp example-block export-block
  752. src-block verse-block))
  753. (push (list (line-beginning-position) "Possible indented diary-sexp")
  754. reports)))
  755. reports))
  756. (defun org-lint-invalid-block (_)
  757. (let ((case-fold-search t)
  758. (regexp "^[ \t]*#\\+\\(BEGIN\\|END\\)\\(?::\\|_[^[:space:]]*\\)?[ \t]*")
  759. reports)
  760. (while (re-search-forward regexp nil t)
  761. (let ((name (org-trim (buffer-substring-no-properties
  762. (line-beginning-position) (line-end-position)))))
  763. (cond
  764. ((and (string-prefix-p "END" (match-string 1) t)
  765. (not (eolp)))
  766. (push (list (line-beginning-position)
  767. (format "Invalid block closing line \"%s\"" name))
  768. reports))
  769. ((not (memq (org-element-type (org-element-at-point))
  770. '(center-block comment-block dynamic-block example-block
  771. export-block quote-block special-block
  772. src-block verse-block)))
  773. (push (list (line-beginning-position)
  774. (format "Possible incomplete block \"%s\""
  775. name))
  776. reports)))))
  777. reports))
  778. (defun org-lint-invalid-keyword-syntax (_)
  779. (let ((regexp "^[ \t]*#\\+\\([^[:space:]:]*\\)\\(?: \\|$\\)")
  780. (exception-re
  781. (format "[ \t]*#\\+%s\\(\\[.*\\]\\)?:\\(?: \\|$\\)"
  782. (regexp-opt org-element-dual-keywords)))
  783. reports)
  784. (while (re-search-forward regexp nil t)
  785. (let ((name (match-string-no-properties 1)))
  786. (unless (or (string-prefix-p "BEGIN" name t)
  787. (string-prefix-p "END" name t)
  788. (save-excursion
  789. (beginning-of-line)
  790. (let ((case-fold-search t)) (looking-at exception-re))))
  791. (push (list (match-beginning 0)
  792. (format "Possible missing colon in keyword \"%s\"" name))
  793. reports))))
  794. reports))
  795. (defun org-lint-extraneous-element-in-footnote-section (ast)
  796. (org-element-map ast 'headline
  797. (lambda (h)
  798. (and (org-element-property :footnote-section-p h)
  799. (org-element-map (org-element-contents h)
  800. (cl-remove-if
  801. (lambda (e)
  802. (memq e '(comment comment-block footnote-definition
  803. property-drawer section)))
  804. org-element-all-elements)
  805. (lambda (e)
  806. (not (and (eq (org-element-type e) 'headline)
  807. (org-element-property :commentedp e))))
  808. nil t '(footnote-definition property-drawer))
  809. (list (org-element-property :begin h)
  810. "Extraneous elements in footnote section are not exported")))))
  811. (defun org-lint-quote-section (ast)
  812. (org-element-map ast '(headline inlinetask)
  813. (lambda (h)
  814. (let ((title (org-element-property :raw-value h)))
  815. (and (or (string-prefix-p "QUOTE " title)
  816. (string-prefix-p (concat org-comment-string " QUOTE ") title))
  817. (list (org-element-property :begin h)
  818. "Deprecated QUOTE section"))))))
  819. (defun org-lint-file-application (ast)
  820. (org-element-map ast 'link
  821. (lambda (l)
  822. (let ((app (org-element-property :application l)))
  823. (and app
  824. (list (org-element-property :begin l)
  825. (format "Deprecated \"file+%s\" link type" app)))))))
  826. (defun org-lint-percent-encoding-link-escape (ast)
  827. (org-element-map ast 'link
  828. (lambda (l)
  829. (when (eq 'bracket (org-element-property :format l))
  830. (let* ((uri (org-element-property :path l))
  831. (start 0)
  832. (obsolete-flag
  833. (catch :obsolete
  834. (while (string-match "%\\(..\\)?" uri start)
  835. (setq start (match-end 0))
  836. (unless (member (match-string 1 uri) '("25" "5B" "5D" "20"))
  837. (throw :obsolete nil)))
  838. (string-match-p "%" uri))))
  839. (when obsolete-flag
  840. (list (org-element-property :begin l)
  841. "Link escaped with obsolete percent-encoding syntax")))))))
  842. (defun org-lint-wrong-header-argument (ast)
  843. (let* ((reports)
  844. (verify
  845. (lambda (datum language headers)
  846. (let ((allowed
  847. ;; If LANGUAGE is specified, restrict allowed
  848. ;; headers to both LANGUAGE-specific and default
  849. ;; ones. Otherwise, accept headers from any loaded
  850. ;; language.
  851. (append
  852. org-babel-header-arg-names
  853. (cl-mapcan
  854. (lambda (l)
  855. (let ((v (intern (format "org-babel-header-args:%s" l))))
  856. (and (boundp v) (mapcar #'car (symbol-value v)))))
  857. (if language (list language)
  858. (mapcar #'car org-babel-load-languages))))))
  859. (dolist (header headers)
  860. (let ((h (symbol-name (car header)))
  861. (p (or (org-element-property :post-affiliated datum)
  862. (org-element-property :begin datum))))
  863. (cond
  864. ((not (string-prefix-p ":" h))
  865. (push
  866. (list p
  867. (format "Missing colon in header argument \"%s\"" h))
  868. reports))
  869. ((assoc-string (substring h 1) allowed))
  870. (t (push (list p (format "Unknown header argument \"%s\"" h))
  871. reports)))))))))
  872. (org-element-map ast '(babel-call inline-babel-call inline-src-block keyword
  873. node-property src-block)
  874. (lambda (datum)
  875. (pcase (org-element-type datum)
  876. ((or `babel-call `inline-babel-call)
  877. (funcall verify
  878. datum
  879. nil
  880. (cl-mapcan #'org-babel-parse-header-arguments
  881. (list
  882. (org-element-property :inside-header datum)
  883. (org-element-property :end-header datum)))))
  884. (`inline-src-block
  885. (funcall verify
  886. datum
  887. (org-element-property :language datum)
  888. (org-babel-parse-header-arguments
  889. (org-element-property :parameters datum))))
  890. (`keyword
  891. (when (string= (org-element-property :key datum) "PROPERTY")
  892. (let ((value (org-element-property :value datum)))
  893. (when (string-match "\\`header-args\\(?::\\(\\S-+\\)\\)?\\+? *"
  894. value)
  895. (funcall verify
  896. datum
  897. (match-string 1 value)
  898. (org-babel-parse-header-arguments
  899. (substring value (match-end 0))))))))
  900. (`node-property
  901. (let ((key (org-element-property :key datum)))
  902. (when (let ((case-fold-search t))
  903. (string-match "\\`HEADER-ARGS\\(?::\\(\\S-+\\)\\)?\\+?"
  904. key))
  905. (funcall verify
  906. datum
  907. (match-string 1 key)
  908. (org-babel-parse-header-arguments
  909. (org-element-property :value datum))))))
  910. (`src-block
  911. (funcall verify
  912. datum
  913. (org-element-property :language datum)
  914. (cl-mapcan #'org-babel-parse-header-arguments
  915. (cons (org-element-property :parameters datum)
  916. (org-element-property :header datum))))))))
  917. reports))
  918. (defun org-lint-wrong-header-value (ast)
  919. (let (reports)
  920. (org-element-map ast
  921. '(babel-call inline-babel-call inline-src-block src-block)
  922. (lambda (datum)
  923. (let* ((type (org-element-type datum))
  924. (language (org-element-property :language datum))
  925. (allowed-header-values
  926. (append (and language
  927. (let ((v (intern (concat "org-babel-header-args:"
  928. language))))
  929. (and (boundp v) (symbol-value v))))
  930. org-babel-common-header-args-w-values))
  931. (datum-header-values
  932. (org-babel-parse-header-arguments
  933. (org-trim
  934. (pcase type
  935. (`src-block
  936. (mapconcat
  937. #'identity
  938. (cons (org-element-property :parameters datum)
  939. (org-element-property :header datum))
  940. " "))
  941. (`inline-src-block
  942. (or (org-element-property :parameters datum) ""))
  943. (_
  944. (concat
  945. (org-element-property :inside-header datum)
  946. " "
  947. (org-element-property :end-header datum))))))))
  948. (dolist (header datum-header-values)
  949. (let ((allowed-values
  950. (cdr (assoc-string (substring (symbol-name (car header)) 1)
  951. allowed-header-values))))
  952. (unless (memq allowed-values '(:any nil))
  953. (let ((values (cdr header))
  954. groups-alist)
  955. (dolist (v (if (stringp values) (split-string values)
  956. (list values)))
  957. (let ((valid-value nil))
  958. (catch 'exit
  959. (dolist (group allowed-values)
  960. (cond
  961. ((not (funcall
  962. (if (stringp v) #'assoc-string #'assoc)
  963. v group))
  964. (when (memq :any group)
  965. (setf valid-value t)
  966. (push (cons group v) groups-alist)))
  967. ((assq group groups-alist)
  968. (push
  969. (list
  970. (or (org-element-property :post-affiliated datum)
  971. (org-element-property :begin datum))
  972. (format
  973. "Forbidden combination in header \"%s\": %s, %s"
  974. (car header)
  975. (cdr (assq group groups-alist))
  976. v))
  977. reports)
  978. (throw 'exit nil))
  979. (t (push (cons group v) groups-alist)
  980. (setf valid-value t))))
  981. (unless valid-value
  982. (push
  983. (list
  984. (or (org-element-property :post-affiliated datum)
  985. (org-element-property :begin datum))
  986. (format "Unknown value \"%s\" for header \"%s\""
  987. v
  988. (car header)))
  989. reports))))))))))))
  990. reports))
  991. (defun org-lint-spurious-colons (ast)
  992. (org-element-map ast '(headline inlinetask)
  993. (lambda (h)
  994. (when (member "" (org-element-property :tags h))
  995. (list (org-element-property :begin h)
  996. "Tags contain a spurious colon")))))
  997. ;;; Reports UI
  998. (defvar org-lint--report-mode-map
  999. (let ((map (make-sparse-keymap)))
  1000. (set-keymap-parent map tabulated-list-mode-map)
  1001. (define-key map (kbd "RET") 'org-lint--jump-to-source)
  1002. (define-key map (kbd "TAB") 'org-lint--show-source)
  1003. (define-key map (kbd "C-j") 'org-lint--show-source)
  1004. (define-key map (kbd "h") 'org-lint--hide-checker)
  1005. (define-key map (kbd "i") 'org-lint--ignore-checker)
  1006. map)
  1007. "Local keymap for `org-lint--report-mode' buffers.")
  1008. (define-derived-mode org-lint--report-mode tabulated-list-mode "OrgLint"
  1009. "Major mode used to display reports emitted during linting.
  1010. \\{org-lint--report-mode-map}"
  1011. (setf tabulated-list-format
  1012. `[("Line" 6
  1013. (lambda (a b)
  1014. (< (string-to-number (aref (cadr a) 0))
  1015. (string-to-number (aref (cadr b) 0))))
  1016. :right-align t)
  1017. ("Trust" 5 t)
  1018. ("Warning" 0 t)])
  1019. (tabulated-list-init-header))
  1020. (defun org-lint--generate-reports (buffer checkers)
  1021. "Generate linting report for BUFFER.
  1022. CHECKERS is the list of checkers used.
  1023. Return an alist (ID [LINE TRUST DESCRIPTION CHECKER]), suitable
  1024. for `tabulated-list-printer'."
  1025. (with-current-buffer buffer
  1026. (save-excursion
  1027. (goto-char (point-min))
  1028. (let ((ast (org-element-parse-buffer))
  1029. (id 0)
  1030. (last-line 1)
  1031. (last-pos 1))
  1032. ;; Insert unique ID for each report. Replace buffer positions
  1033. ;; with line numbers.
  1034. (mapcar
  1035. (lambda (report)
  1036. (list
  1037. (cl-incf id)
  1038. (apply #'vector
  1039. (cons
  1040. (progn
  1041. (goto-char (car report))
  1042. (beginning-of-line)
  1043. (prog1 (number-to-string
  1044. (cl-incf last-line
  1045. (count-lines last-pos (point))))
  1046. (setf last-pos (point))))
  1047. (cdr report)))))
  1048. ;; Insert trust level in generated reports. Also sort them
  1049. ;; by buffer position in order to optimize lines computation.
  1050. (sort (cl-mapcan
  1051. (lambda (c)
  1052. (let ((trust (symbol-name (org-lint-checker-trust c))))
  1053. (mapcar
  1054. (lambda (report)
  1055. (list (car report) trust (nth 1 report) c))
  1056. (save-excursion
  1057. (funcall
  1058. (intern (format "org-lint-%s"
  1059. (org-lint-checker-name c)))
  1060. ast)))))
  1061. checkers)
  1062. #'car-less-than-car))))))
  1063. (defvar-local org-lint--source-buffer nil
  1064. "Source buffer associated to current report buffer.")
  1065. (defvar-local org-lint--local-checkers nil
  1066. "List of checkers used to build current report.")
  1067. (defun org-lint--refresh-reports ()
  1068. (setq tabulated-list-entries
  1069. (org-lint--generate-reports org-lint--source-buffer
  1070. org-lint--local-checkers))
  1071. (tabulated-list-print))
  1072. (defun org-lint--current-line ()
  1073. "Return current report line, as a number."
  1074. (string-to-number (aref (tabulated-list-get-entry) 0)))
  1075. (defun org-lint--current-checker (&optional entry)
  1076. "Return current report checker.
  1077. When optional argument ENTRY is non-nil, use this entry instead
  1078. of current one."
  1079. (aref (if entry (nth 1 entry) (tabulated-list-get-entry)) 3))
  1080. (defun org-lint--display-reports (source checkers)
  1081. "Display linting reports for buffer SOURCE.
  1082. CHECKERS is the list of checkers used."
  1083. (let ((buffer (get-buffer-create "*Org Lint*")))
  1084. (with-current-buffer buffer
  1085. (org-lint--report-mode)
  1086. (setf org-lint--source-buffer source)
  1087. (setf org-lint--local-checkers checkers)
  1088. (org-lint--refresh-reports)
  1089. (tabulated-list-print)
  1090. (add-hook 'tabulated-list-revert-hook #'org-lint--refresh-reports nil t))
  1091. (pop-to-buffer buffer)))
  1092. (defun org-lint--jump-to-source ()
  1093. "Move to source line that generated the report at point."
  1094. (interactive)
  1095. (let ((l (org-lint--current-line)))
  1096. (switch-to-buffer-other-window org-lint--source-buffer)
  1097. (org-goto-line l)
  1098. (org-show-set-visibility 'local)
  1099. (recenter)))
  1100. (defun org-lint--show-source ()
  1101. "Show source line that generated the report at point."
  1102. (interactive)
  1103. (let ((buffer (current-buffer)))
  1104. (org-lint--jump-to-source)
  1105. (switch-to-buffer-other-window buffer)))
  1106. (defun org-lint--hide-checker ()
  1107. "Hide all reports from checker that generated the report at point."
  1108. (interactive)
  1109. (let ((c (org-lint--current-checker)))
  1110. (setf tabulated-list-entries
  1111. (cl-remove-if (lambda (e) (equal c (org-lint--current-checker e)))
  1112. tabulated-list-entries))
  1113. (tabulated-list-print)))
  1114. (defun org-lint--ignore-checker ()
  1115. "Ignore all reports from checker that generated the report at point.
  1116. Checker will also be ignored in all subsequent reports."
  1117. (interactive)
  1118. (setf org-lint--local-checkers
  1119. (remove (org-lint--current-checker) org-lint--local-checkers))
  1120. (org-lint--hide-checker))
  1121. ;;; Public function
  1122. ;;;###autoload
  1123. (defun org-lint (&optional arg)
  1124. "Check current Org buffer for syntax mistakes.
  1125. By default, run all checkers. With a `\\[universal-argument]' prefix ARG, \
  1126. select one
  1127. category of checkers only. With a `\\[universal-argument] \
  1128. \\[universal-argument]' prefix, run one precise
  1129. checker by its name.
  1130. ARG can also be a list of checker names, as symbols, to run."
  1131. (interactive "P")
  1132. (unless (derived-mode-p 'org-mode) (user-error "Not in an Org buffer"))
  1133. (when (called-interactively-p 'any)
  1134. (message "Org linting process starting..."))
  1135. (let ((checkers
  1136. (pcase arg
  1137. (`nil org-lint--checkers)
  1138. (`(4)
  1139. (let ((category
  1140. (completing-read
  1141. "Checker category: "
  1142. (mapcar #'org-lint-checker-categories org-lint--checkers)
  1143. nil t)))
  1144. (cl-remove-if-not
  1145. (lambda (c)
  1146. (assoc-string (org-lint-checker-categories c) category))
  1147. org-lint--checkers)))
  1148. (`(16)
  1149. (list
  1150. (let ((name (completing-read
  1151. "Checker name: "
  1152. (mapcar #'org-lint-checker-name org-lint--checkers)
  1153. nil t)))
  1154. (catch 'exit
  1155. (dolist (c org-lint--checkers)
  1156. (when (string= (org-lint-checker-name c) name)
  1157. (throw 'exit c)))))))
  1158. ((pred consp)
  1159. (cl-remove-if-not (lambda (c) (memq (org-lint-checker-name c) arg))
  1160. org-lint--checkers))
  1161. (_ (user-error "Invalid argument `%S' for `org-lint'" arg)))))
  1162. (if (not (called-interactively-p 'any))
  1163. (org-lint--generate-reports (current-buffer) checkers)
  1164. (org-lint--display-reports (current-buffer) checkers)
  1165. (message "Org linting process completed"))))
  1166. (provide 'org-lint)
  1167. ;;; org-lint.el ends here