* # This is a combination of 2 commits.
# This is the 1st commit message:
# This is a combination of 3 commits.
# This is the 1st commit message:
# This is a combination of 3 commits.
# This is the 1st commit message:
chore(deps): update dependency onchange to v4.1.0
integrate previous work
enhance tyle/content
reformat part 1
wait for review
adance start_urls
enhance attributes description
fix typo
proofread documentation/docsearch
add apiKey mention
intefrate review and small fixes
finished proofreading
update sclient-rendering
use unseen review
# This is the commit message #2:
update README #269
# This is the commit message #3:
fix json
# This is the commit message #2:
enhance as algolia/docsearch-configs#387
# This is the commit message #3:
updating flavicon
# This is the commit message #2:
Update 1-customize-configuration-file.html.md.erb
* # This is a combination of 2 commits.
# This is the 1st commit message:
# This is a combination of 3 commits.
# This is the 1st commit message:
# This is a combination of 3 commits.
# This is the 1st commit message:
chore(deps): update dependency onchange to v4.1.0
integrate previous work
enhance tyle/content
reformat part 1
wait for review
adance start_urls
enhance attributes description
fix typo
proofread documentation/docsearch
add apiKey mention
intefrate review and small fixes
finished proofreading
update sclient-rendering
use unseen review
# This is the commit message #2:
update README #269
# This is the commit message #3:
fix json
# This is the commit message #2:
enhance as algolia/docsearch-configs#387
# This is the commit message #3:
updating flavicon
# This is the commit message #2:
Update 1-customize-configuration-file.html.md.erb
* documenting algolia/docsearch-scraper#387
* documenting algolia/docsearch-scraper#387
* fixing changelog
* fixing typo
* # This is a combination of 2 commits.
# This is the 1st commit message:
# This is a combination of 3 commits.
# This is the 1st commit message:
# This is a combination of 3 commits.
# This is the 1st commit message:
chore(deps): update dependency onchange to v4.1.0
integrate previous work
enhance tyle/content
reformat part 1
wait for review
adance start_urls
enhance attributes description
fix typo
proofread documentation/docsearch
add apiKey mention
intefrate review and small fixes
finished proofreading
update sclient-rendering
use unseen review
# This is the commit message #2:
update README #269
# This is the commit message #3:
fix json
# This is the commit message #2:
enhance as algolia/docsearch-configs#387
# This is the commit message #3:
updating flavicon
# This is the commit message #2:
Update 1-customize-configuration-file.html.md.erb
* # This is a combination of 2 commits.
# This is the 1st commit message:
# This is a combination of 3 commits.
# This is the 1st commit message:
# This is a combination of 3 commits.
# This is the 1st commit message:
chore(deps): update dependency onchange to v4.1.0
integrate previous work
enhance tyle/content
reformat part 1
wait for review
adance start_urls
enhance attributes description
fix typo
proofread documentation/docsearch
add apiKey mention
intefrate review and small fixes
finished proofreading
update sclient-rendering
use unseen review
# This is the commit message #2:
update README #269
# This is the commit message #3:
fix json
# This is the commit message #2:
enhance as algolia/docsearch-configs#387
# This is the commit message #3:
updating flavicon
# This is the commit message #2:
Update 1-customize-configuration-file.html.md.erb
* documenting algolia/docsearch-scraper#387
* documenting algolia/docsearch-scraper#387
* fixing typo
* fixing style issue
* fixing recurrnet issue
* general github handle
* fixing missed conflict
* fix and closes algolia/docsearch-configs-private#82
* remove builded content
* adding hitsperpage
* fix
* enhance
* doc proof reading part 1
* adding how to build an index and updating content
* reformat
* textlint
* typos
* Update behavior.md
* Update config-file.md
* Update crawler-overview.md
* Update dropdown.md
* Update faq.md
* Update how-do-we-build-an-index.md
* Update how-does-it-work.md
* Update inside-the-engine.md
* Update integrations.md
* Update styling.md
* Update tips.md
* Update who-can-apply.md
* Update integrations.md
* Usefull but sometime we do want to ignore it on purpose
* 4fca279b9a
* auto fix & formating
25 lines
627 B
JavaScript
25 lines
627 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
module.exports = {
|
|
rules: {
|
|
alex: {
|
|
allow: ['color', 'hook', 'host-hostess', 'itch'],
|
|
},
|
|
'common-misspellings': true,
|
|
'en-capitalization': true,
|
|
'stop-words': {
|
|
exclude: [
|
|
'relative to', // We need to talk about links "relative to the root",
|
|
'pick out', // Needed word, not to clumsy
|
|
'encounter', // Needed word, not to clumsy
|
|
],
|
|
},
|
|
terminology: {
|
|
defaultTerms: false,
|
|
terms: `${__dirname}/.textlint.terms.json`,
|
|
},
|
|
'write-good': {
|
|
passive: true,
|
|
severity: 'warning',
|
|
},
|
|
},
|
|
};
|