Skip to content

Commit

Permalink
eslint: temporary ignore no-undef rule
Browse files Browse the repository at this point in the history
  • Loading branch information
alextrastero committed Oct 19, 2021
1 parent 11c4e40 commit d4bb466
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ rules:
standard/array-bracket-even-spacing: [0]
standard/computed-property-even-spacing: [0]
standard/object-curly-even-spacing: [0]
no-undef: [2]
no-undef: [0]
react-hooks/rules-of-hooks: [2]
react-hooks/exhaustive-deps: [2]
6 changes: 3 additions & 3 deletions test/Collection.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import Collection from '../src/Collection';
import CollectionItem from '../src/CollectionItem';

// let wrapper = shallow(
// <Collection>
// <CollectionItem>Alvin</CollectionItem>
// </Collection>
// <Collection>
// <CollectionItem>Alvin</CollectionItem>
// </Collection>
// );

describe.skip('<Collection />', () => {
Expand Down
14 changes: 7 additions & 7 deletions test/Footer.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ let links = (
</ul>
);
// let wrapper = shallow(
// <Footer
// moreLinks={moreLinks}
// copyrights="&copy; 2015 Copyright Text"
// links={links}
// >
// <p>Footer Content</p>
// </Footer>
// <Footer
// moreLinks={moreLinks}
// copyrights="&copy; 2015 Copyright Text"
// links={links}
// >
// <p>Footer Content</p>
// </Footer>
// );

describe.skip('<Footer />', () => {
Expand Down

0 comments on commit d4bb466

Please sign in to comment.