"Vue .eslintrc.cjs"의 두 판 사이의 차이

 
22번째 줄: 22번째 줄:


   rules: {
   rules: {
     // for Volar format
     // Volar format
     'space-before-function-paren': 'off',
     'space-before-function-paren': 'off',
     'vue/html-closing-bracket-newline': 'off',
     'vue/html-closing-bracket-newline': 'off',
30번째 줄: 30번째 줄:
     // using v-html
     // using v-html
     'vue/no-v-html': 'off',
     'vue/no-v-html': 'off',
     // cool
     // cool comma
     'comma-dangle': ['error', 'always-multiline'],
     'comma-dangle': ['error', 'always-multiline'],
     // sort-imports
     // sort imports
    'sort-imports': [
      'error', {
        ignoreDeclarationSort: true,
      },
    ],
     'import/order': ['error', {
     'import/order': ['error', {
       'newlines-between': 'always',
       'newlines-between': 'always',
45번째 줄: 40번째 줄:
         { pattern: '@/**', group: 'internal' },
         { pattern: '@/**', group: 'internal' },
       ],
       ],
     },
     }],
    ],
   },
   },
}
}

2023년 10월 12일 (목) 23:24 기준 최신판

1 개요[ | ]

Vue .eslintrc.js
Vue .eslintrc.cjs
Vue.js .eslintrc.js
Vue.js .eslintrc.cjs
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
  root: true,
  extends: [
    'plugin:vue/vue3-recommended',
    'eslint:recommended',
    '@vue/eslint-config-standard',
    '@vue/eslint-config-typescript',
  ],
  parserOptions: {
    ecmaVersion: 'latest',
  },

  rules: {
    // Volar format
    'space-before-function-paren': 'off',
    'vue/html-closing-bracket-newline': 'off',
    'vue/html-indent': 'off',
    'vue/first-attribute-linebreak': 'off',
    'vue/max-attributes-per-line': 'off',
    // using v-html
    'vue/no-v-html': 'off',
    // cool comma
    'comma-dangle': ['error', 'always-multiline'],
    // sort imports
    'import/order': ['error', {
      'newlines-between': 'always',
      groups: [['builtin', 'external'], 'internal', 'parent', 'sibling', 'index', 'object', 'type'],
      pathGroups: [
        { pattern: 'vue', group: 'builtin' },
        { pattern: '@/**', group: 'internal' },
      ],
    }],
  },
}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}