šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

eslint-plugin-vue-kuzzle

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-vue-kuzzle

Kuzzle Vue Coding Standard

0.0.13
latest
Source
npm
Version published
Weekly downloads
130
150%
Maintainers
1
Weekly downloads
Ā 
Created
Source

eslint-plugin-vue-kuzzle

Kuzzle Coding Standard for Vue.js.

This plugin is standalone, meaning that eslint and prettier are included in the package so you don't need to install them yourself.

Install our coding standard

  • Install the plugin
npm i eslint-plugin-vue-kuzzle --save-dev
  • Add kuzzle to the plugins section of your .eslintrc configuration file and select the default rule set:
{
  "extends": [
    "plugin:vue-kuzzle/defaultt",
    "plugin:vue-kuzzle/base",
    "plugin:vue-kuzzle/typescript"
  ]
}
  • Remove unused eslint-related dependencies (such as @vue/eslint-config-standard, eslint etc)

  • Commit relevant files

Available rule sets

  • plugin:vue-kuzzle/default: default combines base and typecript rules sets
  • plugin:vue-kuzzle/base: rules for only Javascript projects
  • plugin:vue-kuzzle/typescript: rules for Typescript projects

You can disable the import/order rule on project that are not libraries:

{
  "extends": [
    "plugin:vue-kuzzle/default",
  ],
  "rules": {
    "import/order": ["off"]
  }
}

Keywords

eslint

FAQs

Package last updated on 12 Jun 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts