From 2ef8b809020cf65bf7e9f20a1211a153b0e7cef7 Mon Sep 17 00:00:00 2001 From: Snider Date: Sun, 23 Jan 2022 18:53:10 +0000 Subject: [PATCH] Delete .eslintrc.js --- .eslintrc.js | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .eslintrc.js diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 339cfb0..0000000 --- a/.eslintrc.js +++ /dev/null @@ -1,31 +0,0 @@ -module.exports = { - root: true, // if you want to prevent ESLint from searching for the configuration file all the way up to the root directory of the filesystem - env: { - browser: true, // for ESLint to be aware of browser global variables - node: true, // for ESLint to be aware of Node.js global variables and scoping - es6: true, // for ESLint to be aware of ES6 global variables (this automatically enables ES6 syntax) - }, - parser: '@typescript-eslint/parser', // TypeScript (if not Vue) - parserOptions: { - parser: '@typescript-eslint/parser', // Vue + TypeScript - ecmaFeatures: { - jsx: true, // React, React Native - }, - sourceType: 'module', // if you're using ECMAScript modules - }, - extends: [ - 'eslint:recommended', // always (set of rules recommended by ESLint team) - 'plugin:@typescript-eslint/recommended' - ], - rules: { - "@typescript-eslint/no-explicit-any": ["error", { "fixToUnknown": false, "ignoreRestArgs": true }] - }, - plugins: [ - '@typescript-eslint', // TypeScript - ], - settings: { - react: { - version: 'detect', // React - } - } -}; \ No newline at end of file