zhlint
zhlint copied to clipboard
A linting tool for Chinese language.
zhlint
A linting tool for Chinese text content.
How to install
You could easily install zhlint through npm or yarn:
# install through npm
npm install zhlint -g
# or through yarn
yarn global add zhlint
# or through pnpm
pnpm add zhlint -g
Usage
As CLI
# glob files, lint them, and print validation report,
# and exit with code `1` if there is any error found.
zhlint <file-pattern>
# glob files and fix their all possilbly found errors.
zhlint <file-pattern> --fix
# lint the file and output fixed content into another file
zhlint <input-file-path> --output=<output-file-path>
# print usage info
zhlint --help
The validation report might look like this:

As Node.js package
const { run, report } = require('zhlint')
const value = '自动在中文和English之间加入空格'
const options = { rules: { preset: 'default' } }
const output = run(value, options)
// print '自动在中文和 English 之间加入空格''
console.log(output.result)
// print validation report
report([output])
And the format of validation report is more like this:
1:6 - 此处中英文内容之间需要一个空格
自动在中文和English之间加入空格
^
1:13 - 此处中英文内容之间需要一个空格
自动在中文和English之间加入空格
^
Invalid files:
- foo.md
Found 2 errors.
As a standalone package
You could find a JavaScript file dist/zhlint.js as a standalone version. To use it, for example, you can directly add it into your browser as a <script> tag. Then there would be a global variable zhlint for you.

