diff options
author | Nick Schonning <nschonni@gmail.com> | 2022-12-18 10:51:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-19 00:51:37 +0900 |
commit | 06b68490d1957d680adc0c0c4ed2c84641de2056 (patch) | |
tree | 95127495c9e773fc71a38f3df2a833bfc6d03d09 /app/javascript/mastodon/compare_id.js | |
parent | 2889c686108e89a87317505f93b841f5a8a6649b (diff) | |
download | mastodon-main.tar mastodon-main.tar.gz mastodon-main.tar.bz2 mastodon-main.zip |
* Enable ESLint recommended ruleset
* Disable failing ESLint recommended rules
* Remove rules shadowed by eslint:recommended
Diffstat (limited to 'app/javascript/mastodon/compare_id.js')
-rw-r--r-- | app/javascript/mastodon/compare_id.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/compare_id.js b/app/javascript/mastodon/compare_id.js index 66cf51c4b..d2bd74f44 100644 --- a/app/javascript/mastodon/compare_id.js +++ b/app/javascript/mastodon/compare_id.js @@ -8,4 +8,4 @@ export default function compareId (id1, id2) { } else { return id1.length > id2.length ? 1 : -1; } -}; +} |