Skip to content

Commit

Permalink
Added rule for ESlint to detect missing key property in iterators.
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Oct 9, 2024
1 parent 436c45d commit 652bf71
Show file tree
Hide file tree
Showing 11 changed files with 47 additions and 40 deletions.
40 changes: 19 additions & 21 deletions packages/volto/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,30 @@
"browser": true,
"node": true,
"mocha": true,
"jasmine": true
"jasmine": true,
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"legacyDecorators": true
}
"legacyDecorators": true,
},
},
"rules": {
"import/no-unresolved": 1,
"react/jsx-key": [2, { "checkFragmentShorthand": true }],
"no-alert": 1,
"no-console": 1,
"no-debugger": 1,
"prettier/prettier": [
"error",
{ "trailingComma": "all", "singleQuote": true }
{ "trailingComma": "all", "singleQuote": true },
],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"react/react-in-jsx-scope": "off",
"jsx-a11y/label-has-associated-control": "off"
"jsx-a11y/label-has-associated-control": "off",
},
"settings": {
"import/resolver": {
Expand All @@ -39,18 +40,18 @@
["@plone/registry", "../registry/src"],
["@plone/types", "../types"],
["@package", "./src"],
["@root", "./src"]
["@root", "./src"],
],
"extensions": [".js", ".jsx", ".ts", ".tsx", ".json"]
"extensions": [".js", ".jsx", ".ts", ".tsx", ".json"],
},
"babel-plugin-root-import": {
"rootPathSuffix": "src"
}
"rootPathSuffix": "src",
},
},
"import/core-modules": ["load-volto-addons"],
"react": {
"version": "detect"
}
"version": "detect",
},
},
"overrides": [
{
Expand All @@ -60,17 +61,14 @@
// Re-add it if at some point, we stop relying on it
"extends": ["react-app", "prettier", "plugin:jsx-a11y/recommended"],
"plugins": ["prettier", "react-hooks", "jsx-a11y"],
"parser": "@typescript-eslint/parser"
"parser": "@typescript-eslint/parser",
},
{
"files": [
"**/*.stories.js",
"**/*.stories.jsx"
],
"files": ["**/*.stories.js", "**/*.stories.jsx"],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
"import/no-anonymous-default-export": "off",
},
},
],
"globals": {
"root": true,
Expand All @@ -86,6 +84,6 @@
"Cypress": true,
"jest": true,
"socket": true,
"webpackIsomorphicTools": true
}
"webpackIsomorphicTools": true,
},
}
2 changes: 2 additions & 0 deletions packages/volto/src/components/manage/Contents/Contents.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1397,6 +1397,7 @@ class Contents extends Component {
{breach.targets
.map((target) => (
<Link
key={target['@id']}
to={flattenToAppURL(
target['@id'],
)}
Expand Down Expand Up @@ -1467,6 +1468,7 @@ class Contents extends Component {
{breach.targets
.map((target) => (
<Link
key={target['@id']}
to={flattenToAppURL(target['@id'])}
title="Navigate to this item"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ const DatabaseInformation = () => {
</Table.Row>
</Table.Header>
{databaseInformation.cache_detail_length.map((item) => (
// eslint-disable-next-line react/jsx-key
<Table.Row>
<Table.Cell>{item.connection}</Table.Cell>
<Table.Cell>{item.ngsize}</Table.Cell>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ class UpgradeControlPanel extends Component {
<Container>
{map(upgradeSteps, (upgradeGroup) => [
<UpgradeStep
key={upgradeGroup[0]}
title={upgradeGroup[0]}
steps={upgradeGroup[1]}
/>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,18 +188,20 @@ const UserGroupMembershipMatrix = ({ many_users, many_groups }) => {
</Form>
{(!many_groups || query_group_filter.length > 1) &&
filter_options?.map((filter_option) => (
<Form.Field>
<Checkbox
name={`filter_option_${filter_option.value}`}
key={filter_option.value}
title={filter_option.label}
label={filter_option.label}
defaultChecked={false}
onChange={(event, { checked }) => {
onSelectOptionHandler(filter_option, checked);
}}
/>
</Form.Field>
<React.Fragment key={filter_option.value}>
<Form.Field>
<Checkbox
name={`filter_option_${filter_option.value}`}
key={filter_option.value}
title={filter_option.label}
label={filter_option.label}
defaultChecked={false}
onChange={(event, { checked }) => {
onSelectOptionHandler(filter_option, checked);
}}
/>
</Form.Field>
</React.Fragment>
))}
</div>
<UserGroupMembershipListing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ describe('<Pluggable />', () => {
</header>
<div className="pastanaga-menu-list">
<ul>
{pluggables.map((p) => (
<>{p()}</>
{pluggables.map((p, index) => (
<React.Fragment key={index}>{p()}</React.Fragment>
))}
</ul>
</div>
Expand Down Expand Up @@ -92,7 +92,7 @@ describe('<Pluggable />', () => {
<div className="pastanaga-menu-list">
<ul>
{pluggables.map((p) => (
<>{p()}</>
<React.Fragment key={p}>{p()}</React.Fragment>
))}
</ul>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ const ObjectBrowserNav = ({
currentSearchResults.items.map((item) =>
view === 'icons' ? (
<li
key={item['@id']}
className="image-wrapper"
title={`${item['@id']} (${item['@type']})`}
>
Expand Down
4 changes: 2 additions & 2 deletions packages/volto/src/components/manage/Toolbar/More.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ const More = (props) => {
</header>
<div className="pastanaga-menu-list">
<ul>
{pluggables.map((p) => (
<>{p()}</>
{pluggables.map((p, index) => (
<React.Fragment key={index}>{p()}</React.Fragment>
))}
</ul>
</div>
Expand Down
1 change: 1 addition & 0 deletions packages/volto/src/components/theme/Icon/Icon.stories.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ const iconElements = Object.keys(icons).map((iconName) => {
const icon = icons[iconName];
return (
<center
key={icons[iconName]}
style={{
float: 'left',
width: '150px',
Expand Down
4 changes: 2 additions & 2 deletions packages/volto/src/components/theme/Widgets/ArrayWidget.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ const ArrayWidget = ({ value, children, className }) =>
value ? (
<span className={cx(className, 'array', 'widget')}>
{value.map((item, key) => (
<>
<React.Fragment key={item.token}>
{key ? ', ' : ''}
<span key={item.token || item.title || item}>
{children
? children(item.title || item.token || item)
: item.title || item.token || item}
</span>
</>
</React.Fragment>
))}
</span>
) : (
Expand Down
1 change: 1 addition & 0 deletions packages/volto/src/helpers/Html/Html.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ class Html extends Component {
}}
></script>
{extractor.getStyleElements().map((elem) => (
// eslint-disable-next-line react/jsx-key
<noscript>
{React.cloneElement(elem, {
rel: 'stylesheet',
Expand Down

0 comments on commit 652bf71

Please sign in to comment.