org-lint.el 44 KB

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