mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-10-31 23:26:19 +00:00
865fc239a0
- Parenthesised expressions (function calls, arguments, etc...) should never have spaces in them. - Tables always will have spaces inside.
62 lines
1.9 KiB
Common Lisp
62 lines
1.9 KiB
Common Lisp
; -*- mode: Lisp;-*-
|
|
|
|
(sources
|
|
/doc/stub/
|
|
/src/main/resources/assets/computercraft/lua/bios.lua
|
|
/src/main/resources/assets/computercraft/lua/rom/
|
|
/src/test/resources/test-rom)
|
|
|
|
|
|
(doc
|
|
(title "CC: Tweaked")
|
|
(index doc/index.md)
|
|
(source-link https://github.com/SquidDev-CC/CC-Tweaked/blob/${commit}/${path}#L${line})
|
|
|
|
(library-path
|
|
/doc/stub/
|
|
|
|
/src/main/resources/assets/computercraft/lua/rom/apis
|
|
/src/main/resources/assets/computercraft/lua/rom/apis/command
|
|
/src/main/resources/assets/computercraft/lua/rom/apis/turtle
|
|
|
|
/src/main/resources/assets/computercraft/lua/rom/modules/main
|
|
/src/main/resources/assets/computercraft/lua/rom/modules/command
|
|
/src/main/resources/assets/computercraft/lua/rom/modules/turtle))
|
|
|
|
(at /
|
|
(linters
|
|
syntax:string-index
|
|
|
|
;; It'd be nice to avoid this, but right now there's a lot of instances of
|
|
;; it.
|
|
-var:set-loop
|
|
|
|
;; It's useful to name arguments for documentation, so we allow this. It'd
|
|
;; be good to find a compromise in the future, but this works for now.
|
|
-var:unused-arg
|
|
|
|
;; Suppress a couple of documentation comments warnings for now. We'll
|
|
;; hopefully be able to remove them in the future.
|
|
-doc:undocumented -doc:undocumented-arg -doc:unresolved-reference
|
|
-var:unresolved-member)
|
|
(lint
|
|
(bracket-spaces
|
|
(call no-space)
|
|
(function-args no-space)
|
|
(parens no-space)
|
|
(table space)
|
|
(index no-space))))
|
|
|
|
;; We disable the unused global linter in bios.lua and the APIs. In the future
|
|
;; hopefully we'll get illuaminate to handle this.
|
|
(at
|
|
(/src/main/resources/assets/computercraft/lua/bios.lua
|
|
/src/main/resources/assets/computercraft/lua/rom/apis/)
|
|
(linters -var:unused-global)
|
|
(lint (allow-toplevel-global true)))
|
|
|
|
;; Silence some variable warnings in documentation stubs.
|
|
(at /doc/stub
|
|
(linters -var:unused-global)
|
|
(lint (allow-toplevel-global true)))
|