Skip to content

Commit

Permalink
Fixed spaces and double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
josellausas authored and cuttlefish committed May 26, 2018
1 parent 5d0fe77 commit 5209317
Show file tree
Hide file tree
Showing 25 changed files with 2,647 additions and 2,654 deletions.
39 changes: 39 additions & 0 deletions .eslintrc
@@ -0,0 +1,39 @@
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"env": {
"browser": true,
"node": true,
"jasmine": true,
"protractor": true,
"es6": true
},
"extends": [ "airbnb-base", "prettier" ],
"globals": {
"ol": true,
"storytools": true,
"angular": true,
"inject": true,
"toastr": true,
"goog": true
},
"plugins": [
"prettier"
],
"rules": {
"camelcase": ["error", { "properties": "always" }],
"indent": ["error", 2],
"no-bitwise": ["error", { "int32Hint": true }],
"no-param-reassign": ["error", { "props": true, "ignorePropertyModificationsFor": ["scope", "$scope"] }],
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"no-unused-vars": ["error", { "args": "none" }],
"prettier/prettier": "off",
"quotes": ["error", "double", { "allowTemplateLiterals": true, "avoidEscape": true }]
}
}
32 changes: 0 additions & 32 deletions mapstory/tests/.eslintrc.js

This file was deleted.

24 changes: 0 additions & 24 deletions mapstory/tests/e2e/.jshintrc

This file was deleted.

0 comments on commit 5209317

Please sign in to comment.