##// END OF EJS Templates
WIP lifetime, service descriptors
WIP lifetime, service descriptors

File last commit:

r5:83fa5814462d default
r14:3f8a82c8ce73 default
Show More
.eslintrc.json
33 lines | 919 B | application/json | JsonLexer
cin
initial commit
r0 {
cin
working on fluent configuration
r1 "root": true,
"extends": [
"plugin:react/recommended",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parser": "@typescript-eslint/parser",
cin
initial commit
r0 "parserOptions": {
"ecmaFeatures": {
"jsx": true
},
cin
working on fluent configuration
r1 "ecmaVersion": 5,
"tsconfigRootDir": "src",
"project": ["tsconfig.eslint.json", "*/tsconfig.json"]
cin
initial commit
r0 },
cin
working on fluent configuration
r1 "plugins": [
"@typescript-eslint"
],
cin
initial commit
r0 "rules": {
cin
working on fluent configuration
r1 "@typescript-eslint/no-empty-function": "off",
"max-classes-per-file": [
"error",
{ "ignoreExpressions": true, "max": 1 }
],
"@typescript-eslint/prefer-readonly": ["error"],
cin
Working on container builder
r5 "semi": "off",
cin
working on fluent configuration
r1 "@typescript-eslint/semi": ["error"]
cin
initial commit
r0 }
cin
working on fluent configuration
r1 }