UNPKG

textlint-rule-editorconfig

Version:
9 lines (7 loc) 273 B
const fs = require('fs'); const read = (file) => fs.readFileSync('./samples/' + file + '.ini', 'utf-8'); module.exports = { '/.editorconfig': read('py-indent-tab'), '/crlf/.editorconfig': read('root-crlf'), '/crlf/indent-tab/.editorconfig': read('py-indent-tab') };