Переглянути джерело

convert all js var to let/const (#7464)

Most of the work was done by `eslint --fix`, I fixed around 10 cases
where it could not auto-convert.
tags/v1.10.0-rc1
silverwind 4 роки тому
джерело
коміт
f34726a4b9
3 змінених файлів з 274 додано та 273 видалено
  1. 2
    0
      .eslintrc
  2. 1
    1
      public/js/draw.js
  3. 271
    272
      public/js/index.js

+ 2
- 0
.eslintrc Переглянути файл

@@ -23,3 +23,5 @@ globals:

rules:
no-unused-vars: [error, {args: all, argsIgnorePattern: ^_, varsIgnorePattern: ^_, ignoreRestSiblings: true}]
prefer-const: [2, {destructuring: all}]
no-var: [2]

+ 1
- 1
public/js/draw.js Переглянути файл

@@ -1,7 +1,7 @@
/* globals gitGraph */

$(document).ready(function () {
var graphList = [];
const graphList = [];

if (!document.getElementById('graph-canvas')) {
return;

+ 271
- 272
public/js/index.js
Різницю між файлами не показано, бо вона завелика
Переглянути файл


Завантаження…
Відмінити
Зберегти