Skip to content

Commit e571348

Browse files
committed
modified es lint rules
1 parent 798171a commit e571348

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.eslintignore

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,4 @@ dist/
22
node_modules/
33
webpack.config.js
44

5-
docs/node_modules
6-
docs/public
7-
docs/.babelrc
8-
docs/index.js
9-
docs/package.json
10-
docs/server.js
11-
docs/webpack.config.development.js
5+
docs/

docs/client/components/AppNavbar/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ class Navbar extends React.Component {
99
super(props);
1010
this.state = {
1111
activeLink: '',
12-
}
12+
};
1313
this.handleNavClick = this.handleNavClick.bind(this);
1414
}
1515

1616
handleNavClick(activeLink) {
1717
this.setState({
1818
activeLink,
19-
})
19+
});
2020
}
2121

2222
render() {

0 commit comments

Comments
 (0)