Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow lower letter after period if no any space. #200

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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