diff --git a/ivette/README.md b/ivette/README.md index ca9c70e965912edb4ce8a840534414d00a0c8f9d..575f15b84b5049d4be6783c541a972983afe879b 100644 --- a/ivette/README.md +++ b/ivette/README.md @@ -18,16 +18,31 @@ From the `./ivette` sub-directory of Frama-C main directory: $ make app ``` -## Typescript Editors +## Typescript with Emacs -Emacs mode configuration can be setup with Typescript, Web-mode and Tide packages -which are all available with MELPA. For configuring your `.emacs` accordingly, +Emacs mode configuration can be setup with Typescript, Web-mode and Tide packages. +You can install them with `M-x package-install`: + +``` +M-x package-refresh-contents ;; updates your index +M-x package-install web-mode +M-x package-install typescript-mode +M-x package-install tidse +``` + +For configuring your `.emacs` accordingly, please look at the `share/typescript-config.el` file. -This setup the Tide package to work with +It setup the Tide package to work with `typescript-mode` for `*.ts` files (see also `tsfmt.json` config file) and `web-mode` for `*.tsx` files. -VS-Code is also known to work out of the box. +Usefull commands: +``` +M-. goto definition +M-, back to previous point +M-x tide-documentation-at-point +M-x tide-error-at-point +``` ## Coding Guidelines diff --git a/ivette/jsdoc.json b/ivette/jsdoc.json deleted file mode 100644 index 3737d8aa52005edc2b83fef5b60bb6808e436d60..0000000000000000000000000000000000000000 --- a/ivette/jsdoc.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "source": { - "include": [ - "src/dome/doc/README.md", - "build" - ] - }, - "opts": { - "recurse": true, - "tutorials": "src/dome/doc/tutorials", - "template": "src/dome/doc/template" - }, - "plugins": [ "plugins/markdown" ], - "templates": { - "default": { - "useLongnameInNav": true, - "outputSourceFiles": false, - "includeDate": false - } - } -} diff --git a/ivette/share/typescript-config.el b/ivette/share/typescript-config.el index bac505c7d20ee59d0a05090fc42aa6ec7f959c30..2a524efd0792b26fdd86f3d7af3bada8b00ee397 100644 --- a/ivette/share/typescript-config.el +++ b/ivette/share/typescript-config.el @@ -19,6 +19,7 @@ (defun setup-txs-mode () (interactive) (when (string-equal "tsx" (file-name-extension buffer-file-name)) + (setq web-mode-enable-auto-quoting nil) (setup-tide-mode))) ;; aligns annotation to the right hand side