Skip to content
Snippets Groups Projects
Commit 304f5efe authored by Akshit Kr Nagpal's avatar Akshit Kr Nagpal Committed by Saúl Ibarra Corretgé
Browse files

Fix no-shadow warning (#26)

parent e82e4b5c
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,6 @@ module.exports = {
],
'rules': {
'no-new': 1,
'no-shadow': 1,
'max-params': 1
}
};
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment