realm-js/tests/js/.eslintrc.json
Scott Kyle 27073a9e66 Properly configure ESLint for syntax checking
Added a test case to run on CI as well.
2016-03-16 13:01:38 -07:00

22 lines
385 B
JSON

{
"env": {
"commonjs": true
},
"globals": {
"ArrayBuffer": false,
"DataView": false,
"Float32Array": false,
"Float64Array": false,
"Int16Array": false,
"Int32Array": false,
"Int8Array": false,
"Uint16Array": false,
"Uint32Array": false,
"Uint8Array": false,
"Uint8ClampedArray": false
},
"rules": {
"no-redeclare": 1
}
}