Skip to content

Commit 0ddbe6f

Browse files
authored
chore: Update linting (#7201)
* Update linting * Update jest.config.js
1 parent 18835f7 commit 0ddbe6f

File tree

59 files changed

+1798
-1253
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1798
-1253
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,9 @@ jobs:
290290

291291
- run:
292292
name: lint
293-
command: yarn lint
293+
command: |
294+
yarn test:lint
295+
yarn lint
294296
295297
ts-build-branch:
296298
executor: rsp-large

.eslintignore

Lines changed: 0 additions & 19 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 336 deletions
This file was deleted.

bin/pure-render.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module.exports = {
6565
}
6666

6767
// Find the variable definition for the object.
68-
const variable = getVariable(context.getScope(), member.object.name);
68+
const variable = getVariable(context.sourceCode.getScope(node), member.object.name);
6969
if (!variable) {
7070
return;
7171
}

0 commit comments

Comments
 (0)