v3.0.0
Features
v3.0.0 allow following URL string link by default.
Very long <https://example.com?longlonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglong> URL.
You can configure it by skipUrlStringLink options.
BREAKING CHANGES
- skip to count of url string link by default
- Deprecated
exclusionPatternsand useskipPatternsinstead of it - Add
skipUrlStringLinkand Enable it by default
Migration from v2
If you want to get the same behavior to v2, update the package and put the following settings.
{
"rules": {
"sentence-length": {
"max": 100,
- "exclusionPatterns": [
+ "skipPatterns": [
"/\\(.*\\)$\\./"
],
+ "skipUrlStringLink": false
}
}
}