File tree Expand file tree Collapse file tree 7 files changed +19
-79
lines changed
Expand file tree Collapse file tree 7 files changed +19
-79
lines changed Original file line number Diff line number Diff line change @@ -72,15 +72,6 @@ repos:
7272 - id : markdownlint-cli2
7373 additional_dependencies :
7474 - markdown-it-texmath
75- - repo : https://github.com/astral-sh/ruff-pre-commit
76- rev : v0.7.4
77- hooks :
78- - id : ruff
79- - id : ruff-format
80- - repo : https://github.com/kumaraditya303/mirrors-pyright
81- rev : v1.1.389
82- hooks :
83- - id : pyright
8475 - repo : https://github.com/lunarmodules/luacheck
8576 rev : v1.2.0
8677 hooks :
Original file line number Diff line number Diff line change 99 apt_packages :
1010 - lua-ldoc
1111 - lua-discount
12-
13- formats :
14- - htmlzip
15-
16- python :
17- install :
18- - requirements : docs/requirements.txt
12+ commands :
13+ - ldoc .
14+ - mv doc $READTHEDOCS_OUTPUT/html
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ customize it.
6060See
6161[ ![ readthedocs] ( https://shields.io/readthedocs/prompt-stylelua )] ( https://prompt-stylelua.readthedocs.io ) .
6262
63- ## REPLs for many programs contains a lua interpreters
63+ ## REPLs for many programs containing a lua interpreters
6464
6565### Lua 5.1/LuaJIT
6666
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ { pkgs ? import <nixpkgs> { } } :
2+
3+ with pkgs ;
4+ mkShell {
5+ name = "prompt-style.lua" ;
6+ buildInputs = [
7+ ( luajit . withPackages (
8+ p : with p ; [
9+ luaprompt
10+ ldoc
11+ discount
12+ ]
13+ ) )
14+ ] ;
15+ }
You can’t perform that action at this time.
0 commit comments