Skip to content

Commit eedf435

Browse files
committed
linting: fix endlines
1 parent 7a159e4 commit eedf435

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

frontend/.eslintrc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
"keyword-spacing": ["error", { "before": true }],
88
"space-before-blocks": "error",
99
"no-trailing-spaces": "error",
10-
"no-multi-spaces": "error"
10+
"no-multi-spaces": "error",
11+
"no-multiple-empty-lines": ["error", { "max": 8, "maxEOF": 1 }],
12+
"eol-last": ["error", "always"]
1113
},
1214
"overrides": [
1315
{

frontend/src/components/admin/audit/spec/AuditChangeEntry.spec.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ describe('AuditChangeEntry', () => {
2020

2121
});
2222

23-

frontend/src/components/client/models/getClientFeature.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,3 @@ export const clientFeature = (config: ClientFeatureBuilderConfig): IFeature<Clie
182182
return feature;
183183
};
184184

185-

frontend/src/components/controls/form-controls/inputs/BaseInput.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,3 @@ export const BaseInput = EnhanceInputWithDisplay(EnhanceInputWithLabel(EnhanceIn
4343
}
4444
})));
4545

46-

0 commit comments

Comments
 (0)