Skip to content

Commit

Permalink
fix(eslint-config): Remove cypress plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
bastilian committed Oct 21, 2022
1 parent 1842e12 commit 886ac41
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
},
},
plugins: ['prettier', 'rulesdir'],
extends: ['eslint:recommended', 'prettier', 'plugin:prettier/recommended', 'plugin:react/recommended', 'plugin:cypress/recommended'],
extends: ['eslint:recommended', 'prettier', 'plugin:prettier/recommended', 'plugin:react/recommended'],
rules: {
'no-unused-vars': ['error', { ignoreRestSiblings: true }],
'prettier/prettier': ['error', { singleQuote: true }],
Expand Down
1 change: 1 addition & 0 deletions packages/utils/src/CypressUtils/PaginationUtils.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* global cy */
import { DROPDOWN_ITEM, DROPDOWN_TOGGLE, PAGINATION_MENU, TOOLBAR } from './selectors';

const DEFAULT_ROW_COUNT = 20;
Expand Down
1 change: 1 addition & 0 deletions packages/utils/src/CypressUtils/TableUtils.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* global cy, Cypress */
import _ from 'lodash';

import { ROW, TABLE, TBODY, TITLE } from './selectors';
Expand Down
1 change: 1 addition & 0 deletions packages/utils/src/CypressUtils/UIFilters.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* global cy */
/*
Utilities related to URL parameters passed for table filtering
*/
Expand Down

0 comments on commit 886ac41

Please sign in to comment.