You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-10Lines changed: 4 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,12 +15,6 @@
15
15
16
16
### 1. Install plugin
17
17
18
-
```shell
19
-
yarn add --dev eslint-plugin-ember
20
-
```
21
-
22
-
Or
23
-
24
18
```shell
25
19
npm install --save-dev eslint-plugin-ember
26
20
```
@@ -178,7 +172,7 @@ rules in templates can be disabled with eslint directives with mustache or html
178
172
 Set in the `recommended-gjs`[configuration](https://github.com/ember-cli/eslint-plugin-ember#-configurations).\
179
173
 Set in the `recommended-gts`[configuration](https://github.com/ember-cli/eslint-plugin-ember#-configurations).\
180
174
🔧 Automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/user-guide/command-line-interface#--fix).\
181
-
💡 Manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
175
+
💡 Manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
182
176
183
177
### Components
184
178
@@ -354,10 +348,10 @@ If you have any suggestions, ideas, or problems, feel free to [create an issue](
354
348
-`lib/rules/new-rule.js` (implementation, see [no-proxies](lib/rules/no-proxies.js) for an example)
355
349
-`docs/rules/new-rule.md` (documentation, start from the template -- [raw](https://raw.githubusercontent.com/ember-cli/eslint-plugin-ember/master/docs/rules/_TEMPLATE_.md), [rendered](docs/rules/_TEMPLATE_.md))
356
350
-`tests/lib/rules/new-rule.js` (tests, see [no-proxies](tests/lib/rules/no-proxies.js) for an example)
357
-
- Run `yarn update` to automatically update the README and other files (and re-run this if you change the rule name or description)
351
+
- Run `pnpm update` to automatically update the README and other files (and re-run this if you change the rule name or description)
358
352
- Make sure your changes will pass [CI](./.github/workflows/ci.yml) by running:
359
-
-`yarn test`
360
-
-`yarn lint` (`yarn lint:js --fix` can fix many errors)
353
+
-`pnpm test`
354
+
-`pnpm lint` (`pnpm lint:js --fix` can fix many errors)
361
355
- Create a PR and link the created issue in the description
362
356
363
357
Note that new rules should not immediately be added to the [recommended](./lib/recommended-rules.js) configuration, as we only consider such breaking changes during major version updates.
Copy file name to clipboardExpand all lines: RELEASE.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,4 +8,4 @@
8
8
9
9
4.`export EDITOR="vim"` to choose an editor for editing the changelog
10
10
11
-
5.`yarn release` (uses [@release-it-plugins/lerna-changelog](https://github.com/release-it-plugins/lerna-changelog) to handle versioning, the changelog, publishing to GitHub and NPM, etc)
11
+
5.`pnpm release` (uses [@release-it-plugins/lerna-changelog](https://github.com/release-it-plugins/lerna-changelog) to handle versioning, the changelog, publishing to GitHub and NPM, etc)
0 commit comments