Added eslint

This commit is contained in:
CJ Patoilo
2016-11-22 19:30:05 -03:00
parent 013511b58e
commit 7ed897cd1d
6 changed files with 18 additions and 0 deletions

13
.eslintrc Normal file
View File

@@ -0,0 +1,13 @@
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"semi": 2,
"quotes": ["error", "single"]
}
}