Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add editorconfig
  • Loading branch information
martme committed Oct 21, 2017
1 parent 933018f commit 4ee0865
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
@@ -0,0 +1,15 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[Makefile]
indent_style = tab
2 changes: 1 addition & 1 deletion LICENCE.md
Expand Up @@ -6,4 +6,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4 changes: 2 additions & 2 deletions encoder-visual.html
Expand Up @@ -29,7 +29,7 @@ <h1>encoder (visual)</h1>
</div>

<h2>config</h2>
<label for="waveform">waveform:
<label for="waveform">waveform:
<select id="waveform">
<option value="sine">sine</option>
<option value="square">square</option>
Expand All @@ -55,7 +55,7 @@ <h2>config</h2>
analyser.minDecibels = -62;

masterGain.connect(analyser);

let timeBuffer = new Uint8Array(analyser.frequencyBinCount);
let frequencyBuffer = new Uint8Array(analyser.frequencyBinCount);
let oscillators = {};
Expand Down
4 changes: 2 additions & 2 deletions style-visual.css
Expand Up @@ -66,6 +66,6 @@ code.trace-binary + code.trace-text {
}

code.trace-binary + code.trace-text:before {
content: '=';
content: '=';
padding-right: 10px;
}
}

0 comments on commit 4ee0865

Please sign in to comment.