0.3.3 • Published 8 months ago

eslint-config-kamisama v0.3.3

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

eslint-config-kamisama

'eslint' configuration by style guide IF.Kamisama.
Contains different framework and library lint configurations and also a global lint which can be used by any JavaScript project.

Getting started

Installation

Peer dependencies

  • eslint
  • @babel/core
  • @babel/eslint-parser
  • babel-plugin-module-resolver
  • eslint-import-resolver-babel-module
  npm install --save-dev eslint-config-kamisama

Usage

Config .eslintrc

  {
    "parser": "@babel/eslint-parser",
      "extends": [
        "eslint-config-kamisama"
      ],
      "settings": {
      "import/resolver": {
        "babel-module": {}
      }
    }
  }