diff --git a/.eslintignore b/.eslintignore index c5fc99a28d..3880126165 100644 --- a/.eslintignore +++ b/.eslintignore @@ -13,8 +13,8 @@ fixtures/ # Ignore built files. build/ coverage/ -scripts/attribute-behavior/public/react-dom.production.min.js -scripts/attribute-behavior/public/react.production.min.js +fixtures/attribute-behavior/public/react-dom.production.min.js +fixtures/attribute-behavior/public/react.production.min.js scripts/bench/benchmarks/**/*.js scripts/bench/remote-repo/ vendor/* diff --git a/fixtures/attribute-behavior/src/App.js b/fixtures/attribute-behavior/src/App.js index 6fee801404..2ac7e1d7f8 100644 --- a/fixtures/attribute-behavior/src/App.js +++ b/fixtures/attribute-behavior/src/App.js @@ -1417,7 +1417,7 @@ function ResultPopover(props) { hasSameBehavior: props.hasSameBehavior, }, null, - 2, + 2 )} ); diff --git a/fixtures/attribute-behavior/src/index.js b/fixtures/attribute-behavior/src/index.js index cea8e344b9..da93a3b30f 100644 --- a/fixtures/attribute-behavior/src/index.js +++ b/fixtures/attribute-behavior/src/index.js @@ -19,6 +19,6 @@ import './index.css'; ReactDOM.render( React.createElement(App.default), - document.getElementById('root'), + document.getElementById('root') ); })(); diff --git a/scripts/prettier/index.js b/scripts/prettier/index.js index 0fd1e51f87..d7dda88a45 100644 --- a/scripts/prettier/index.js +++ b/scripts/prettier/index.js @@ -41,8 +41,8 @@ const config = { patterns: ['scripts/**/*.js', 'fixtures/**/*.js'], ignore: [ 'scripts/bench/benchmarks/**', - 'scripts/attribute-behavior/public/react.production.min.js', - 'scripts/attribute-behavior/public/react-dom.production.min.js', + 'fixtures/attribute-behavior/public/react.production.min.js', + 'fixtures/attribute-behavior/public/react-dom.production.min.js', ], options: { 'trailing-comma': 'es5',