Skip to content
This repository was archived by the owner on Jun 10, 2019. It is now read-only.

Commit 5d0e2c6

Browse files
committed
Change lint rules to allow more visible propTypes
1 parent 5211373 commit 5d0e2c6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.eslintrc

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
},
1010
"parser": "babel-eslint",
1111
"rules": {
12-
"no-console": 1,
13-
"comma-dangle": [1, "only-multiline"],
12+
"no-console": "error",
13+
"no-use-before-define": "off",
14+
"comma-dangle": ["error", "only-multiline"],
1415
"jsx-a11y/anchor-is-valid": ["error", { "components": ["Link"], "specialLink": ["to"] }],
1516
"jsx-a11y/label-has-for": [
1617
2,
@@ -22,7 +23,7 @@
2223
"allowChildren": false
2324
}
2425
],
25-
"object-curly-newline": 0,
26+
"object-curly-newline": "warn",
2627
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
2728
"react/jsx-curly-brace-presence": [2, { "props": "never", "children": "never" }],
2829
"react/prefer-stateless-function": 0,

0 commit comments

Comments
 (0)