chore: bump @typescript-eslint/eslint-plugin to 5.3.0 (#17367)

This commit is contained in:
Yongjie Zhao 2021-11-08 15:48:51 +00:00 committed by GitHub
parent ed4a628861
commit b58f94ad2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 634 additions and 535 deletions

View File

@ -38,7 +38,7 @@ module.exports = {
version: 'detect',
},
},
plugins: ['prettier', 'react'],
plugins: ['prettier', 'react', 'file-progress'],
overrides: [
{
files: ['cypress-base/**/*'],
@ -145,6 +145,7 @@ module.exports = {
'react/sort-comp': 0, // TODO: re-enable in separate PR
'react/static-property-placement': 0, // re-enable up for discussion
'prettier/prettier': 'error',
'file-progress/activate': 1,
},
settings: {
'import/resolver': {

File diff suppressed because it is too large Load Diff

View File

@ -245,8 +245,8 @@
"@types/rison": "0.0.6",
"@types/sinon": "^9.0.5",
"@types/yargs": "12 - 15",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
@ -264,6 +264,7 @@
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-file-progress": "^1.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.6.5",

View File

@ -94,7 +94,7 @@ export default class TextControl<
});
};
render = () => {
render() {
let { value } = this.state;
if (this.initialValue !== this.props.value) {
this.initialValue = this.props.value;
@ -115,5 +115,5 @@ export default class TextControl<
/>
</div>
);
};
}
}