Skip to content

Commit f542d61

Browse files
committed
chore: putout: actions: lint ☘️
1 parent 320818a commit f542d61

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ are also supported. Here is how it looks like:
5757
- [🛴 Codemods](#-codemods)
5858
- [⏣ Integration with ESLint](#-integration-with-eslint)
5959
- [☄️ Integration with Babel](#%EF%B8%8F-integration-with-babel)
60-
- [🐈 Integration with Yarn PnP](#-integration-with-yarn-pnp)
60+
- [🐈 Integration with Yarn OnP](#-integration-with-yarn-pnp)
6161
- [⛓ Using Putout as Loader](#-using-putout-as-loader)
6262
- [🚪 Exit Codes](#exit-codes)
6363
- [🦔 Real-world uses](#-real-world-uses)
@@ -2836,7 +2836,7 @@ Just create `.babelrc.json` file with configuration you need.
28362836
}
28372837
```
28382838

2839-
## 🐈 Integration with Yarn PnP
2839+
## 🐈 Integration with Yarn OnP
28402840

28412841
Since 🐊**Putout** has dynamic nature of loading:
28422842

docs/the-book-of-ast.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,8 @@ friend.
144144
```js
145145
if (fruit === '🍎')
146146
// 🌳(🍎)
147-
eat('🍎');// 🦏 ❤️ 🍎
147+
eat('🍎');
148+
// 🦏 ❤️ 🍎
148149
```
149150

150151
"An apple can grow on a branch, but branch cannot grow on apple, the same goes to **Expressions** and **Statements**", continued 🐊**Putout**.

packages/compare/lib/link.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ const parseName = (node) => {
2424

2525
if (isTSTypeReference(node))
2626
return node.typeName.name;
27-
2827
// if (isTSMappedType(node))
29-
3028
// return node.key.name;
3129
};
3230

packages/plugin-remove-quotes-from-import-assertions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ npm i @putout/plugin-remove-quotes-from-import-assertions
2929
## ❌ Example of incorrect code
3030

3131
```js
32-
import json from './mod.json' with { 'type': 'json' };
32+
import json from './mod.json' with { type: 'json' };
3333
```
3434

3535
## ✅ Example of correct code

0 commit comments

Comments
 (0)