Enable eslint indentation rule.

This is a fully automated change.  The linter will fail because the
extra indentation caused line-length errors.  These won't be fixed
automatically.  They are fixed in a follow-up to make this one fully
automated.

Change-Id: I4d8cf9c998985add2bcd24a81c8d65495668c4f3
This commit is contained in:
Jacob Trimble
2019-05-13 15:20:37 -07:00
parent 615b46d70c
commit f130dffcef
135 changed files with 5318 additions and 5319 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ describe('EbmlParser', /** @suppress {accessControls} */ () => {
// Set size to 4 bytes.
// Set the data to [0x09, 0x08, 0x07, 0x06].
const data = new Uint8Array([0x81, 0x84, 0x01, 0x02, 0x03, 0x04, 0x82, 0x84,
0x09, 0x08, 0x07, 0x06]);
0x09, 0x08, 0x07, 0x06]);
const parser = new shaka.util.EbmlParser(new DataView(data.buffer));
const elem1 = parser.parseElement();