Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ module.exports.options = {
*
* This matches when a new line or start of a blank line
* does not start with an upper case letter.
* It also matches a period not fllowed by an upper case letter.
* It also matches a period not followed by an upper case letter.
* Allow lower letter after period if no any space. For example:
* Overriding Application.components.UserProfile component.
*/
var RE_NEW_LINE_START_WITH_UPPER_CASE = /((\n\s*\n)|(?:\w{2,})\.)\s*[a-z]/g;
var RE_NEW_LINE_START_WITH_UPPER_CASE = /((\n\s*\n\s*[a-z])|(?:\w{2,})\.\s+[a-z])/g;

var START_DESCRIPTION = /^\s*[a-z]/g;

Expand Down