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

Update scalafmt-core to 3.7.14 #813

Closed
Closed
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
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.7.14
b3074ccc47b8f119881b5682f5a1e2878184dfe6
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.7.4
version = 3.7.14
runner.dialect = scala213source3
project.git = true
style = Scala.js
Expand Down
3 changes: 1 addition & 2 deletions dom/src/main/scala/org/scalajs/dom/Gamepad.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ trait Gamepad extends js.Any {
/** Last time the data for this gamepad was updated. */
val timestamp: Double

/** An array containing the state of all of the gamepad's axes, from
* -1 .. 1.
/** An array containing the state of all of the gamepad's axes, from -1 .. 1.
*/
val axes: js.Array[Double]

Expand Down
5 changes: 2 additions & 3 deletions dom/src/main/scala/org/scalajs/dom/HTMLMediaElement.scala
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,8 @@ abstract class HTMLMediaElement extends HTMLElement {
/** true if the audio is muted, and false otherwise. */
var muted: Boolean = js.native

/** The default playback rate for the media. 1.0 is "normal speed," values lower than
* 1.0 make the media play slower than normal, higher values make it play faster. The value 0.0 is invalid and throws
* a NOT_SUPPORTED_ERR exception.
/** The default playback rate for the media. 1.0 is "normal speed," values lower than 1.0 make the media play slower
* than normal, higher values make it play faster. The value 0.0 is invalid and throws a NOT_SUPPORTED_ERR exception.
*/
var defaultPlaybackRate: Double = js.native

Expand Down
6 changes: 3 additions & 3 deletions dom/src/main/scala/org/scalajs/dom/HTMLTableElement.scala
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ abstract class HTMLTableElement extends HTMLElement {
*/
var tHead: HTMLTableSectionElement = js.native

/** Removes the row corresponding to the index given in parameter. If the index value is
* -1 the last row is removed; if it smaller than -1 or greater than the amount of rows in the collection, a
* DOMException with the value IndexSizeError is raised.
/** Removes the row corresponding to the index given in parameter. If the index value is -1 the last row is removed;
* if it smaller than -1 or greater than the amount of rows in the collection, a DOMException with the value
* IndexSizeError is raised.
*/
def deleteRow(index: Int): Unit = js.native

Expand Down
Loading