##// END OF EJS Templates
merge
merge

File last commit:

r0:7110eac54b19 v1.0.0 default
r3:e9671275b348 merge tip default
Show More
.eslintrc.json
26 lines | 628 B | application/json | JsonLexer
cin
initial port of implab/web
r0 {
"env": {
"browser": true,
"commonjs": true,
"amd": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"extends": "eslint:recommended",
"rules": {
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "error",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"constructor-super": "warn",
"valid-typeof": "warn",
"semi" : "warn",
"no-invalid-this" : "error",
"no-console": "off"
}
}