Tutorial

Linting TypeScript Vue.js Components with Wotan

Published on April 23, 2018
author

Joshua Bemenderfer

Linting TypeScript Vue.js Components with Wotan

TypeScript is a special language. People tend to either love it or vehemently hate it (though it seems like most of those who’ve tried it, love it). Regardless of your opinion, TypeScript can be quite convenient at times. But, it can be a pain to get it working properly with Vue. Since TypeScript uses its own linting and compiling tools, integrating it into an existing toolchain can be quite an exploration of arcane arts. Getting TypeScript to lint, for example, Vue Single File Components, cannot be directly done by tslint. You have to go through some convoluted code transforms and such to be able to get something remotely workable. But what if there was another way? Enter wotan, a pluggable TypeScript and JavaScript linter. It has plugins for Vue Single File Components and can bolt right on to your existing tslint project.

Let’s take a look at how we can get Vue Single File Components linted using wotan.

This tutorial assumes you’ve got a project already set up with TypeScript. Something along the lines of Microsoft’s official TypeScript-Vue Starter Project

We’re going to need three packages:

  1. The wotan CLI. Does the usual things that CLIs do.
  2. - A preprocessor for Wotan that extracts scripts from Vue Single File Components for linting.
  3. Valtýr - A plugin for Wotan that effectively works as a drop-in replacement for tslint. It can use your tslint.json files unchanged.
$ npm install --save-dev @fimbul/wotan @fimbul/ve @fimbul/valtyr

Configure Wotan

Create a new file called .fimbullinter.yaml. This holds the configuration that tells wotan how to lint your project.

.fimbullinter.yaml
# Tell wotan to use the valtyr module for linting.
modules: "@fimbul/valtyr"
# Valtýr configuration.
valtyr:
  overrides:
    # Use the Vé preprocessor for all *.vue files.
    # Valtýr will still run for *.ts files by default.
    - files: "*.vue"
      processor: "@fimbul/ve"

Lint!

Now, you can lint your project simply by running wotan in the project directory.

For example, here’s the output I get when running wotan on the default TypeScript-Vue Starter Project.

Wow, that's quite a few errors. Microsoft, what are you doing?

Yikes!

Thankfully, all of those errors can be automatically fixed using wotan --fix.

Don’t like the linter configuration? Just configure tslint.json like you would with any other TypeScript project!

At the moment, wotan is a fairly young project and doesn’t seem to have direct integration with any editors. Perhaps you could help with that?

Take a look at Wotan and Valtýr’s many options to get a feel for what they can do.

And with that, you should be good to go!

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about our products

About the authors
Default avatar
Joshua Bemenderfer

author

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
Leave a comment


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.