mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-13 02:59:13 +08:00
24 lines
426 B
JavaScript
24 lines
426 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2020,
|
||
|
ecmaFeatures: {
|
||
|
jsx: true,
|
||
|
},
|
||
|
},
|
||
|
env: {
|
||
|
browser: true,
|
||
|
node: true,
|
||
|
jest: true,
|
||
|
es6: true,
|
||
|
},
|
||
|
extends: 'eslint-config-airbnb-base',
|
||
|
rules: {
|
||
|
'no-nested-ternary': [0],
|
||
|
'no-param-reassign': [0],
|
||
|
'no-use-before-define': [0],
|
||
|
'no-plusplus': [0],
|
||
|
'import/no-extraneous-dependencies': [0],
|
||
|
},
|
||
|
};
|