Skip to content

Commit 37d44c9

Browse files
authored
Merge pull request #4 from coreui/dev-linter
v2.0.0-alpha.5
2 parents a7a7bc3 + d057f33 commit 37d44c9

18 files changed

+120
-71
lines changed

.eslintignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
test/coverage/
2+
es/
3+
lib/
4+
umd/

.eslintrc

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"node": true,
5+
"es6": true
6+
},
7+
"extends": ["eslint:recommended", "plugin:react/recommended"],
8+
"parser": "babel-eslint",
9+
"parserOptions": {
10+
"sourceType": "module",
11+
"ecmaFeatures": {
12+
"jsx": true,
13+
"arrowFunctions": true,
14+
"blockBindings": true,
15+
"defaultParams": true,
16+
"destructuring": true,
17+
"forOf": true,
18+
"generators": true,
19+
"objectLiteralComputedProperties": true,
20+
"objectLiteralShorthandMethods": true,
21+
"objectLiteralShorthandProperties": true,
22+
"experimentalObjectRestSpread": true,
23+
"restParams": true,
24+
"spread": true,
25+
"templateStrings": true,
26+
"modules": true,
27+
"classes": true
28+
}
29+
},
30+
"plugins": [
31+
"react"
32+
],
33+
"root": true,
34+
"rules": {
35+
"comma-dangle": 0,
36+
"linebreak-style": 0
37+
}
38+
}

package.json

+15-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/react",
3-
"version": "2.0.0-alpha.4",
3+
"version": "2.0.0-alpha.5",
44
"description": "CoreUI React Bootstrap 4 components",
55
"main": "lib/index.js",
66
"module": "es/index.js",
@@ -16,28 +16,34 @@
1616
"start": "nwb serve-react-demo",
1717
"test": "nwb test-react",
1818
"test:coverage": "nwb test-react --coverage",
19-
"test:watch": "nwb test-react --server"
19+
"test:watch": "nwb test-react --server",
20+
"lint": "eslint src"
2021
},
2122
"dependencies": {
2223
"bootstrap": "4.0.0",
2324
"classnames": "^2.2.5",
25+
"prop-types": "^15.6.1",
2426
"flag-icon-css": "^3.0.0",
25-
"font-awesome": "4.7.0",
26-
"react-perfect-scrollbar": "^1.0.0",
27+
"font-awesome": "^4.7.0",
28+
"react-perfect-scrollbar": "^1.0.5",
2729
"react-router-dom": "^4.2.2",
28-
"reactstrap": "5.0.0-beta",
29-
"simple-line-icons": "2.4.1"
30+
"reactstrap": "^5.0.0",
31+
"simple-line-icons": "^2.4.1"
3032
},
3133
"peerDependencies": {
3234
"react": "16.x"
3335
},
3436
"devDependencies": {
37+
"babel-eslint": "^8.2.2",
3538
"enzyme": "^3.3.0",
3639
"enzyme-adapter-react-16": "^1.1.1",
40+
"eslint": "^4.19.1",
41+
"eslint-plugin-import": "^2.10.0",
42+
"eslint-plugin-react": "^7.7.0",
3743
"nwb": "0.21.x",
38-
"react": "^16.2.0",
39-
"react-dom": "^16.2.0",
40-
"sinon": "^4.4.9"
44+
"react": "^16.3.1",
45+
"react-dom": "^16.3.1",
46+
"sinon": "^4.5.0"
4147
},
4248
"author": "Łukasz Holeczek",
4349
"homepage": "http://coreui.io",

src/Aside.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const propTypes = {
1111
hidden: PropTypes.bool,
1212
isOpen: PropTypes.bool,
1313
offCanvas: PropTypes.bool,
14-
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
14+
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string])
1515
};
1616

