0.0.2 • Published 4 years ago

@tyankatsu0105/eslint-with-typescript v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

@tyankatsu0105/eslint-with-typescript

Create ESLint rules with TypeScript

npm i -D @tyankatsu0105/eslint-with-typescript

development

Branches

  • master => Release branch
  • develop => Development branch (default)
  • topic branches => From develop branch

playground

If you want to check eslint error, make these files in the sandbox dir.

// index.js

"use strict";

const hoge = "aaa";
// .eslintrc.js

/** @type import('eslint').Linter.BaseConfig */
module.exports = {
  parserOptions: {
    ecmaVersion: 2018,
  },
  rules: {
    "no-hoge": 2,
  },
};

Inspired by these

LICENSE (MIT)

See LICENSE