Removed eslint rule
This commit is contained in:
parent
867dbada33
commit
9e8146bf1c
2 changed files with 1 additions and 2 deletions
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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++) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue