Removed eslint rule

This commit is contained in:
z0ccc 2021-07-02 15:25:58 -04:00
parent 867dbada33
commit 9e8146bf1c
2 changed files with 1 additions and 2 deletions

View file

@ -22,7 +22,6 @@ module.exports = {
'linebreak-style': 'off', 'linebreak-style': 'off',
'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.js'] }], 'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.js'] }],
'jsx-a11y/label-has-associated-control': 'off', 'jsx-a11y/label-has-associated-control': 'off',
'prefer-destructuring': 'off',
'import/extensions': [ 'import/extensions': [
'error', 'error',
'ignorePackages', 'ignorePackages',

View file

@ -16,7 +16,7 @@ const sortArr = (arr) => {
// sorts plugins object into comma separated list // sorts plugins object into comma separated list
const sortPlugins = (data) => { const sortPlugins = (data) => {
const length = data.length; const { length } = data;
let list = ''; let list = '';
for (let i = 0; i < length; i++) { for (let i = 0; i < length; i++) {