forked from open-telemetry/opentelemetry.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.textlintrc.yml
155 lines (155 loc) · 3.88 KB
/
.textlintrc.yml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# cspell:ignore ebpf postgres
plugins:
'@textlint/markdown':
extensions: [.yml]
filters:
comments:
disablingComment: prettier-ignore-start
enablingComment: prettier-ignore-end
allowlist:
allow:
# Don't check registry .yml file fields for language, repo and tags:
- '/^(?:language|repo): .*$/m'
- /^tags:(\s*-.+$)*/m
# Hugo template syntax:
- /{{.*?}}/
- /{{%.*?%}}/
# Custom header anchors in markdown headings:
- /{#.*?}/
# src attribute in figure Hugo template:
- /src=".*?"/
# Other:
- /<https?://.*?>/ # Raw URLs
rules:
terminology:
defaultTerms: false
skip: []
terms:
- Ajax
- Apache
- API
- AWS
- Azure
- Caml
- Cassandra
- Clojure
- CNCF
- eBPF
- ECMAScript
- Elixir
- Erlang
- GCP
- GitHub
- Gitpod
- GraphQL
- gRPC
- Haskell
- HTTP
- HTTPS
- ID
- iOS
- Jaeger
- JavaScript
- JBoss
- Jetty
- JMX
- JSON
- Julia
- K8s
- Kafka
- KubeCon
- Kubernetes
- Laravel
- MacBook
- macOS
- MongoDB
- MySQL
- NDJSON
- Netlify
- NGINX
- OCaml
- OK
- OpAMP
- OpenSearch
- OpenTelemetry Collector
- OTel
- OTEP
- PDF
- Phoenix
- PHP
- PostgreSQL
- protobuf
- Python
- Quarkus
- Rails
- Redis
- Ruby
- Rust
- SDK
- SemVer
- SQL
- SQLite
- Swift
- Symfony
- Thanos
- Traefik
- TypeScript
- URL
- WordPress
- WSGI
- YouTube
- Zend
- Zipkin
#
# ADVANCED RULES given as `[pattern, replacement]`, take as arguments to a
# search-and-replace of the form /pattern/replacement/.
#
# If the regex pattern starts with `(?<` or `(?=` or `(?!`, the
# terminology linter rule will use the regex AS IS to match strings in
# checked files. Otherwise, the pattern is wrapped into a regex with other
# constraints, such as requiring that is be at word boundaries. For
# details, see
# https://github.com/sapegin/textlint-rule-terminology/blob/ca36a645c56d21f27cb9d902b5fb9584030c59e3/index.js#L137-L142.
#
- ['3rd[- ]party', third-party]
- [cpp, C++]
- # dotnet|.net -> .NET, but NOT for strings like:
# - File extension: file.net
# - Repo names: opentelemetry-dotnet
# - Compound names: System.Net.Http.HttpClient
- '(?<=(^|\s))(?:\bdot|\.)net\b'
- .NET
- [ebpf, eBPF]
- ['http[ /]?2(?:\.0)?', HTTP/2]
- [he(/| or )she, they]
- [\(s\)he, they]
- ["id['’]?s", IDs]
- # Capitalize Java, but NOT for strings like:
# - File names: file.java
# - Repo names: opentelemetry-java
# - Compound names: java.util.List
- '(?<![.-])java\b(?![.])'
- Java
- ['java[- ]?agent', Java agent]
- [mac ?os, macOS]
- ['meta[- ]data', metadata]
- [nd-?json, NDJSON]
- [node\.?js, Node.js]
- [open-source, open source]
- # OpenTelemetry, exclude occurrences like:
# - Compound names: go.opentelemetry.io
# - Paths: medium.com/opentelemetry
# - Repo names: opentelemetry-cpp or ocaml-opentelemetry
# - Slack or social media anchors: #opentelemetry or @opentelemetry
- '(?<![-#@./])\bopen[- ]?telemetry\b(?![.-])'
- OpenTelemetry
- [os x, macOS]
- [postgres, PostgreSQL]
- ['psr[ -]?([0-9]+)', PSR-$1]
- ['react[ .]js', React]
- [regexp?(s)?, regular expression$1]
- [repo\b, repository]
- [repos, repositories]
- ['screen[- ]shot(s)?', screenshot$1]
- ['time[- ]stamp(s)?', timestamp$1]
- ["uid['’]?(s)?", UID$1]