Fix line length lint warnings
I am about to run some code replacements that might make lines too long, so with this change I know we're starting from 0 line length warnings.
This commit is contained in:
parent
b2387f4cff
commit
989227d435
3 changed files with 15 additions and 4 deletions
|
@ -47,7 +47,7 @@
|
||||||
"start:init": "babel src -d lib --source-maps --copy-files",
|
"start:init": "babel src -d lib --source-maps --copy-files",
|
||||||
"lint": "eslint src/",
|
"lint": "eslint src/",
|
||||||
"lintall": "eslint src/ test/",
|
"lintall": "eslint src/ test/",
|
||||||
"lintwithexclusions": "eslint --max-warnings 18 --ignore-path .eslintignore.errorfiles src test",
|
"lintwithexclusions": "eslint --max-warnings 13 --ignore-path .eslintignore.errorfiles src test",
|
||||||
"clean": "rimraf lib",
|
"clean": "rimraf lib",
|
||||||
"prepublish": "npm run clean && npm run build && git rev-parse HEAD > git-revision.txt",
|
"prepublish": "npm run clean && npm run build && git rev-parse HEAD > git-revision.txt",
|
||||||
"test": "karma start --single-run=true --browsers ChromeHeadless",
|
"test": "karma start --single-run=true --browsers ChromeHeadless",
|
||||||
|
|
|
@ -66,7 +66,11 @@ export default class IndicatorScrollbar extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (<AutoHideScrollbar ref={this._collectScrollerComponent} wrappedRef={this._collectScroller} {... this.props}>
|
return (<AutoHideScrollbar
|
||||||
|
ref={this._collectScrollerComponent}
|
||||||
|
wrappedRef={this._collectScroller}
|
||||||
|
{... this.props}
|
||||||
|
>
|
||||||
{ this.props.children }
|
{ this.props.children }
|
||||||
</AutoHideScrollbar>);
|
</AutoHideScrollbar>);
|
||||||
}
|
}
|
||||||
|
|
|
@ -302,7 +302,10 @@ export default React.createClass({
|
||||||
// will check their settings.
|
// will check their settings.
|
||||||
this.setState({
|
this.setState({
|
||||||
defaultServerName: null, // To un-hide any secrets people might be keeping
|
defaultServerName: null, // To un-hide any secrets people might be keeping
|
||||||
defaultServerDiscoveryError: _t("Invalid configuration: Cannot supply a default homeserver URL and a default server name"),
|
defaultServerDiscoveryError: _t(
|
||||||
|
"Invalid configuration: Cannot supply a default homeserver URL and " +
|
||||||
|
"a default server name",
|
||||||
|
),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1833,7 +1836,11 @@ export default React.createClass({
|
||||||
render: function() {
|
render: function() {
|
||||||
// console.log(`Rendering MatrixChat with view ${this.state.view}`);
|
// console.log(`Rendering MatrixChat with view ${this.state.view}`);
|
||||||
|
|
||||||
if (this.state.view === VIEWS.LOADING || this.state.view === VIEWS.LOGGING_IN || this.state.loadingDefaultHomeserver) {
|
if (
|
||||||
|
this.state.view === VIEWS.LOADING ||
|
||||||
|
this.state.view === VIEWS.LOGGING_IN ||
|
||||||
|
this.state.loadingDefaultHomeserver
|
||||||
|
) {
|
||||||
const Spinner = sdk.getComponent('elements.Spinner');
|
const Spinner = sdk.getComponent('elements.Spinner');
|
||||||
return (
|
return (
|
||||||
<div className="mx_MatrixChat_splash">
|
<div className="mx_MatrixChat_splash">
|
||||||
|
|
Loading…
Reference in a new issue