mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-10 17:49:16 +08:00
27 lines
519 B
Plaintext
27 lines
519 B
Plaintext
|
{
|
||
|
"root": true,
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"node": true,
|
||
|
"jasmine": true,
|
||
|
"jest": true,
|
||
|
"es6": true
|
||
|
},
|
||
|
"extends": "eslint-config-airbnb/base",
|
||
|
"parserOptions": {
|
||
|
"parser": "babel-eslint",
|
||
|
"ecmaVersion": 8,
|
||
|
"ecmaFeatures": {
|
||
|
"jsx": true,
|
||
|
"experimentalObjectRestSpread": true
|
||
|
}
|
||
|
},
|
||
|
"rules": {
|
||
|
"no-nested-ternary": [0],
|
||
|
"no-param-reassign": [0],
|
||
|
"no-use-before-define": [0],
|
||
|
"no-plusplus": [0],
|
||
|
"import/no-extraneous-dependencies": [0]
|
||
|
}
|
||
|
}
|