diff options
author | crupest <crupest@outlook.com> | 2023-07-09 01:48:34 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-07-09 01:48:34 +0800 |
commit | 4363f625025edeb19fb480a00e2e3b460c6091a9 (patch) | |
tree | 74dbe903cca751d575520a9c04a5971d0871d6bf /FrontEnd/.eslintrc.cjs | |
parent | 4cb87464fea217e1d0969747d6a17e88973982e7 (diff) | |
download | timeline-4363f625025edeb19fb480a00e2e3b460c6091a9.tar.gz timeline-4363f625025edeb19fb480a00e2e3b460c6091a9.tar.bz2 timeline-4363f625025edeb19fb480a00e2e3b460c6091a9.zip |
Remove service worker.
Diffstat (limited to 'FrontEnd/.eslintrc.cjs')
-rw-r--r-- | FrontEnd/.eslintrc.cjs | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/FrontEnd/.eslintrc.cjs b/FrontEnd/.eslintrc.cjs deleted file mode 100644 index 62490975..00000000 --- a/FrontEnd/.eslintrc.cjs +++ /dev/null @@ -1,39 +0,0 @@ -module.exports = {
- root: true,
- env: {
- browser: true,
- es2022: true,
- },
- extends: [
- "eslint:recommended",
- "plugin:react/recommended",
- "plugin:@typescript-eslint/eslint-recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:@typescript-eslint/recommended-requiring-type-checking",
- "plugin:prettier/recommended",
- "plugin:react-hooks/recommended",
- ],
- parser: "@typescript-eslint/parser",
- parserOptions: {
- tsconfigRootDir: __dirname,
- project: ["./tsconfig.json"],
- },
- plugins: ["react", "@typescript-eslint", "react-hooks"],
- settings: {
- react: {
- version: "detect",
- },
- },
- rules: {
- "react/prop-types": "off",
- "@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
- "@typescript-eslint/explicit-function-return-type": [
- "warn",
- {
- allowExpressions: true,
- allowTypedFunctionExpressions: true,
- allowHigherOrderFunctions: true,
- },
- ],
- },
-};
|