yoda-common-boilerplate
Version:
Repository of all JCP reusable atoms, molecules and organisms
49 lines (48 loc) • 1.05 kB
Plain Text
{
"parser": "babel-eslint",
"extends": [
"standard",
"standard-react",
"eslint:recommended"
],
"plugins": [
"babel",
"react",
"promise"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"rules": {
"indent": [
2, 4, {
"SwitchCase": 1
}
],
"react/jsx-indent": [2, 4],
"max-len": [
"error", 120, {
"ignoreComments": true,
"ignoreTrailingComments": true,
"ignoreStrings": true
}
],
"max-statements-per-line": [
2, {
"max": 1
}
],
"no-console": 0,
"semi": [2, "always"],
"react/jsx-uses-react": [2],
"react/jsx-uses-vars": [2],
"react/react-in-jsx-scope": [2],
"react/jsx-space-before-closing": [2, "never"]
}
}