mach-react
Version:
Fast, and tiny react implementation.
36 lines (35 loc) • 702 B
Plain Text
{
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
"curly": 0,
"comma-dangle": 0,
"comma-spacing": 0,
"eqeqeq": [2, "allow-null"],
"indent": [1, 2, {"VariableDeclarator": 2}],
"key-spacing": 0,
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"no-shadow": 0,
"no-shadow-restricted-names": 0,
"no-extend-native": 0,
"no-var": 1,
"new-cap": 0,
"quotes": [2, "single"],
"semi-spacing": 0,
"space-unary-ops": 0,
"space-infix-ops": 0,
"consistent-return": 0,
"strict": [1, "global"]
},
"parser": "babel-eslint",
"plugins": [
"react"
],
"ecmaFeatures": {
"jsx": true
}
}