Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
https://markdown-it.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
401 B
28 lines
401 B
extends: standard
|
|
|
|
env:
|
|
es6: true
|
|
node: true
|
|
|
|
parserOptions:
|
|
ecmaVersion: 2022
|
|
|
|
overrides:
|
|
-
|
|
files: [ '*.mjs' ]
|
|
parserOptions:
|
|
sourceType: module
|
|
rules:
|
|
no-restricted-globals: [ 2, require, __dirname ]
|
|
|
|
ignorePatterns:
|
|
- demo/
|
|
- dist/
|
|
- benchmark/extra/
|
|
|
|
rules:
|
|
camelcase: 0
|
|
key-spacing: 0
|
|
no-multi-spaces: 0
|
|
no-multiple-empty-lines: 0
|
|
padded-blocks: 0
|
|
|