diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..70340a6 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,11 @@ +{ + "root": true, + "parser": "@typescript-eslint/parser", + "plugins": [ + "@typescript-eslint" + ], + "extends": [ + "eslint:recommended", + "plugin:@typescript-eslint/recommended" + ] +} \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..3c7d947 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,9 @@ +{ + "$schema":"http://json.schemastore.org/prettierrc", + + "trailingComma": "es5", + "tabWidth": 2, + "useTabs": false, + "semi": false, + "singleQuote": true +} \ No newline at end of file