Skip to content

Commit 8aebb76

Browse files
committed
Lint and format
1 parent 5781a76 commit 8aebb76

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

docs/rules/no-deprecated-experimental-components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# No experimental SelectPanel
1+
# No deprecated experimental components
22

33
## Rule Details
44

@@ -26,4 +26,4 @@ function ExampleComponent() {
2626
}
2727
```
2828

29-
Or by removing usage of the component.
29+
Or by removing usage of the component.

src/rules/no-deprecated-experimental-components.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ module.exports = {
3333
schema: [],
3434
},
3535
create(context) {
36-
const sourceCode = context.getSourceCode()
37-
3836
return {
3937
ImportDeclaration(node) {
4038
if (!entrypoints.has(node.source.value)) {

0 commit comments

Comments
 (0)