Skip to content

Commit

Permalink
Merged Redoc version 60 with bladerunner
Browse files Browse the repository at this point in the history
  • Loading branch information
mahamdan committed Mar 3, 2022
1 parent ab02f66 commit 84bc116
Show file tree
Hide file tree
Showing 64 changed files with 2,487 additions and 20,651 deletions.
12 changes: 10 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,18 @@ module.exports = {
'@typescript-eslint/no-var-requires': 'off',

'react/prop-types': 'off',
'react-hooks/rules-of-hooks': 'error',
'react-hooks/rules-of-hooks': 'warn',
'react-hooks/exhaustive-deps': 'warn',

'import/no-extraneous-dependencies': 'error',
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: true,
optionalDependencies: false,
peerDependencies: false,
packageDir: __dirname,
},
],
'import/no-internal-modules': [
'error',
{
Expand Down
2 changes: 1 addition & 1 deletion demo/ComboBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const DropDownList = styled.ul`
list-style: none;
margin: 4px 0 0 0;
padding: 5px 0;
font-family: Roboto,sans-serif;
font-family: 'Arial';
overflow: hidden;
`;

Expand Down
2 changes: 1 addition & 1 deletion demo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const Heading = styled.nav`
display: flex;
align-items: center;
font-family: Roboto, sans-serif;
font-family: 'Arial';
`;

const Logo = styled.img`
Expand Down
Loading

0 comments on commit 84bc116

Please sign in to comment.