The atelier for Lisp developers is providing useful tools for Lisp developpers such as project templates and a linter.
This software is Copyright © 2017–2023 Michaël Le Barbier and is distributed under the terms described in the LICENSE file.
(atelier:new-lisp-project
#p"~/Lisp/example/"
:copyright-holder "Michaël Le Barbier"
:copyright-year "2023"
:project-filename "net.cl-user.example"
:project-name "Example"
:project-description "An Example System for Atelier users"
:project-long-description
#.(concatenate 'string
"The Example System for Lisp developers showcases "
"the development and usage of the Atelier system.")
:homepage "https://cl-user.net/acme/cl-example"
:license :mit)Once the project is defined it can be loaded and used as any normal system.
(asdf:operate 'asdf:test-op (asdf:find-system "net.cl-user.example"))
(asdf:operate 'asdf:load-op (asdf:find-system "net.cl-user.example"))
(example/testsuite:run-all-tests)(example/development:lint)