You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
This issue has been automatically locked since there has not been any recent activity after it was closed. If you can still reproduce this issue in Safe Mode then please open a new issue and fill out the entire issue template to ensure that we have enough information to address your issue. Thanks!
lockbot
locked as resolved and limited conversation to collaborators
Jan 27, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
List of things that should be done to clean up each package
Remove use of
window
globals and use them fromatom
global insteadwindow.syntax
➡️atom.syntax
window.config
➡️atom.config
window.pasteboard
➡️atom.pasteboard
window.keymap
➡️atom.keymap
window.project
➡️atom.project
window.rootView
➡️atom.rootView
Remove use of package manager methods on
atom
, use them viaatom.packages
insteadatom.activatePackage
➡️atom.packages.activatePackage
Remove use of deserializer helpers on window
registerDeserializer
➡️atom.deserializers.add
Remove use of emissary Emitter shims
one
➡️once
trigger
➡️emit
subscriptionCount
➡️getSubscriptionCount
Remove use of the following fs methods
exists
➡️existsSync
makeTree
➡️makeTreeSync
move
➡️moveSync
read
➡️readFileSync
remove
➡️removeSync
write
➡️writeFile
writeSync
➡️writeFileSync
The text was updated successfully, but these errors were encountered: