Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 696 Bytes

07_linter.md

File metadata and controls

37 lines (26 loc) · 696 Bytes

ESLint and Prettier

For more information about configuration and rules, show ESLint Documentation

ESLint config file: .eslintrc.cjs

Vue3-essential is set by default.

  extends: [
  'plugin:vue/vue3-essential',
],

To use extended rules, change this to recommended.

  extends: [
  'plugin:vue/vue3-recommended',
],

For more information about the rules, show Prettier Options

Prettier config file: .prettierrc

{
    "semi": false,
    "singleQuote": true,
    "trailingComma": "none"
}

back to Index