mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
32 lines
466 B
Plaintext
32 lines
466 B
Plaintext
{
|
|
"rules": {
|
|
"indent": [
|
|
2,
|
|
2
|
|
],
|
|
"quotes": [
|
|
2,
|
|
"single"
|
|
],
|
|
"linebreak-style": [
|
|
2,
|
|
"unix"
|
|
],
|
|
"semi": [
|
|
2,
|
|
"always"
|
|
]
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"plugins": [
|
|
"react"
|
|
]
|
|
}
|