Skip to content

Commit

Permalink
Updated to the state of the base template
Browse files Browse the repository at this point in the history
  • Loading branch information
stylesuxx committed Sep 9, 2016
1 parent 7486dee commit 027ca83
Showing 1 changed file with 18 additions and 21 deletions.
39 changes: 18 additions & 21 deletions .eslintrc
@@ -1,29 +1,26 @@
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"parser": "babel-eslint",
"env": {
"browser": false,
"amd": false,
"es6": true,
"browser": true,
"node": true,
"mocha": true
},
"extends": "airbnb",
"rules": {
"comma-dangle": 1,
"quotes": [ 1, "single" ],
"no-undef": 1,
"global-strict": 0,
"no-extra-semi": 1,
"no-underscore-dangle": 0,
"no-console": 0,
"no-unused-vars": 1,
"no-trailing-spaces": [1, { "skipBlankLines": true }],
"no-unreachable": 1,
"no-alert": 0
"comma-dangle": 0,
"padded-blocks": 0,
"react/prefer-stateless-function": 0,
"no-underscore-dangle": [ "error", { "allowAfterThis": true }],
"import/no-unresolved": ["error", {
"ignore": [
"config",
"components/",
"stores/",
"actions/",
"sources/",
"styles/",
"images/"
]
}]
}
}

0 comments on commit 027ca83

Please sign in to comment.