mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-01-12 17:43:00 +08:00
18 lines
492 B
Plaintext
18 lines
492 B
Plaintext
{
|
|
// babel parser to support ES features
|
|
"parser": "babel-eslint",
|
|
// based on https://github.com/feross/standard
|
|
"extends": [ "standard", "standard-react" ],
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"rules": {
|
|
// overrides of the standard style
|
|
"space-before-function-paren": [ 2, { "anonymous": "always", "named": "never" } ],
|
|
"wrap-iife": [ 2, "outside" ],
|
|
// overrides of the standard-react style
|
|
"react/jsx-sort-props": 2,
|
|
"react/jsx-sort-prop-types": 2
|
|
}
|
|
}
|