Revision 7bf415412ac4712fb89d057600c271b876cdc7af authored by Boris Sekachev on 29 October 2021, 06:11:05 UTC, committed by GitHub on 29 October 2021, 06:11:05 UTC
* Fix different project configs

* Sorted out all eslint configurations

* Return package-lock file created with npm 7 (just in case of compatibility issues), prev was 8

* Changed based image to lts slim
1 parent b574679
Raw File
.remarkrc.js
exports.settings = { bullet: '*', paddedTable: false };

exports.plugins = [
    'remark-frontmatter',
    'remark-gfm',
    'remark-preset-lint-recommended',
    'remark-preset-lint-consistent',
    ['remark-lint-list-item-indent', 'space'],
    ['remark-lint-no-dead-urls', false], // Does not work because of github protection system
    ['remark-lint-maximum-line-length', 120],
    ['remark-lint-maximum-heading-length', 120],
    ['remark-lint-strong-marker', '*'],
    ['remark-lint-emphasis-marker', '_'],
    ['remark-lint-unordered-list-marker-style', '-'],
    ['remark-lint-ordered-list-marker-style', '.'],
    ['remark-lint-no-file-name-irregular-characters', false],
    ['remark-lint-list-item-spacing', false],
];
back to top