aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro@gmail.com>2022-05-14 19:09:33 +0200
committerGitHub <noreply@github.com>2022-05-14 19:09:33 +0200
commit83da441d165e6ed28c8515934000e3b57e1a7598 (patch)
treeef919e0fc37cd7b7b257513905cde2eafcc3cb68 /runtime
parentd547e21f9edfb600c8a55a23db1ad847d35b53a0 (diff)
parent3bd7246f5af4451ec775616d3570b6a57bcf7108 (diff)
downloadrneovim-83da441d165e6ed28c8515934000e3b57e1a7598.tar.gz
rneovim-83da441d165e6ed28c8515934000e3b57e1a7598.tar.bz2
rneovim-83da441d165e6ed28c8515934000e3b57e1a7598.zip
Merge pull request #18537 from dundargoc/ci/clint
ci(clint): remove check for include order
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/dev_style.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/runtime/doc/dev_style.txt b/runtime/doc/dev_style.txt
index 82f279e781..aad0842497 100644
--- a/runtime/doc/dev_style.txt
+++ b/runtime/doc/dev_style.txt
@@ -48,22 +48,6 @@ The format of the symbol name should be `NVIM_<DIRECTORY>_<FILE>_H`.
<
-Names and Order of Includes ~
-
-Use standard order for readability and to avoid hidden dependencies: C
-library, other libraries' `.h`, your project's `.h`.
-
- In foo.c order your includes as follows:
-
- 1. C system files.
- 2. Other libraries' `.h` files.
- 3. Your project's `.h` files.
-
- Exception: sometimes, system-specific code needs conditional includes.
- Such code can put conditional includes after other includes. Of course,
- keep your system-specific code small and localized.
-
-
Constants ~
Do not use macros to define constants in headers.