You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
537 B
Plaintext
30 lines
537 B
Plaintext
{
|
|
"parser" : "babel-eslint",
|
|
"extends" : [
|
|
"standard",
|
|
"standard-react"
|
|
],
|
|
"plugins": [
|
|
"babel",
|
|
"react",
|
|
"promise"
|
|
],
|
|
"env" : {
|
|
"browser" : true
|
|
},
|
|
"globals" : {
|
|
"__DEV__" : false,
|
|
"__PROD__" : false,
|
|
"__DEBUG__" : false,
|
|
"__COVERAGE__" : false,
|
|
"__BASENAME__" : false
|
|
},
|
|
"rules": {
|
|
"semi" : [2, "never"],
|
|
"max-len": [2, 120, 2],
|
|
"generator-star-spacing": 0,
|
|
"babel/generator-star-spacing": 1,
|
|
"jsx-quotes": [2, "prefer-single"]
|
|
}
|
|
}
|