Blue Flag linting configurations
Installation
npm install eslint-config-blueflag
{
"extends": [
"eslint-config-blueflag",
"eslint-config-blueflag/flow.js"
]
}
Global linters (Sublime Linter)
If your linter can't handle using the current directory to find binaries you will need to install
the plugins globally. Make sure you install eslint 2.4.0 though. The babel parser is having issues with
later versions.
npm install -g eslint@2.4.0 eslint-plugin-flow-vars eslint-plugin-flowtype eslint-plugin-react@5.2.0 babel-eslint
Style Guide
JSX
Return JSX elements directly
return <ul className="List">
<li>list items</li>
<li>list items</li>
</ul>;
return (
<ul className="List">
<li>list items</li>
<li>list items</li>
</ul>
);
####Find and replace
Find: return(\s+?)\((\s+?)<
Automatic find and replaces are hard for this. You can replace return(\s+?)\((\s+?)<
with return <
, find the closing );
and replace it with ;
and de-indent all lines between.
Use self-closing tags for elements without children
return <span />;
return <span></span>;
Multiple line components should have each prop on a new line, indented once
return <ExampleComponent
title="Example"
author="Robert"
>
<p>Child elements</p>
</ExampleComponent>;
return <ExampleComponent
title="Example"
author="Robert"
/>
return <ExampleComponent title="Example"
description="Hello"
>
<p>Child elements</p>
</ExampleComponent>;
return <ExampleComponent
title="Example"
description="Hello">
<p>Child elements</p>
</ExampleComponent>;
Find and replace
Find: \s+?$\s+?(/?>;?)(\s*?)
Replace: $1\n
and then fix up indentation
JS
Chains of functions should be indented by 4 spaces
return fromJS(list)
.map(ii => ii.get('id'))
.sort()
.toJS();
return fromJS(list).map(ii => ii.get('id')).sort().toJS();
return fromJS(list)
.map(ii => ii.get('id'))
.sort()
.toJS();
Named imports should not have spaces between braces and words
import React, {Component, Children} from 'react';
import React, { Component, Children } from 'react';
Naming
Filenames should use TitleCase
Button.jsx
CreateRoutes.js
button.jsx
createRoutes.js
Folders should always be camelCase
src/users/
src/learningPlan/
src/Users/
src/learning_plan/
Route paths should be kebab-case
http:
http:
http:
Action Names should follow SEGMENT_NOUN_VERB
Underscores are reserved for the division of concept not word spaces
COURSE_ASSIGNEE_CHANGE
COURSE_DEFAULTASSIGNEE_CHANGE
COURSECHANGE
CHANGE_COURSE_DEFAULT_ASSIGNEE
CHANGE_COURSE
courseChange
Action Creators should be lowerCamelCase of ActionName
courseAssigneeChange()
changeCourseAssignee()
dispatchCourseAssignee()
COURSE_ASSIGNEE_CHANGE()
Errors
"Expected string but got object"
Often caused by a require()
requiring a file that's using export default
. Ensure all require()
s of components with export default
use import
instead.
"inst.render is not a function"
In React <0.15 this can happen when functional components try to return null. They must return an empty <span/>
instead. This has been fixed as of React 0.15