ItzNotABug / appexpress

An express.js like framework for Appwrite Functions, enabling super-easy navigation!
Apache License 2.0
39 stars 4 forks source link

Fields Not Private #13

Closed ItzNotABug closed 4 months ago

ItzNotABug commented 4 months ago

I use IntelliJ IDE to develop projects and hence it marks any field with _ prefix as private. However VSCode adheres to # prefix for private fields which is acceptable by IntelliJ as well.

Currently used prefix is _, example: this._context. Due to this, all the private fields are visible and accessible in VSCode's auto-completion. Better to refactor to use the #.

ItzNotABug commented 4 months ago

Completed in #14.