From 56754da8a39d4c0e2ede13bc9f55c315b3648850 Mon Sep 17 00:00:00 2001 From: Ari Gunawan Date: Sat, 10 Jul 2021 07:20:07 +0700 Subject: [PATCH] Remove unused tslint --- .../react-facebook-plugin/config/tslint.json | 45 ------------------- 1 file changed, 45 deletions(-) delete mode 100644 samples/react-facebook-plugin/config/tslint.json diff --git a/samples/react-facebook-plugin/config/tslint.json b/samples/react-facebook-plugin/config/tslint.json deleted file mode 100644 index b17194770..000000000 --- a/samples/react-facebook-plugin/config/tslint.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/core-build/tslint.schema.json", - // Display errors as warnings - "displayAsWarning": true, - // The TSLint task may have been configured with several custom lint rules - // before this config file is read (for example lint rules from the tslint-microsoft-contrib - // project). If true, this flag will deactivate any of these rules. - "removeExistingRules": true, - // When true, the TSLint task is configured with some default TSLint "rules.": - "useDefaultConfigAsBase": false, - // Since removeExistingRules=true and useDefaultConfigAsBase=false, there will be no lint rules - // which are active, other than the list of rules below. - "lintConfig": { - // Opt-in to Lint rules which help to eliminate bugs in JavaScript - "rules": { - "class-name": false, - "export-name": false, - "forin": false, - "label-position": false, - "member-access": true, - "no-arg": false, - "no-console": false, - "no-construct": false, - "no-duplicate-case": true, - "no-duplicate-variable": true, - "no-eval": false, - "no-function-expression": true, - "no-internal-module": true, - "no-shadowed-variable": true, - "no-switch-case-fall-through": true, - "no-unnecessary-semicolons": true, - "no-unused-expression": true, - "no-use-before-declare": true, - "no-with-statement": true, - "semicolon": true, - "trailing-comma": false, - "typedef": false, - "typedef-whitespace": false, - "use-named-parameter": true, - "valid-typeof": true, - "variable-name": false, - "whitespace": false - } - } -} \ No newline at end of file