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',
|
'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',
|
||||||
|
|
|
||||||
|
|
@ -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++) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue