Turns off all rules that are unnecessary or might conflict with Prettier.
npm install remark-preset-prettier









> Turns off all rules that are unnecessary or might conflict with [Prettier][].
- Notice
- Disabled remark-lint plugins
- Install
- Usage
- Via config like .remarkrc
- Via ESLint(recommended)
- Via remark-cli
- Via Node API
- remark-retext issue
- Sponsors
- Backers
- Changelog
- License
If you're not ready for native ESM, top level await or latest remark-lint plugins, please use versions <1, see #61 and #97 for more details.
1. blank-lines-1-0-2
2. blockquote-indentation
3. books-links
4. checkbox-character-style
5. code-block-style
6. definition-case
7. definition-spacing
8. emphasis-marker
9. fenced-code-marker
10. final-newline
11. hard-break-spaces
12. heading-style
13. heading-whitespace
14. link-title-style
15. list-item-bullet-indent
16. list-item-content-indent
17. list-item-indent
18. list-item-spacing
19. maximum-line-length
20. no-blockquote-without-marker
21. no-consecutive-blank-lines
22. no-heading-content-indent
23. no-inline-padding
24. no-long-code
25. no-table-indentation
26. ordered-list-marker-style
27. ordered-list-marker-value
28. rule-style
29. spaces-around-number
30. spaces-around-word
31. strong-marker
32. table-cell-padding
33. table-pipe-alignment
34. table-pipes
35. unordered-list-marker-style
``shyarn
yarn add -D remark-preset-prettier
Usage
$3
`json
{
"plugins": [
"preset-lint-consistent",
"preset-lint-markdown-style-guide",
"preset-lint-recommended",
"preset-prettier"
]
}
`$3
Please use _[eslint-plugin-mdx][]_ which works perfectly with [ESLint][] and [Remark][] both together.
`jsonc
{
"extends": "plugin:mdx/recommended",
}
`$3
`sh
remark . --use preset-lint-consistent preset-lint-markdown-style-guide preset-lint-recommended preset-prettier
`$3
`js
import report from 'vfile-reporter'
import remark from 'remark'
import consistent from 'remark-preset-lint-consistent'
import styleGuide from 'remark-preset-lint-markdown-style-guide'
import recommended from 'remark-preset-lint-recommended'
import prettier from 'remark-preset-prettier'const file = remark()
.use(consistent)
.use(styleGuide)
.use(recommended)
.use(prettier)
.processSync('_Hello world_')
console.log(report(file))
`[remark-retext][] issue
[retext-sentence-spacing][] is a plugin of [retext][], and [remark-retext][] makes it possible to use [retext][] plugins together with [remark][], and [retext-sentence-spacing][] may conflict with [Prettier][].
However, [remark-retext][] can only be enabled once what means we can not simply disable rule [retext-sentence-spacing][] in this preset which is actually meaningless.
If you do have problems between [retext-sentence-spacing][] and [Prettier][], you have to override the whole configuration of [remark-retext][] like following:
`js
// .remarkrc.js
import wooorm from 'retext-preset-wooorm'
import sentenceSpacing from 'retext-sentence-spacing'export default {
plugins: [
'preset-wooorm', // other preset(s) or plugin(s)
'preset-prettier',
[
'retext',
unified()
.use(wooorm) // retext preset(s)
.use({
plugins: [[sentenceSpacing, false]],
}),
],
],
}
``
| 1stG | RxTS | UnTS |
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
|  |  |  |
| 1stG | RxTS | UnTS |
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
|  |  |  |
Detailed changes for each release are documented in CHANGELOG.md.
[MIT][] © [JounQin][]@[1stG.me][]
[1stg.me]: https://www.1stg.me
[eslint]: https://eslint.org
[eslint-plugin-mdx]: https://github.com/rx-ts/eslint-mdx
[jounqin]: https://GitHub.com/JounQin
[mit]: http://opensource.org/licenses/MIT
[prettier]: https://prettier.io
[remark]: https://github.com/remarkjs/remark
[remark-retext]: https://github.com/remarkjs/remark-retext
[retext]: https://github.com/retextjs/retext
[retext-sentence-spacing]: https://github.com/retextjs/retext-sentence-spacing