1.0.2 • Published 6 years ago

tern-googleappsscript v1.0.2

Weekly downloads
35
License
MIT
Repository
-
Last release
6 years ago

Google Apps Script / tern.js

npm installable version.

This is a patched version of aki2o's Google Apps Script plugin for tern, updated with type definitions from current (2018) documentation. See here for the full project details. You should follow instructions there to install globally. The installation below is intended for local installation (per project basis).

###Install 1. Install ternjs. Tern is supported on many code editors, including Sublime, Emacs, Vim, and many more. 2. Install this package via npm in your current project directory:

npm i tern-googleappsscript
  1. Load the tern plugin using a .tern-project file placed in your project directory:
// .tern-project

{
  "libs": [
  ],
  "plugins": {
    "googleappsscript"
  }
}