mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-15 05:10:47 +08:00
17 lines
315 B
JavaScript
17 lines
315 B
JavaScript
module.exports = {
|
|
parser: 'babel-eslint',
|
|
extends: ["eslint:recommended", "plugin:react/recommended"],
|
|
parserOptions: {
|
|
sourceType: 'module',
|
|
ecmaFeatures: {
|
|
"jsx": true
|
|
}
|
|
},
|
|
plugins: [
|
|
"react"
|
|
],
|
|
rules: {
|
|
indent: ["error", 2],
|
|
}
|
|
}
|