Skip to content

Commit be60c45

Browse files
authored
Merge pull request #48 from tinymce/feature/TINY-10602
2 parents af4d5c6 + 8b62a54 commit be60c45

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
### Changed
11+
- Disabled `@typescript-eslint/require-await`, which caused some builds to fail inconsistently and doesn't seem particularly valuable
12+
1013
## 2.3.1 - 2023-05-21
1114

1215
### Fixed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tinymce/eslint-plugin",
3-
"version": "2.3.2-rc",
3+
"version": "2.4.0-rc",
44
"description": "Plugin for ESLint containing Tiny Technologies Inc. standard linting rules",
55
"author": "Tiny Technologies Inc.",
66
"main": "dist/main/ts/api/Main.js",

src/main/ts/configs/Standard.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ export const base: Linter.Config = {
6060
'@typescript-eslint/prefer-for-of': 'error',
6161
'@typescript-eslint/prefer-function-type': 'error',
6262
'@typescript-eslint/quotes': [ 'error', 'single', { allowTemplateLiterals: true }],
63+
'@typescript-eslint/require-await': 'off',
6364
'@typescript-eslint/restrict-plus-operands': 'off',
6465
'@typescript-eslint/restrict-template-expressions': 'off',
6566
'@typescript-eslint/semi': [ 'error', 'always' ],

0 commit comments

Comments
 (0)