- Message:
Identifier name 's' is too short (< 2).
- Path:
AriPerkkio/js-framework-playground/packages/react/src/components/LoadButton.jsx
- Link
2 |
3 | const LoadButton = ({ onUserLoad }) => {
> 4 | const [userIndex, increaseUserIndex] = useReducer(s => s + 1, 1);
| ^
5 | const [disabled, toggleDisabled] = useReducer(s => !s, false);
6 |
7 | const onClick = () => {
- Message:
Identifier name 's' is too short (< 2).
- Path:
AriPerkkio/js-framework-playground/packages/react/src/components/LoadButton.jsx
- Link
3 | const LoadButton = ({ onUserLoad }) => {
4 | const [userIndex, increaseUserIndex] = useReducer(s => s + 1, 1);
> 5 | const [disabled, toggleDisabled] = useReducer(s => !s, false);
| ^
6 |
7 | const onClick = () => {
8 | toggleDisabled();
- Message:
Identifier name 'h' is too short (< 2).
- Path:
AriPerkkio/js-framework-playground/packages/vue/src/main.js
- Link
5 |
6 | new Vue({
> 7 | render: h => h(App),
| ^
8 | }).$mount('#app')
9 |
- Message:
Identifier name 'a' is too short (< 2).
- Path:
oldboyxx/jira_clone/client/src/Project/Board/Lists/List/index.jsx
- Link
70 |
71 | const getSortedListIssues = (issues, status) =>
> 72 | issues.filter(issue => issue.status === status).sort((a, b) => a.listPosition - b.listPosition);
| ^
73 |
74 | const formatIssuesCount = (allListIssues, filteredListIssues) => {
75 | if (allListIssues.length !== filteredListIssues.length) {
- Message:
Identifier name 'b' is too short (< 2).
- Path:
oldboyxx/jira_clone/client/src/Project/Board/Lists/List/index.jsx
- Link
70 |
71 | const getSortedListIssues = (issues, status) =>
> 72 | issues.filter(issue => issue.status === status).sort((a, b) => a.listPosition - b.listPosition);
| ^
73 |
74 | const formatIssuesCount = (allListIssues, filteredListIssues) => {
75 | if (allListIssues.length !== filteredListIssues.length) {
- Message:
Identifier name 'a' is too short (< 2).
- Path:
oldboyxx/jira_clone/client/src/Project/Board/Lists/index.jsx
- Link
91 |
92 | const getSortedListIssues = (issues, status) =>
> 93 | issues.filter(issue => issue.status === status).sort((a, b) => a.listPosition - b.listPosition);
| ^
94 |
95 | ProjectBoardLists.propTypes = propTypes;
96 |
- Message:
Identifier name 'b' is too short (< 2).
- Path:
oldboyxx/jira_clone/client/src/Project/Board/Lists/index.jsx
- Link
91 |
92 | const getSortedListIssues = (issues, status) =>
> 93 | issues.filter(issue => issue.status === status).sort((a, b) => a.listPosition - b.listPosition);
| ^
94 |
95 | ProjectBoardLists.propTypes = propTypes;
96 |