This commit is contained in:
MMaker 2021-04-13 20:42:07 -04:00 committed by stysmmaker
commit fb927e5bcd
Signed by: mmaker
GPG key ID: CCE79B8FEDA40FB2
10 changed files with 5905 additions and 171 deletions

38
.eslintrc.json Normal file
View file

@ -0,0 +1,38 @@
{
"env": {
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "script"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"windows"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"@typescript-eslint/explicit-module-boundary-types": "off",
"brace-style": [2, "allman", { "allowSingleLine": true }]
},
"ignorePatterns": ["*.config.js", "*.jsx"] // how do you actually do this
}