You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
Run eslint --fix
Fixing 1000s of lint issues. Some rules cannot be `--fix`ed but this goes some way to linting the entire codebase.
This commit is contained in:
@ -13,12 +13,12 @@
|
||||
// default
|
||||
require('babel-polyfill');
|
||||
|
||||
var sdk = require("../src/index");
|
||||
const sdk = require("../src/index");
|
||||
|
||||
var skin = require('../src/component-index.js');
|
||||
var stubComponent = require('./components/stub-component.js');
|
||||
const skin = require('../src/component-index.js');
|
||||
const stubComponent = require('./components/stub-component.js');
|
||||
|
||||
var components = skin.components;
|
||||
const components = skin.components;
|
||||
components['structures.LeftPanel'] = stubComponent();
|
||||
components['structures.RightPanel'] = stubComponent();
|
||||
components['structures.RoomDirectory'] = stubComponent();
|
||||
|
Reference in New Issue
Block a user