Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kazupon/textlint-rule-no-period-on-paragraph-end
textlint rule for no period on paragraph end
https://github.com/kazupon/textlint-rule-no-period-on-paragraph-end
rule textlint textlintrule
Last synced: 2 months ago
JSON representation
textlint rule for no period on paragraph end
- Host: GitHub
- URL: https://github.com/kazupon/textlint-rule-no-period-on-paragraph-end
- Owner: kazupon
- License: mit
- Created: 2024-05-22T06:33:01.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-23T03:53:03.000Z (7 months ago)
- Last Synced: 2024-05-23T07:51:35.982Z (7 months ago)
- Topics: rule, textlint, textlintrule
- Language: TypeScript
- Homepage:
- Size: 380 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# textlint-rule-no-period-on-paragraph-end
textlint rule for no period on paragraph end
## đ Rule Details
This rule does not allow punctuation at the end of a paragraph. This use case is used, for example, when you want to express rhythm or lingering phrases in a sentence, such as in the Japanese word "äŊč¨æĸã"(ending a sentence with a noun).
### â NG
```
This is simple paragraph.This paragraph has multiple sentences. First sentence is here. And the last sentence is here.
ããã¯ãˇãŗããĢãĒæŽĩčŊã
ããŽæŽĩčŊãĢã¯č¤æ°ãŽæãããããããæåããããĻãããæåžãŽæã
```### â OK
```
This is simple paragraphThis paragraph has multiple sentences. First sentence is here. And the last sentence is here
ããã¯ãˇãŗããĢãĒæŽĩčŊ
ããŽæŽĩčŊãĢã¯č¤æ°ãŽæãããããããæåããããĻãããæåžãŽæ
```## đŋ Installlation
Install with [npm](https://www.npmjs.com/):
```sh
npm install textlint-rule-no-period-on-paragraph-end
```## đ Usages
Via `.textlintrc.json`(Recommended):
```json
{
"rules": {
"no-period-on-paragraph-end": true
}
}
```Via CLI
```sh
textlint --rule no-period-on-paragraph-end README.md
```## đ Contributing guidelines
If you are interested in contributing to `textlint-rule-no-period-on-paragraph-end`, I highly recommend checking out [the contributing guidelines](/CONTRIBUTING.md) here. You'll find all the relevant information such as [how to make a PR](/CONTRIBUTING.md#pull-request-guidelines), [how to setup development](/CONTRIBUTING.md#development-setup)) etc., there.
## Šī¸ License
[MIT](http://opensource.org/licenses/MIT)