add an eslint file

This commit is contained in:
David 2016-10-02 17:33:00 -04:00
parent c56869c4be
commit e2923be97e
1 changed files with 32 additions and 0 deletions

32
.eslintrc Normal file
View File

@ -0,0 +1,32 @@
{
"rules": {
"indent": [
2,
4
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"strict": [
2,
"never"
]
},
"env": {
"browser": true
},
"globals": {
"Sheetsee": true,
"Tabletop": true,
"$": true
}
}