summaryrefslogtreecommitdiff
path: root/.eslintrc
Commit message (Collapse)AuthorAgeFilesLines
* Consistently use "first" indentationPierre Ossman2022-12-271-0/+3
| | | | | We already enforced this for most things, so let's fix up the last few variants as well.
* Merge branch 'appleremotedesktop' of https://github.com/pauldumais/noVNCPierre Ossman2022-04-051-1/+1
|\
| * Added support for Apple Remote Desktop authenticationPaul Dumais2022-04-041-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed eslint warnings Fixing tests that failed Added unit tests for ARD authentication Fixed an issue with the ARD rfb version number in the unit tests Fixed issue with username/password lengths Username and password lengths are now capped at 63 characters each. Improved code for sign bit on public key bytes. UTF Encoder username and password before packing it Change UTF encoding to encode the username and password before packing it to prevent it from being expanded beyond the allowed size. Public key is truncated to proper key length. Replaced forge with web crypto for ARD authentication Changed the way in which the async methods are handled, added unit tests to verify ARD encryption output. Update .eslintignore
* | Added support for RSA-AES Unencrypted Security Typepdlan2022-03-081-2/+3
|/
* Add lint rule for function declaration indentationSamuel Mannehed2020-06-121-0/+1
|
* Add camelCase rule to eslintSamuel Mannehed2020-05-311-0/+1
|
* Enforce switch colon spacingPierre Ossman2018-09-061-0/+1
|
* Enforce space after function namePierre Ossman2018-09-061-0/+3
|
* Enforce space before code blockPierre Ossman2018-09-061-0/+1
|
* Enforce explicit semi-colonsPierre Ossman2018-09-061-0/+1
|
* Enforce curly braces for control statementsPierre Ossman2018-09-061-0/+1
|
* Enforce no trailing whitespacePierre Ossman2018-09-061-0/+1
|
* Enforce keyword spacingPierre Ossman2018-09-061-0/+1
|
* Enforce object key spacingPierre Ossman2018-09-061-0/+1
|
* Enforce function declaration stylePierre Ossman2018-09-061-0/+1
|
* Enforce function namesPierre Ossman2018-09-061-0/+1
|
* Enforce function call spacingPierre Ossman2018-09-061-0/+1
|
* Enforce comma stylePierre Ossman2018-09-061-0/+1
|
* Enforce comma spacingPierre Ossman2018-09-061-0/+1
|
* Enforce indentationPierre Ossman2018-09-061-0/+5
|
* Enforce brace stylePierre Ossman2018-09-061-0/+6
|
* Use fat arrow functions `const foo = () => { ... };` for callbacksJuanjo Diaz2018-07-121-0/+5
| | | | and any other function that is passed around and it's not a top level function
* Use ES6 classesJuanjo Diaz2018-07-121-13/+15
| | | | | Always use the shorthand notation if the function is a method of an object or class `{ foo() { ... } }` or `class bar { foo() { ... } }` unless it's a callback in which case you a fat arrow function should be used `{ cb: () => { ... } }`
* Prefer const/let over varJuanjo Diaz2018-05-241-1/+2
|
* Add eslint and fix reported issuesJuanjo Diaz2018-05-241-0/+14