Skip to content

Commit

Permalink
Cleanup preparation for the new Autosuggest
Browse files Browse the repository at this point in the history
  • Loading branch information
moroshko committed Aug 15, 2015
1 parent 429650c commit 57be0cd
Show file tree
Hide file tree
Showing 53 changed files with 265 additions and 50,179 deletions.
44 changes: 22 additions & 22 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
{
"env": {
"es6": true,
"node": true,
"browser": true,
"es6": true
"browser": true
},
"parser": "babel-eslint",
"plugins": [
"react"
],
"ecmaFeatures": {
"jsx": true
},
"rules": {
"strict": [2, "never"],
"space-after-keywords": [2, "always"],
"brace-style": [2, "1tbs"],
"camelcase": [2, { "properties": "always" }],
"comma-dangle": [2, "never"],
"comma-style": [2, "last"],
"eol-last": 2,
"indent": [2, 2, { "SwitchCase": 1 }],
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
"linebreak-style": [2, "unix"],
"no-cond-assign": [2, "always"],
"no-multiple-empty-lines": [2, { "max": 1 }],
"no-spaced-func": 2,
"no-trailing-spaces": 2,
"newline-after-var": [2, "always"],
"object-curly-spacing": [2, "always"],
"quote-props": [2, "as-needed"],
"quotes": [2, "single"],

"react/jsx-boolean-value": 2,
"react/jsx-quotes": [2, "double"],
"react/jsx-no-undef": 2,
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/no-did-mount-set-state": 2,
"react/no-did-update-set-state": 2,
"react/no-multi-comp": 2,
"react/no-unknown-property": 2,
"react/prop-types": 2,
"react/react-in-jsx-scope": 2,
"react/self-closing-comp": 2,
"react/sort-comp": 2,
"react/wrap-multilines": 2
"semi": [2, "always"],
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "never"],
"space-in-parens": [2, "never"]
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
demo/dist
npm-debug.log
8 changes: 0 additions & 8 deletions CONTRIBUTING.md

This file was deleted.

Loading

0 comments on commit 57be0cd

Please sign in to comment.