Advertisement
SkyCrafter0

illuaminate.sexp

Mar 25th, 2021
1,585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.78 KB | None | 0 0
  1. ; -*- mode: Lisp;-*-
  2.  
  3. (sources
  4.   /src/main/misc/
  5.   /src/main/skyos/
  6. )
  7.  
  8.  
  9. (doc
  10.   (destination build/docs/lua)
  11.   (index doc/index.md)
  12.  
  13.   (site
  14.     (title "SkyDocs")
  15.     ;;(logo src/main/resources/pack.png)
  16.     (url https://skydocs.madefor.cc/)
  17.  
  18.     (styles src/web/styles.css)
  19.     (scripts build/rollup/index.js)
  20.     (head doc/head.html)))
  21.  
  22. (at /
  23.   (linters
  24.     syntax:string-index)
  25.   (lint
  26.     (bracket-spaces
  27.       (call no-space)
  28.       (function-args no-space)
  29.       (parens no-space)
  30.       (table space)
  31.       (index no-space))
  32.  
  33.     (globals
  34.       :max
  35.       _CC_DEFAULT_SETTINGS
  36.       _CC_DISABLE_LUA51_FEATURES
  37.       ;; Ideally we'd pick these up from bios.lua, but illuaminate currently
  38.       ;; isn't smart enough.
  39.       sleep write printError read rs)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement