Skip to content

Commit

Permalink
[M1_TR-212] Add indent rule
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoleamber committed Sep 20, 2023
1 parent 68e7998 commit 86e5426
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
11 changes: 6 additions & 5 deletions web/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
module.exports = {
extends: ['eslint:recommended'],
rules: {
'no-undef': 'off',
'no-unused-vars': 'off'
}
extends: ['eslint:recommended'],
rules: {
'no-undef': 'off',
'no-unused-vars': 'off',
indent: ['error', 2, { SwitchCase: 1 }]
}
};
1 change: 0 additions & 1 deletion web/src/components/organisms/JobListTable/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable no-mixed-spaces-and-tabs */
import StatusChip from '@/components/atoms/StatusChip';
import { JobTableRow, TableColumn } from '@/utils/types/job';
import {
Expand Down

0 comments on commit 86e5426

Please sign in to comment.