Initial commit
This commit is contained in:
27
website/.eslintrc
Normal file
27
website/.eslintrc
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"parser": "babel-eslint",
|
||||
"extends": [
|
||||
"standard",
|
||||
"standard-react"
|
||||
],
|
||||
"plugins": [
|
||||
"babel",
|
||||
"react",
|
||||
"promise"
|
||||
],
|
||||
"env": {
|
||||
"browser" : true
|
||||
},
|
||||
"globals": {
|
||||
"__DEV__" : false,
|
||||
"__TEST__" : false,
|
||||
"__PROD__" : false,
|
||||
"__COVERAGE__" : false
|
||||
},
|
||||
"rules": {
|
||||
"key-spacing" : 0,
|
||||
"jsx-quotes" : [2, "prefer-single"],
|
||||
"object-curly-spacing" : [2, "always"],
|
||||
"space-before-function-paren": ["error", "never"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user