diff --git a/server/tslint-to-eslint-config.log b/server/tslint-to-eslint-config.log deleted file mode 100644 index a16a3de..0000000 --- a/server/tslint-to-eslint-config.log +++ /dev/null @@ -1,24 +0,0 @@ -8 ESLint rules behave differently from their TSLint counterparts: - * @typescript-eslint/no-unused-expressions: - - The TSLint optional config "allow-new" is the default ESLint behavior and will no longer be ignored. - * @typescript-eslint/no-unused-vars: - - Please read the following article as the rule behaviour may change on the short term: https://github.com/typescript-eslint/typescript-eslint/issues/1856 - * arrow-body-style: - - ESLint will throw an error if the function body is multiline yet has a one-line return on it. - * no-invalid-this: - - Functions in methods will no longer be ignored. - * prefer-arrow/prefer-arrow-functions: - - ESLint does not support allowing standalone function declarations. - - ESLint does not support allowing named functions defined with the function keyword. - * space-before-function-paren: - - Option "constructor" is not supported by ESLint. - - Option "method" is not supported by ESLint. - * eqeqeq: - - Option "smart" allows for comparing two literal values, evaluating the value of typeof and null comparisons. - * no-underscore-dangle: - - Leading or trailing underscores (_) on identifiers will now be forbidden. - -2 rules are not known by tslint-to-eslint-config to have ESLint equivalents: - * tslint-to-eslint-config does not know the ESLint equivalent for TSLint's "import-spacing". - * tslint-to-eslint-config does not know the ESLint equivalent for TSLint's "strict-type-predicates". - diff --git a/server/tslint.json b/server/tslint.json deleted file mode 100644 index f8694b2..0000000 --- a/server/tslint.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "extends": "tslint:recommended", - "rules": { - "await-promise": true, - "no-floating-promises": true, - "ordered-imports": false, - "quotemark": [ - false - ], - "max-line-length": [ - false - ], - "no-consecutive-blank-lines": false, - "comment-format": [ - false - ], - "whitespace": [ - false, - "check-separator" - ], - "no-trailing-whitespace": [ - true, - "ignore-blank-lines", - "ignore-comments" - ], - "no-bitwise": false, - "array-type": false, - "no-unused-expression": true, - "trailing-comma": false, - "max-classes-per-file": false, - "promise-function-async": true, - "strict-boolean-expressions": true, - "object-literal-sort-keys": false, - "no-unnecessary-type-assertion": true, - "strict-type-predicates": true, - "no-unused-variable": true, - "deprecation": true - } -} \ No newline at end of file