Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small update to intro docs #1095

Merged
merged 1 commit into from
Apr 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/users/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pull request is tested on both Linux and Windows.
**Java 8 or Java 11.**

**Scala 2.11, 2.12 or 2.13**: Scalafix works only with the latest version of Scala
2.11, Scala 2.12 and Scala 2.13.
2.11, Scala 2.12 and Scala 2.13.

| Scalafix | Scala Compiler | Scalameta |
| --------- | ------------------------------------ | ----------- |
Expand Down Expand Up @@ -60,8 +60,8 @@ RemoveUnused ...
The first error message means the
[SemanticDB](https://scalameta.org/docs/semanticdb/guide.html) compiler plugin
is not enabled for this project. The second error says `RemoveUnused` requires
the Scala compiler option `-Ywarn-unused`. To fix both problems, add the
following settings to `build.sbt`
the Scala compiler option `-Ywarn-unused-import` (or `-Wunused:imports` in
2.13.x). To fix both problems, add the following settings to `build.sbt`

```diff
// build.sbt
Expand Down
3 changes: 3 additions & 0 deletions website/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
"rules/DisableSyntax": {
"title": "DisableSyntax"
},
"rules/ExplicitResultTypes": {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was just auto-generated since it was missing.

"title": "ExplicitResultTypes"
},
"rules/external-rules": {
"title": "Using external rules",
"sidebar_label": "Using external rules"
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"rename-version": "docusaurus-rename-version"
},
"devDependencies": {
"docusaurus": "^1.4.0"
"docusaurus": "1.14.4"
}
}