We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 29162cc + bea102f commit 98c6c23Copy full SHA for 98c6c23
.codespellrc
@@ -7,6 +7,7 @@ check-filenames =
7
check-hidden =
8
ignore-words-list =
9
deafults,
10
+ gost,
11
empress,
12
master,
13
musl,
.editorconfig
@@ -14,7 +14,7 @@ charset = utf-8
14
[*.{c,h}]
15
indent_style = tab
16
17
-[*.{html,json,md,sh,yaml,yml}]
+[*.{html,json,md,sh,toml,yaml,yml}]
18
indent_size = 2
19
20
[Makefile]
.github/workflows/check.yaml
@@ -30,6 +30,7 @@ jobs:
30
- name: Install checking tools
31
run: |
32
pipx install codespell
33
+ cargo install typos-cli --locked
34
curl -OL https://github.com/petk/normalizator/releases/latest/download/normalizator.phar
35
chmod +x normalizator.phar
36
mv normalizator.phar /usr/local/bin/normalizator
@@ -41,6 +42,10 @@ jobs:
41
42
if: ${{ always() }}
43
run: codespell
44
45
+ - name: Run typos
46
+ if: ${{ always() }}
47
+ run: typos
48
+
49
- name: Run normalizator.phar
50
51
run: normalizator check --not php-src --not .git .
.typos.toml
@@ -0,0 +1,29 @@
1
+# The typos-cli configuration.
2
+# https://github.com/crate-ci/typos
3
4
+[files]
5
+ignore-hidden = false
6
+ignore-dot = false
+extend-exclude = [
+ ".git/",
+ "*.svg",
+ "patches/",
+]
+[default]
+binary = false
+check-filename = true
+check-file = true
+unicode=true
+locale = "en-us"
+extend-ignore-re = []
+extend-ignore-identifiers-re = [
21
+ "PDO_DBLIB_FLAVOUR",
22
+ "secur32",
23
24
+extend-ignore-words-re = [
25
+ "deafults",
26
+ "flavour",
27
+ "gost",
28
+ "shs",
29
docs/cmake/differences.md
@@ -70,7 +70,7 @@ build system:
70
* In CMake the install prefix can be also changed during the installation phase
71
using the `cmake --install <build-dir> --prefix <install-prefix>`. In PHP
72
native Autotools-based build system, installation prefix can be only set at
73
- the configure phase using the `./configure --prefix=<installl-prefix>`, which
+ the configure phase using the `./configure --prefix=<install-prefix>`, which
74
is a regression for the `main/build-defs.h` and `main/php_config.h` files,
75
where the installation prefix in PHP is hardcoded during the build phase and
76
cannot be changed during the installation phase. For the generated files
docs/php-installation.md
@@ -423,7 +423,7 @@ PHP installation directory structure when using CMake:
423
> adjustments are done when install prefix is `/` or `/opt/...`. See
424
> [GNUInstallDirs](https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html#special-cases)
425
> for more info. The [PHP/Install](/docs/cmake/modules/PHP/Install.md) bypasses
426
-> some of these adjustmens inside the `install()` command for convenience.
+> some of these adjustemens inside the `install()` command for convenience.
427
428
Instead of setting the installation prefix at the configuration phase using
429
`CMAKE_INSTALL_PREFIX` variable or `--install-prefix` option, there is
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments