Disable EOL rule in snippet linting

This commit is contained in:
Adam Gastineau 2024-12-20 08:01:29 -08:00
parent 62717a07ce
commit 58f8ab5b84

View file

@ -153,6 +153,7 @@ class JSLintingService extends LintingService {
'@typescript-eslint/no-unused-vars': 'off',
'max-len': ['error', { code: 100 }],
'react/react-in-jsx-scope': 'off',
'eol-last': 'off',
},
}
});