Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
buunguyen committed Oct 16, 2018
1 parent 9984ab7 commit a7f1d10
Show file tree
Hide file tree
Showing 15 changed files with 742 additions and 706 deletions.
20 changes: 13 additions & 7 deletions .eslintrc
Expand Up @@ -11,13 +11,19 @@
"rules": {
"semi": "off",
"quotes": ["error", "single"],
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
"eqeqeq": ["error", "always", { "null": "ignore" }],
"brace-style": ["error", "1tbs", {"allowSingleLine": true}],
"eqeqeq": ["error", "always", {"null": "ignore"}],
"arrow-parens": ["error", "always"],
"max-len": [2, {
code: 120,
tabWidth: 2,
ignoreUrls: true,
}],
"max-len": [
2,
{
"code": 120,
"tabWidth": 2,
"ignoreUrls": true
}
],
"object-curly-spacing": ["error", "never"],
"array-bracket-spacing": ["error", "never"],
"capitalized-comments": ["error"]
}
}

0 comments on commit a7f1d10

Please sign in to comment.