123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /**
- * @fileoverview Requires specific casing for the Prop name in Vue components
- * @author Yu Kimura
- */
- 'use strict'
- const utils = require('../utils')
- const casing = require('../utils/casing')
- const allowedCaseOptions = ['camelCase', 'snake_case']
- // ------------------------------------------------------------------------------
- // Rule Definition
- // ------------------------------------------------------------------------------
- /** @param {RuleContext} context */
- function create(context) {
- const options = context.options[0]
- const caseType =
- allowedCaseOptions.indexOf(options) !== -1 ? options : 'camelCase'
- const checker = casing.getChecker(caseType)
- // ----------------------------------------------------------------------
- // Public
- // ----------------------------------------------------------------------
- return utils.executeOnVue(context, (obj) => {
- for (const item of utils.getComponentProps(obj)) {
- const propName = item.propName
- if (propName == null) {
- continue
- }
- if (!checker(propName)) {
- context.report({
- node: item.node,
- message: 'Prop "{{name}}" is not in {{caseType}}.',
- data: {
- name: propName,
- caseType
- }
- })
- }
- }
- })
- }
- // ------------------------------------------------------------------------------
- // Rule Definition
- // ------------------------------------------------------------------------------
- module.exports = {
- meta: {
- type: 'suggestion',
- docs: {
- description:
- 'enforce specific casing for the Prop name in Vue components',
- categories: ['vue3-strongly-recommended', 'strongly-recommended'],
- url: 'https://eslint.vuejs.org/rules/prop-name-casing.html'
- },
- fixable: null, // null or "code" or "whitespace"
- schema: [
- {
- enum: allowedCaseOptions
- }
- ]
- },
- create
- }
|