| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "config": {
- "default": true,
- "blanks-around-fences": false,
- "blanks-around-lists": false,
- "first-line-heading": false,
- "line-length": false,
- "no-hard-tabs": false,
- "no-inline-html": {
- "allowed_elements": ["br", "img", "kbd", "translations", "meta"]
- },
- "no-multiple-blanks": {
- "maximum": 2
- },
- "no-trailing-spaces": true,
- "table-column-style": false,
- "ul-indent": false,
- "ul-style": {
- "style": "consistent"
- }
- },
- // Markdown files to lint (previously the '**/*.md' CLI argument)
- "globs": [
- "**/*.md"
- ],
- "ignores": [
- "**/node_modules/**",
- "extensions/**",
- "lib/marienfressinaud/**",
- "lib/phpgt/**",
- "lib/phpmailer/**",
- "lib/simplepie/**",
- "p/scripts/vendor/**",
- "vendor/**"
- ]
- }
|