Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ac500c8

Browse files
committedSep 15, 2015
[changed] Replace everything with LinkContainer
1 parent 888fc56 commit ac500c8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+639
-1805
lines changed
 

‎.eslintignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

‎.eslintrc

Lines changed: 2 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,7 @@
11
{
2-
"extends": ["eslint-config-airbnb"],
3-
"env": {
4-
"browser": true,
5-
"node": true
6-
},
7-
"ecmaFeatures": {
8-
"jsx": true
9-
},
10-
"parser": "babel-eslint",
11-
"plugins": [
12-
"react",
13-
"babel"
14-
],
2+
"extends": "airbnb",
153
"rules": {
164
"comma-dangle": 0,
17-
"comma-spacing": 1,
18-
"key-spacing": 0,
19-
"no-eq-null": 0,
20-
"no-param-reassign": 0,
21-
"no-underscore-dangle": 0,
22-
"no-undef": 2,
23-
"no-unused-vars": [2, { "vars": "all", "args": "none" }],
24-
"no-var": 2,
25-
"babel/object-shorthand": 2,
26-
"quotes": [1, "single", "avoid-escape"],
27-
"react/display-name": 0,
28-
"react/jsx-no-undef": 2,
29-
"react/jsx-quotes": 0,
30-
"react/jsx-uses-react": 2,
31-
"react/no-did-mount-set-state": 2,
32-
"react/no-did-update-set-state": 2,
33-
"react/no-multi-comp": 2,
34-
"react/prop-types": [1, { "ignore": ["children", "className"] }],
35-
"react/react-in-jsx-scope": 2,
36-
"react/self-closing-comp": 1,
37-
"react/wrap-multilines": 2,
38-
"react/jsx-uses-vars": 1,
39-
"strict": 0
5+
"no-eq-null": 0
406
}
417
}

0 commit comments

Comments
 (0)
Please sign in to comment.