mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01:00
Fix line lengths in documentation and lint *.book
files as JSON.
Summary: Fix a few "line too long" lint issues in the Diviner documentation. Also lint `*.book` files as JSON. Test Plan: Eye-ball it. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9695
This commit is contained in:
parent
21a2597421
commit
464979302b
6 changed files with 13 additions and 9 deletions
1
.arclint
1
.arclint
|
@ -32,6 +32,7 @@
|
|||
"json": {
|
||||
"type": "json",
|
||||
"include": [
|
||||
"(^src/docs/book/.*\\.book$)",
|
||||
"(^support/jshint/jshintconfig$)",
|
||||
"(^\\.arcconfig$)",
|
||||
"(^\\.arclint$)",
|
||||
|
|
|
@ -69,7 +69,8 @@ gather concrete performance data.
|
|||
- Follow language-specific conventions.
|
||||
- Name things unambiguously.
|
||||
- Choose descriptive names.
|
||||
- Avoid nonstandard abbreviations (common abbreviations like ID, URI and HTTP are fine).
|
||||
- Avoid nonstandard abbreviations (common abbreviations like ID, URI and HTTP
|
||||
are fine).
|
||||
- Spell words correctly.
|
||||
- Use correct grammar.
|
||||
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
@title PHP Coding Standards
|
||||
@group standards
|
||||
|
||||
This document describes PHP coding standards for Phabricator and related projects (like Arcanist and libphutil).
|
||||
This document describes PHP coding standards for Phabricator and related
|
||||
projects (like Arcanist and libphutil).
|
||||
|
||||
= Overview =
|
||||
|
||||
|
|
|
@ -79,8 +79,8 @@ reviewing big checkins.
|
|||
|
||||
= Write Sensible Commit Messages =
|
||||
|
||||
There are lots of resources for this on the internet. All of them say pretty much
|
||||
the same thing; this one does too.
|
||||
There are lots of resources for this on the internet. All of them say pretty
|
||||
much the same thing; this one does too.
|
||||
|
||||
The single most important thing is: **commit messages should explain //why// you
|
||||
are making the change**.
|
||||
|
|
|
@ -37,8 +37,9 @@ make this work, you need to do three things:
|
|||
= Create a libphutil Library =
|
||||
|
||||
If you haven't created a library for the class to live in yet, you need to do
|
||||
that first. Follow the instructions in @{article:libphutil Libraries User Guide},
|
||||
then make the library loadable by adding it to your ##.arcconfig## like this:
|
||||
that first. Follow the instructions in
|
||||
@{article:libphutil Libraries User Guide}, then make the library loadable by
|
||||
adding it to your ##.arcconfig## like this:
|
||||
|
||||
{
|
||||
// ...
|
||||
|
|
|
@ -45,9 +45,9 @@ look like this:
|
|||
|
||||
The properties in this file are:
|
||||
|
||||
- `name`: Required. Short, unique name to identify the documentation book. This
|
||||
will be used in URIs, so it should not have special characters. Good names
|
||||
are things like `"example"` or `"libcabin"`.
|
||||
- `name`: Required. Short, unique name to identify the documentation book.
|
||||
This will be used in URIs, so it should not have special characters. Good
|
||||
names are things like `"example"` or `"libcabin"`.
|
||||
- `root`: Required. The root directory (relative to the `.book` file) which
|
||||
documentation should be generated from. Often this will be a value like
|
||||
`"../../"`, to specify the project root (for example, if the `.book` file
|
||||
|
|
Loading…
Reference in a new issue