mirror of https://github.com/Squidex/squidex.git
committed by
GitHub
55 changed files with 2455 additions and 5999 deletions
File diff suppressed because it is too large
@ -0,0 +1,19 @@ |
|||
diff --git a/node_modules/resize-observer-polyfill/src/index.d.ts b/node_modules/resize-observer-polyfill/src/index.d.ts
|
|||
index 74aacc0..1b236d2 100644
|
|||
--- a/node_modules/resize-observer-polyfill/src/index.d.ts
|
|||
+++ b/node_modules/resize-observer-polyfill/src/index.d.ts
|
|||
@@ -1,14 +1,3 @@
|
|||
-interface DOMRectReadOnly {
|
|||
- readonly x: number;
|
|||
- readonly y: number;
|
|||
- readonly width: number;
|
|||
- readonly height: number;
|
|||
- readonly top: number;
|
|||
- readonly right: number;
|
|||
- readonly bottom: number;
|
|||
- readonly left: number;
|
|||
-}
|
|||
-
|
|||
declare global { |
|||
interface ResizeObserverCallback { |
|||
(entries: ResizeObserverEntry[], observer: ResizeObserver): void |
|||
@ -1,5 +1,5 @@ |
|||
module.exports = { |
|||
plugins: { |
|||
'postcss-preset-env': {} |
|||
} |
|||
} |
|||
'postcss-preset-env': {}, |
|||
}, |
|||
}; |
|||
|
|||
@ -1,151 +0,0 @@ |
|||
{ |
|||
"extends": ["tslint-immutable"], |
|||
"rulesDirectory": [ |
|||
"node_modules/codelyzer", |
|||
"node_modules/rxjs-tslint" |
|||
], |
|||
"rules": { |
|||
"angular-whitespace": false, |
|||
"arrow-return-shorthand": true, |
|||
"class-name": true, |
|||
"comment-format": [ |
|||
true, |
|||
"check-space" |
|||
], |
|||
"component-class-suffix": true, |
|||
"component-selector": [ |
|||
true, |
|||
"element", |
|||
"sqx", |
|||
"kebab-case" |
|||
], |
|||
"curly": true, |
|||
"directive-class-suffix": true, |
|||
"directive-selector": [ |
|||
true, |
|||
"attribute", |
|||
"sqx", |
|||
"camelCase" |
|||
], |
|||
"eofline": false, |
|||
"forin": true, |
|||
"indent": [ |
|||
true, |
|||
"spaces" |
|||
], |
|||
"label-position": true, |
|||
"max-line-length": [ |
|||
true, |
|||
240 |
|||
], |
|||
"member-access": [ |
|||
true, |
|||
"check-accessor" |
|||
], |
|||
"no-access-missing-member": false, |
|||
"no-arg": true, |
|||
"no-bitwise": true, |
|||
"no-consecutive-blank-lines": true, |
|||
"no-console": [ |
|||
true, |
|||
"debug", |
|||
"info", |
|||
"time", |
|||
"timeEnd", |
|||
"trace" |
|||
], |
|||
"no-construct": true, |
|||
"no-debugger": true, |
|||
"no-duplicate-variable": true, |
|||
"no-empty": true, |
|||
"no-eval": true, |
|||
"no-forward-ref": false, |
|||
"no-inferrable-types": [ |
|||
true, |
|||
"ignore-params" |
|||
], |
|||
"no-input-rename": false, |
|||
"no-output-rename": false, |
|||
"no-pipe-impure": true, |
|||
"no-shadowed-variable": true, |
|||
"no-string-literal": false, |
|||
"no-switch-case-fall-through": true, |
|||
"no-trailing-whitespace": true, |
|||
"no-unnecessary-callback-wrapper": true, |
|||
"no-unused-expression": true, |
|||
"no-use-before-declare": false, |
|||
"no-var-keyword": true, |
|||
"object-literal-shorthand": true, |
|||
"object-literal-sort-keys": false, |
|||
"one-line": [ |
|||
true, |
|||
"check-open-brace", |
|||
"check-catch", |
|||
"check-else", |
|||
"check-whitespace" |
|||
], |
|||
"only-arrow-functions": [ |
|||
true, |
|||
"allow-declarations" |
|||
], |
|||
"ordered-imports": [ |
|||
true |
|||
], |
|||
"pipe-prefix": [ |
|||
true, |
|||
"sqx" |
|||
], |
|||
"prefer-const": true, |
|||
"prefer-for-of": true, |
|||
"prefer-template": true, |
|||
"quotemark": [ |
|||
true, |
|||
"single" |
|||
], |
|||
"radix": true, |
|||
"readonly-array": [ |
|||
true, |
|||
"ignore-local" |
|||
], |
|||
"rxjs-collapse-imports": true, |
|||
"rxjs-proper-imports": true, |
|||
"semicolon": [ |
|||
true, |
|||
"always" |
|||
], |
|||
"template-no-negated-async": true, |
|||
"template-use-track-by-function": false, |
|||
"trailing-comma": [ |
|||
true, |
|||
{ |
|||
"multiline": "never", |
|||
"singleline": "never" |
|||
} |
|||
], |
|||
"triple-equals": [ |
|||
true, |
|||
"allow-null-check" |
|||
], |
|||
"typedef-whitespace": [ |
|||
true, |
|||
{ |
|||
"call-signature": "nospace", |
|||
"index-signature": "nospace", |
|||
"parameter": "nospace", |
|||
"property-declaration": "nospace", |
|||
"variable-declaration": "nospace" |
|||
} |
|||
], |
|||
"use-life-cycle-interface": true, |
|||
"use-pipe-transform-interface": true, |
|||
"variable-name": false, |
|||
"whitespace": [ |
|||
true, |
|||
"check-branch", |
|||
"check-decl", |
|||
"check-operator", |
|||
"check-separator", |
|||
"check-type" |
|||
] |
|||
} |
|||
} |
|||
Loading…
Reference in new issue