retext-passive

retext plugin to check for passive voice

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
retext-passive
1505.0.08 months ago8 years agoMinified + gzip package size for retext-passive in KB

Readme

retext-passive
!Buildbuild-badgebuild !Coveragecoverage-badgecoverage !Downloadsdownloads-badgedownloads !Sizesize-badgesize !Sponsorssponsors-badgecollective !Backersbackers-badgecollective !Chatchat-badgechat
retext plugin to check for passive voice.

Contents

*   [`unified().use(retextPassive[, options])`](#unifieduseretextpassive-options)
*   [`Options`](#options)

What is this?

This package is a unified
(retext) plugin to check for the passive voice. It checks for certain verbs ('am', 'are', 'were', 'being', 'is', 'been', 'was', or 'be'), followed by a word in list.jsfile-list.

When should I use this?

You can opt-into this plugin when you’re dealing with content that might contain weak language, and have authors that can fix that content.

Install

This package is ESM onlyesm. In Node.js (version 16+), install with npm:
npm install retext-passive

In Deno with esm.shesmsh:
import retextPassive from 'https://esm.sh/retext-passive@5'

In browsers with esm.shesmsh:
<script type="module">
  import retextPassive from 'https://esm.sh/retext-passive@5?bundle'
</script>

Use

Say our document example.txt contains:
He was withheld while we were being fed.

…and our module example.js contains:
import retextEnglish from 'retext-english'
import retextPassive from 'retext-passive'
import retextStringify from 'retext-stringify'
import {read} from 'to-vfile'
import {unified} from 'unified'
import {reporter} from 'vfile-reporter'

const file = await unified()
  .use(retextEnglish)
  .use(retextPassive)
  .use(retextStringify)
  .process(await read('example.txt'))

console.error(reporter(file))

…then running node example.js yields:
example.txt
1:8-1:16  warning Unexpected use of the passive voice withheld retext-passive
1:37-1:40 warning Unexpected use of the passive voice fed      retext-passive

⚠ 2 warnings

API

This package exports no identifiers. The default export is retextPassiveapi-retext-passive.

unified().use(retextPassive[, options])

Check for the passive voice.
Parameters
— configuration
Returns
Transform (Transformerunified-transformer).

Options

Configuration (TypeScript type).
Fields
  • ignore (Array<string>, optional)
— phrases *not* to warn about

Messages

Each message is emitted as a VFileMessagevfile-message on file, with source set to 'retext-passive', ruleId to any word in list.jsfile-list, actual to the unexpected phrase, and expected to an empty array.

Types

This package is fully typed with TypeScript. It exports the additional type Optionsapi-options.

Compatibility

Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, retext-passive@^5, compatible with Node.js 16.

Related

— check possible insensitive, inconsiderate language
— check for profane and vulgar wording
— check phrases for simpler alternatives

Contribute

See contributing.mdcontributing in retextjs/.githubhealth for ways to get started. See support.mdsupport for ways to get help.
This project has a code of conductcoc. By interacting with this repository, organization, or community you agree to abide by its terms.

License

MITlicense © Titus Wormerauthor