Skip to content

Commit

Permalink
chore: add eslint and some coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
josetaira committed Oct 13, 2017
1 parent 2154df7 commit e05c334
Show file tree
Hide file tree
Showing 5 changed files with 1,829 additions and 645 deletions.
30 changes: 30 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"env": {
"browser": true
},
"extends": "plugin:angular/johnpapa",
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"angular/file-name": [
0
],
"angular/controller-as": [
0
],
}
}
Loading

0 comments on commit e05c334

Please sign in to comment.