:)
This commit is contained in:
parent
0164914750
commit
fb927e5bcd
10 changed files with 5905 additions and 171 deletions
38
.eslintrc.json
Normal file
38
.eslintrc.json
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue