##// END OF EJS Templates
Added tag v1.3.0 for changeset 025f02eff3b2
Added tag v1.3.0 for changeset 025f02eff3b2

File last commit:

r4:f88a0de08cfb default
r83:a5aa5facc5d4 default
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"
}
}