Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ blocks:
agent:
machine:
type: e1-standard-2
os_image: ubuntu2004
os_image: ubuntu2404
secrets:
- name: flowcrypt-browser-ci-secrets
env_vars:
Expand Down
3 changes: 1 addition & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
// Importing necessary ESLint plugins
import tseslint from 'typescript-eslint';
import noOnlyTestsPlugin from 'eslint-plugin-no-only-tests';
import headerPlugin from 'eslint-plugin-header';
headerPlugin.rules.header.meta.schema = false;
import headerPlugin from '@tony.ganchev/eslint-plugin-header';
import jsdocPlugin from 'eslint-plugin-jsdoc';
import preferArrowPlugin from 'eslint-plugin-prefer-arrow';
import noNullPlugin from 'eslint-plugin-no-null';
Expand Down
1 change: 0 additions & 1 deletion extension/js/common/core/msg-block-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ export class MsgBlockParser {
*/
private static findNonQuotedEndMarker(text: string, startIndex: number, endMarker: string): number {
let searchFrom = startIndex;
// eslint-disable-next-line no-constant-condition
while (true) {
const endIndex = text.indexOf(endMarker, searchFrom);
if (endIndex === -1) {
Expand Down
Loading
Loading