Skip to content

Commit

Permalink
Merge pull request #48 from tinymce/feature/TINY-10602
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSpyder authored Mar 13, 2024
2 parents af4d5c6 + 8b62a54 commit be60c45
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

### Changed
- Disabled `@typescript-eslint/require-await`, which caused some builds to fail inconsistently and doesn't seem particularly valuable

## 2.3.1 - 2023-05-21

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tinymce/eslint-plugin",
"version": "2.3.2-rc",
"version": "2.4.0-rc",
"description": "Plugin for ESLint containing Tiny Technologies Inc. standard linting rules",
"author": "Tiny Technologies Inc.",
"main": "dist/main/ts/api/Main.js",
Expand Down
1 change: 1 addition & 0 deletions src/main/ts/configs/Standard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export const base: Linter.Config = {
'@typescript-eslint/prefer-for-of': 'error',
'@typescript-eslint/prefer-function-type': 'error',
'@typescript-eslint/quotes': [ 'error', 'single', { allowTemplateLiterals: true }],
'@typescript-eslint/require-await': 'off',
'@typescript-eslint/restrict-plus-operands': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/semi': [ 'error', 'always' ],
Expand Down

0 comments on commit be60c45

Please sign in to comment.