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',
'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.js'] }],
'jsx-a11y/label-has-associated-control': 'off',
'prefer-destructuring': 'off',
'import/extensions': [
'error',
'ignorePackages',

View file

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