Fix no-shadow warning (#26)

This commit is contained in:
Akshit Kr Nagpal 2018-05-09 23:27:26 +05:30 committed by Saúl Ibarra Corretgé
parent e82e4b5c53
commit 304f5efe3d
2 changed files with 2 additions and 3 deletions

View file

@ -4,7 +4,6 @@ module.exports = {
],
'rules': {
'no-new': 1,
'no-shadow': 1,
'max-params': 1
}
};

View file

@ -9,12 +9,12 @@ const {
} = require('jitsi-meet-electron-utils');
const path = require('path');
const url = require('url');
const URL = require('url');
/**
* URL for index.html which will be our entry point.
*/
const indexURL = url.format({
const indexURL = URL.format({
pathname: path.join(__dirname, 'windows', 'jitsi-meet', 'index.html'),
protocol: 'file:',
slashes: true