File tree 7 files changed +19
-79
lines changed
7 files changed +19
-79
lines changed Original file line number Diff line number Diff line change @@ -72,15 +72,6 @@ repos:
72
72
- id : markdownlint-cli2
73
73
additional_dependencies :
74
74
- 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
84
75
- repo : https://github.com/lunarmodules/luacheck
85
76
rev : v1.2.0
86
77
hooks :
Original file line number Diff line number Diff line change 9
9
apt_packages :
10
10
- lua-ldoc
11
11
- 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.
60
60
See
61
61
[ ![ readthedocs] ( https://shields.io/readthedocs/prompt-stylelua )] ( https://prompt-stylelua.readthedocs.io ) .
62
62
63
- ## REPLs for many programs contains a lua interpreters
63
+ ## REPLs for many programs containing a lua interpreters
64
64
65
65
### Lua 5.1/LuaJIT
66
66
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