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