JSPM

  • Created
  • Published
  • Downloads 276
  • Score
    100M100P100Q88882F
  • License ISC

Lint JavaScript, free of weariness and confusion

Package Exports

  • @zazen/eslint-config
  • @zazen/eslint-config/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@zazen/eslint-config) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

zazen-eslint-config

npm version npm downloads

ESLint configuration for zazen-generated projects.

Usage

Install the conventions by running:

npm install --save-dev eslint @zazen/eslint-config

Add the extends to your .eslintrc.js:

{
    extends: ['@zazen'],
    rules: { /* … */ },
}

Add the Prettier settings to your package.json:

"prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "all"
},

TypeScript projects

Install optionalDependencies:

npm install --save-dev @typescript-eslint/{eslint-plugin,parser} eslint-config-standard-with-typescript

Extend TypeScript-specific settings in .eslintrc.js:

{
    extends: ['@zazen/eslint-config/typescript'],
    rules: { /* … */ },
}

Vue.js projects

Includes TypeScript rules as well. Install the optionalDependencies:

npm install --save-dev @typescript-eslint/{eslint-plugin,parser} eslint-config-standard-with-typescript eslint-plugin-vue

Extend the Vue-specific settings in .eslintrc.js:

{
    extends: ['@zazen/eslint-config/vue'],
    rules: { /* … */ },
}