Skip to content

Commit e60122a

Browse files
committed
revert: lint format vue/prop-name-casing
1 parent 350b941 commit e60122a

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.eslintrc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": true,
2+
"root": true,
33
"env": {
44
"browser": true,
55
"node": true,
@@ -8,7 +8,7 @@
88
"es6": true
99
},
1010
"parserOptions": {
11-
"parser": "babel-eslint"
11+
"parser": "babel-eslint"
1212
},
1313
"extends": ["plugin:vue/recommended", "prettier"],
1414
"rules": {
@@ -19,6 +19,7 @@
1919
"semi": ["error", "always"],
2020
"vue/require-prop-types": "off",
2121
"vue/require-default-prop": "off",
22-
"vue/no-reserved-keys": "off"
22+
"vue/no-reserved-keys": "off",
23+
"vue/prop-name-casing": "off"
2324
}
24-
}
25+
}

components/vc-tabs/src/Tabs.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default {
4141
tabBarPosition: PropTypes.string.def('top'),
4242
activeKey: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
4343
defaultActiveKey: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
44-
propsSymbol: PropTypes.any,
44+
__propsSymbol__: PropTypes.any,
4545
},
4646
data() {
4747
const props = getOptionProps(this);

0 commit comments

Comments
 (0)