realm-js/.eslintrc
Scott Kyle d55d42da8d Add ESLint config for JS test files
This helps the editor catch simple syntax issues before finding out about them when running a test.
2015-10-21 15:20:44 -07:00

10 lines
148 B
Plaintext

{
"root": true,
"extends": "eslint:recommended",
"rules": {
"comma-dangle": 0,
"no-unused-vars": 1,
"strict": [2, "global"]
}
}