##// END OF EJS Templates
tests moved under src/ folder...
tests moved under src/ folder removed requirejs dependency from the main source set

File last commit:

r4:f88a0de08cfb default
r50:7a4fac383b10 di-typescript
Show More
.eslintrc.json
26 lines | 628 B | application/json | JsonLexer
cin
improved core/build.gradle script
r4 {
"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"
}
}