From e50306ad209b02e0e6c29dfdb4c5aa00b1a66baf Mon Sep 17 00:00:00 2001 From: 0xa663 <142121896+0xa663@users.noreply.github.com> Date: Thu, 15 Feb 2024 19:27:48 +0100 Subject: [PATCH] Add missing dot files --- .eslintrc.js | 41 +++++++++++++++++++++++++++++++++++++++++ .gitignore | 2 ++ 2 files changed, 43 insertions(+) create mode 100644 .eslintrc.js create mode 100644 .gitignore diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..93bc31e --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,41 @@ +/* eslint-disable */ +module.exports = { + "env": { + "browser": true, + "es2021": true + }, + "extends": [ + "eslint:recommended", + "plugin:react/recommended", + "plugin:@typescript-eslint/recommended" + ], + "overrides": [ + ], + "parser": "@typescript-eslint/parser", + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "plugins": [ + "react", + "@typescript-eslint" + ], + "rules": { + "@typescript-eslint/no-explicit-any": 0, + "@typescript-eslint/triple-slash-reference": 0, + "@typescript-eslint/no-non-null-asserted-optional-chain": 0, + semi: [ + 'warn', + 'always' + ], + quotes: [ + 'warn', + 'double', + { allowTemplateLiterals: true, avoidEscape: true }, + ], + '@typescript-eslint/no-unused-vars': [ + 'warn', + { argsIgnorePattern: '^_' } + ], + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9358575 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +builds +node_modules \ No newline at end of file