API
run(str: string, options?: Options): Result: Lint a certain file.- parameters:
str: The text content you want to lint.options: Some options to config.
- returns:
- The result of a single piece of input string. It contains fixed text content as
valueand the infor of allvalidations.
- The result of a single piece of input string. It contains fixed text content as
- parameters:
report(results: Result[], logger?: Console): void: Print out the validation reports for each file.- parameters:
results: An array for all linted results.logger: The logger instance, by default it'sconsolein Node.js/browser.
- parameters:
Options
Customize your own linting config and other advanced options.
type Options = {
rules?: RuleOptions
hyperParse?: string[]
ignoredCases?: IgnoredCase[]
logger?: Console
}
rules: customize the linting config. It could beundefinedwhich means linting nothing. It could be{ preset: 'default' }which just uses the default config. For more details ofRuleOptions, please see supported ruleshyperParse: customize the hyper parser by their names. It could beundefinedwhich means just use default ignored cases parser, Markdown parser and the Hexo tags parser.ignoredCases: provide exception cases which you would like to skip.IgnoredCase:{ prefix?, textStart, textEnd?, suffix? }- Just follows a certain format inspired from W3C Scroll To Text Fragment Proposal.
logger: same to the parameter inreport(...).
Output
type Result = {
// the basic info and availability of the file
file?: string
disabled: boolean
// the original content of the file
origin: string
// all the error messages
validations: Validation[]
}
type Validation = {
message: string
index: number
length: number
}
Resultfile: The file name. It's an optional field which is only used in CLI.origin: the original text content.result: the finally fixed text content.validations: All the validation information.
Validationindex: The index of the target token in the input string.length: The length of the target token in the input string.message: The description of this validation in natural language.
Features
Markdown syntax support
We support lint your text content in Markdown syntax by default. For example:
run('自动在_中文_和**English**之间加入空格', options)
It will analyse the Markdown syntax first and extract the pure text content and do the lint job. After that the fixed pure text content could be replaced back to the raw Markdown string and returned as the output value in result.
Hexo tags syntax support
Specially, we support Hexo tags syntax just because when we use Hexo to build Vue.js website, the markdown source files more or less include special tags like that so got the unpredictable result.
As a result, we additionally skip the Hexo-style tags by default. For example:
run(
'现在过滤器只能用在插入文本中 (`{% raw %}{{ }}{% endraw %}` tags)。',
options
)
Setup ignored cases
In some real cases we have special text contents not follow the rules by reason. So we could ues ignoredCases option to config that. For example we'd like to keep the spaces inside a pair of brackets, which is invalid by default. Then we could write one more line of HTML comment anywhere inside the file:
<!-- the good case -->
text before (text inside) text after
<!-- the bad case -->
vm.$on( event, callback )
<!-- then we could write this down below to make it work -->
<!-- zhlint ignore: ( , ) -->
or just pass it through as an option:
run(str, { ignoredCases: { textStart: '( ', textEnd: ' )' } })
Supported preproccessors (hyper parsers)
ignore: find all ignored pieces by the HTML comment<!-- zhlint ignore: ... -->hexo: find all Hexo tags to avoid them being parsed.markdown: parse by markdown syntax and find all block-level texts and inline-level marks.
Supported rules
Almost the rules come from the past translation experiences in W3C HTML Chinese interest group and Vue.js Chinese docsite.
... and this part might be controversial. So if you don't feel well at some point, we definitely would love to know and improve. Opening an issue is always welcome. Then we could discuss about the possible better option or decision.
type RuleOptions = {
/* PRESET */
// Custom preset, currently only support:
// - `'default'`
preset?: string
/* PUNCTUATIONS */
// Convert these punctuations into half-width.
// default preset: `()`
// e.g. `(文字)` -> `(文字)`
halfWidthPunctuation?: string
// Convert these punctuations into full-width.
// default preset: `,。:;?!“”‘’`
// e.g. `文字,文字.` -> `文字,文字。`
fullWidthPunctuation?: string
// Treat these full-width punctuations as half-fullWidthPunctuation
// when processing the spaces issues around them.
// Since something like quotes in morder Chinese fonts are
// only rendered in half-width.
// default preset: `“”‘’`
adjustedFullWidthPunctuation?: string
// Convert traditional Chinese punctuations into simplified ones or vice versa.
// default preset: `simplified`
// e.g. `「文字」` -> `“文字”`
unifiedPunctuation?: 'traditional' | 'simplified'
// Special case: skip `fullWidthPunctuation` for abbreviations.
// default preset:
// `['Mr.','Mrs.','Dr.','Jr.','Sr.','vs.','etc.','i.e.','e.g.','a.k.a']`
skipAbbrs?: string[]
/* SPACES AROUND LETTERS */
// default preset: `true`
// - `true`: one space
// - `undefined`: do nothing
// e.g. `foo bar` -> `foo bar`
spaceBetweenHalfWidthLetters?: boolean
// default preset: `true`
// - `true`: zero space
// - `undefined`: do nothing
// e.g. `文 字` -> `文字`
noSpaceBetweenFullWidthLetters?: boolean
// default preset: `true`
// - `true`: one space
// - `false`: zero space
// - `undefined`: do nothing
// e.g. `文字 foo文字` -> `文字 foo 文字` (`true`)
// e.g. `文字foo 文字` -> `文字foo文字` (`false`)
spaceBetweenMixedWidthLetters?: boolean
// Special case: skip `spaceBetweenMixedWidthContent`
// for numbers x Chinese units.
// default preset: `年月日天号时分秒`
skipZhUnits?: string
/* SPACES AROUND PUNCTUATIONS */
// default preset: `true`
// - `true`: zero space
// - `undefined`: do nothing
// e.g. `文字 ,文字` -> `文字,文字`
noSpaceBeforePunctuation?: boolean
// default preset: `true`
// - `true`: one space
// - `false`: zero space
// - `undefined`: do nothing
// e.g. `文字,文字` -> `文字, 文字` (`true`)
// e.g. `文字, 文字` -> `文字,文字` (`false`)
spaceAfterHalfWidthPunctuation?: boolean
// default preset: `true`
// - `true`: zero space
// - `undefined`: do nothing
// e.g. `文字, 文字` -> `文字,文字`
noSpaceAfterFullWidthPunctuation?: boolean
/* SPACES AROUND QUOTES */
// default preset: `true`
// - `true`: one space
// - `false`: zero space
// - `undefined`: do nothing
// e.g. `文字 "文字"文字` -> `文字 "文字" 文字` (`true`)
// e.g. `文字"文字" 文字` -> `文字"文字"文字` (`false`)
spaceOutsideHalfQuote?: boolean
// default preset: `true`
// - `true`: zero space
// - `undefined`: do nothing
// e.g. `文字 “文字” 文字` -> `文字“文字”文字`
noSpaceOutsideFullQuote?: boolean
// default preset: `true`
// - `true`: zero space
// - `undefined`: do nothing
// e.g. `文字“ 文字 ”文字` -> `文字“文字”文字`
noSpaceInsideQuote?: boolean
/* SPACES AROUND BRACKETS */
// default preset: `true`
// - `true`: one space
// - `false`: zero space
// - `undefined`: do nothing
spaceOutsideHalfBracket?: boolean
// default preset: `true`
// - `true`: zero space
// - `undefined`: do nothing
noSpaceOutsideFullBracket?: boolean
// default preset: `true`
// - `true`: zero space
// - `undefined`: do nothing
noSpaceInsideBracket?: boolean
/* SPACES AROUND CODE */
// default preset: `true`
// - `true`: one space
// - `false`: zero space
// - `undefined`: do nothing
// e.g. '文字 `code`文字' -> '文字 `code` 文字' ('true')
// e.g. '文字`code` 文字' -> '文字`code`文字' ('false')
spaceOutsideCode?: boolean
/* SPACES AROUND MARKDOWN/HTML WRAPPERS */
// default `true`
// - `true`: zero space
// - `undefined`: do nothing
// e.g. `文字** foo **文字` -> `文字 **foo** 文字`
noSpaceInsideWrapper?: boolean
/* SPACES AT THE BEGINNING/END */
// default `true`
// e.g. ` 文字 ` -> `文字`
trimSpace?: boolean
}