niksy / eslint-config-nitpick

ESLint config for my projects.
MIT License
2 stars 0 forks source link

Adjust Vue template casing for component names #40

Closed niksy closed 5 years ago

niksy commented 5 years ago
"rules": {
        "vue/component-name-in-template-casing": [
            2,
            "PascalCase",
            {
                "ignores": [
                    "svg",
                    "rect"
                ]
            }
        ]
    }