@fenril058/textlint-plugin-org 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -11
- package/package.json +60 -59
package/README.md
CHANGED
|
@@ -15,13 +15,12 @@ What is textlint plugin? Please see https://github.com/textlint/textlint/blob/ma
|
|
|
15
15
|
## Try run by Docker
|
|
16
16
|
|
|
17
17
|
```shell
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
*.org
|
|
18
|
+
docker run -v "$(pwd)":/work \
|
|
19
|
+
--rm -it ghcr.io/fenril058/textlint-plugin-org \
|
|
20
|
+
textlint \
|
|
21
|
+
--plugin org \
|
|
22
|
+
--rule textlint-rule-preset-ja-technical-writing \
|
|
23
|
+
*.org
|
|
25
24
|
```
|
|
26
25
|
|
|
27
26
|
## Install
|
|
@@ -56,19 +55,19 @@ $ textlint --plugin org test.org
|
|
|
56
55
|
## Test
|
|
57
56
|
|
|
58
57
|
```sh
|
|
59
|
-
|
|
58
|
+
pnpm test
|
|
60
59
|
```
|
|
61
60
|
|
|
62
61
|
## Lint
|
|
63
62
|
|
|
64
63
|
```sh
|
|
65
|
-
|
|
64
|
+
pnpm run lint
|
|
66
65
|
```
|
|
67
66
|
|
|
68
67
|
## Release
|
|
69
68
|
|
|
70
69
|
```sh
|
|
71
|
-
|
|
70
|
+
pnpm version patch
|
|
72
71
|
git push origin main --follow-tags
|
|
73
|
-
|
|
72
|
+
pnpm publish
|
|
74
73
|
```
|
package/package.json
CHANGED
|
@@ -1,60 +1,61 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
2
|
+
"name": "@fenril058/textlint-plugin-org",
|
|
3
|
+
"version": "0.4.1",
|
|
4
|
+
"description": "Maintained fork of textlint-plugin-org for Org mode",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/fenril058/textlint-plugin-org.git"
|
|
8
|
+
},
|
|
9
|
+
"author": "Kijima Daigo",
|
|
10
|
+
"contributors": [
|
|
11
|
+
"ril"
|
|
12
|
+
],
|
|
13
|
+
"license": "GPLv3",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/fenril058/textlint-plugin-org/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/fenril058/textlint-plugin-org#readme",
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"main": "lib/index.js",
|
|
22
|
+
"files": [
|
|
23
|
+
"lib",
|
|
24
|
+
"src"
|
|
25
|
+
],
|
|
26
|
+
"directories": {
|
|
27
|
+
"test": "test"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@textlint/ast-node-types": "^15.6.0",
|
|
31
|
+
"orga": "4.7.1",
|
|
32
|
+
"structured-source": "^4.0.0",
|
|
33
|
+
"unist-util-visit": "^5.1.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@eslint/js": "^10.0.1",
|
|
37
|
+
"@textlint/ast-tester": "^15.6.0",
|
|
38
|
+
"@textlint/kernel": "^15.6.0",
|
|
39
|
+
"@textlint/types": "^15.7.1",
|
|
40
|
+
"@types/node": "^26.0.1",
|
|
41
|
+
"@types/unist": "^3.0.3",
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "^8.59.2",
|
|
43
|
+
"@typescript-eslint/parser": "^8.59.2",
|
|
44
|
+
"eslint": "^10.3.0",
|
|
45
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
46
|
+
"eslint-plugin-import-x": "^4.16.2",
|
|
47
|
+
"globals": "^17.6.0",
|
|
48
|
+
"textlint-rule-max-comma": "^4.0.0",
|
|
49
|
+
"ts-node": "^10.9.2",
|
|
50
|
+
"ts-node-test-register": "^10.0.0",
|
|
51
|
+
"tsx": "^4.21.0",
|
|
52
|
+
"typescript": "^6.0.3",
|
|
53
|
+
"typescript-eslint": "^8.59.2"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"build": "tsc -b && tsc -b tsconfig.json",
|
|
57
|
+
"test": "tsx --test",
|
|
58
|
+
"watch": "tsc -b --watch",
|
|
59
|
+
"lint": "pnpx eslint src/**/*.ts"
|
|
60
|
+
}
|
|
61
|
+
}
|