Skip to content

Commit

Permalink
add maxEOF to prevent multiple end of file lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Casheeew committed Dec 26, 2023
1 parent 8e95d99 commit 1792a05
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,8 @@
"no-multiple-empty-lines": [
"error",
{
"max": 1
"max": 1,
"maxEOF": 0
}
],
"no-undef": "off",
Expand Down
1 change: 0 additions & 1 deletion types/ext/script-manager.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,3 @@ export type ContentScriptInjectionDetails = {
js?: string[];
urlRegex: RegExp | null;
};

1 change: 0 additions & 1 deletion types/test/dom-text-scanner.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ export type TestData = {
remainder?: number;
};
};

0 comments on commit 1792a05

Please sign in to comment.