1717
const defaultProps = {
@@ -20,7 +20,7 @@ const defaultProps = {
2020
fixed: false,
2121
hidden: false,
2222
isOpen: false,
23-
offCanvas: true,
23+
offCanvas: true
2424
};
2525

2626
class AppAside extends Component {

src/AsideToggler.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ const propTypes = {
1010
display: PropTypes.any,
1111
mobile: PropTypes.bool,
1212
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
13-
type: PropTypes.string,
13+
type: PropTypes.string
1414
};
1515

1616
const defaultProps = {
1717
display: 'lg',
1818
mobile: false,
1919
tag: 'button',
20-
type: 'button',
20+
type: 'button'
2121
};
2222

2323
class AppAsideToggler extends Component {
@@ -51,10 +51,10 @@ class AppAsideToggler extends Component {
5151

5252
return (
5353
<button
54-
type="button"
55-
className={classes}
56-
{...attributes}
57-
onClick={this.asideToggle}
54+
type="button"
55+
className={classes}
56+
{...attributes}
57+
onClick={this.asideToggle}
5858
>
5959
{children || <span className="navbar-toggler-icon" />}
6060
</button>

src/Breadcrumb.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ const BreadcrumbsItem = ({ match }) => {
3131
const routeName = findRouteName(match.url);
3232
if (routeName) {
3333
return (
34-
match.isExact ? (
34+
match.isExact ?
3535
<BreadcrumbItem active>{routeName}</BreadcrumbItem>
36-
) : (
36+
:
3737
<BreadcrumbItem>
3838
<Link to={match.url || ''}>
3939
{routeName}
4040
</Link>
4141
</BreadcrumbItem>
42-
)
42+
4343
);
4444
}
4545
return null;
@@ -65,13 +65,13 @@ const propTypes = {
6565
children: PropTypes.node,
6666
className: PropTypes.string,
6767
appRoutes: PropTypes.any,
68-
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
68+
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string])
6969
};
7070

7171
const defaultProps = {
7272
tag: 'div',
7373
className: '',
74-
appRoutes: [{ path: '/', exact: true, name: 'Home', component: null }],
74+
appRoutes: [{ path: '/', exact: true, name: 'Home', component: null }]
7575
};
7676

7777
class AppBreadcrumb extends Component {

src/Footer.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ const propTypes = {
66
children: PropTypes.node,
77
className: PropTypes.string,
88
fixed: PropTypes.bool,
9-
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
9+
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string])
1010
};
1111

1212
const defaultProps = {
1313
tag: 'footer',
14-
fixed: false,
14+
fixed: false
1515
};
1616

1717
class AppFooter extends Component {

src/Header.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ const propTypes = {
66
children: PropTypes.node,
77
className: PropTypes.string,
88
fixed: PropTypes.bool,
9-
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
9+
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string])
1010
};
1111

1212
const defaultProps = {
1313
tag: 'header',
14-
fixed: false,
14+
fixed: false
1515
};
1616

1717
class AppHeader extends Component {

src/HeaderDropdown.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
11
import React, { Component } from 'react';
2-
import {
3-
Dropdown,
4-
} from 'reactstrap';
2+
import { Dropdown } from 'reactstrap';
53
import PropTypes from 'prop-types';
64

75
const propTypes = {
86
children: PropTypes.node,
7+
direction: PropTypes.string
98
};
109

11-
const defaultProps = {};
10+
const defaultProps = {
11+
direction: 'down'
12+
};
1213

1314
class AppHeaderDropdown extends Component {
1415
constructor(props) {
1516
super(props);
1617

1718
this.toggle = this.toggle.bind(this);
1819
this.state = {
19-
dropdownOpen: false,
20+
dropdownOpen: false
2021
};
2122
}
2223

2324
toggle() {
2425
this.setState({
25-
dropdownOpen: !this.state.dropdownOpen,
26+
dropdownOpen: !this.state.dropdownOpen
2627
});
2728
}
2829

src/NavbarBrand.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ const propTypes = {
88
className: PropTypes.string,
99
brand: PropTypes.any,
1010
full: PropTypes.any,
11-
minimized: PropTypes.any,
11+
minimized: PropTypes.any
1212
};
1313

1414
const defaultProps = {
15-
tag: 'a',
15+
tag: 'a'
1616
};
1717

1818
class AppNavbarBrand extends Component {
@@ -35,12 +35,12 @@ class AppNavbarBrand extends Component {
3535
navbarBrandImg(props, classBrand, key) {
3636
return (
3737
<img
38-
src={this.imgSrc(props)}
39-
width={this.imgWidth(props)}
40-
height={this.imgHeight(props)}
41-
alt={this.imgAlt(props)}
42-
className={classBrand}
43-
key={key.toString()}
38+
src={this.imgSrc(props)}
39+
width={this.imgWidth(props)}
40+
height={this.imgHeight(props)}
41+
alt={this.imgAlt(props)}
42+
className={classBrand}
43+
key={key.toString()}
4444
/>
4545
);
4646
}

src/Shared/classes.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ export const sidebarCssClasses = [
33
'sidebar-sm-show',
44
'sidebar-md-show',
55
'sidebar-lg-show',
6-
'sidebar-xl-show',
6+
'sidebar-xl-show'
77
];
88

99
export const asideMenuCssClasses = [
1010
'aside-menu-show',
1111
'aside-menu-sm-show',
1212
'aside-menu-md-show',
1313
'aside-menu-lg-show',
14-
'aside-menu-xl-show',
14+
'aside-menu-xl-show'
1515
];

src/Sidebar.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const propTypes = {
1313
isOpen: PropTypes.bool,
1414
offCanvas: PropTypes.bool,
1515
staticContext: PropTypes.any,
16-
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
16+
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string])
1717
};
1818

1919
const defaultProps = {
@@ -23,7 +23,7 @@ const defaultProps = {
2323
fixed: false,
2424
minimized: false,
2525
isOpen: false,
26-
offCanvas: false,
26+
offCanvas: false
2727
};
2828

2929
class AppSidebar extends Component {

src/SidebarFooter.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@ import classNames from 'classnames';
55
const propTypes = {
66
children: PropTypes.node,
77
className: PropTypes.string,
8-
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
8+
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string])
99
};
1010

1111
const defaultProps = {
12-
tag: 'div',
12+
tag: 'div'
1313
};
1414

1515
class AppSidebarFooter extends Component {
1616
render() {
1717
const { className, children, tag: Tag, ...attributes } = this.props;
1818

1919
const classes = classNames(className, 'sidebar-footer');
20-
const footer = children ? (
20+
const footer = children ?
2121
<Tag className={classes} {...attributes} >
2222
{children}
2323
</Tag>
24-
) : (null);
24+
: null;
2525

2626
return (
2727
footer

src/SidebarForm.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ import classNames from 'classnames';
55
const propTypes = {
66
children: PropTypes.node,
77
className: PropTypes.string,
8-
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
8+
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string])
99
};
1010

1111
const defaultProps = {
12-
tag: 'div',
12+
tag: 'div'
1313
};
1414

1515
class AppSidebarForm extends Component {
1616
render() {
1717
const { className, children, tag: Tag, ...attributes } = this.props;
1818
const classes = classNames(className, 'sidebar-form');
19-
const form = children ? (
19+
const form = children ?
2020
<Tag className={classes} {...attributes} >
2121
{children}
2222
</Tag>
23-
) : (null);
23+
: null;
2424

2525
return (
2626
form

src/SidebarHeader.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ import classNames from 'classnames';
55
const propTypes = {
66
children: PropTypes.node,
77
className: PropTypes.string,
8-
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
8+
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string])
99
};
1010

1111
const defaultProps = {
12-
tag: 'div',
12+
tag: 'div'
1313
};
1414

1515
class AppSidebarHeader extends Component {
1616
render() {
1717
const { className, children, tag: Tag, ...attributes } = this.props;
1818
const classes = classNames(className, 'sidebar-header');
19-
const header = children ? (
19+
const header = children ?
2020
<Tag className={classes} {...attributes} >
2121
{children}
2222
</Tag>
23-
) : (null);
23+
: null;
2424

2525
return (
2626
header

0 commit comments

Comments
 (0)