Added actor interpolation.

This commit is contained in:
2024-10-22 02:09:18 +02:00
parent 351bd046ba
commit 5085d24b70
7 changed files with 8782 additions and 2 deletions

32
.eslintrc Executable file
View File

@@ -0,0 +1,32 @@
{
"root": true,
"extends": [
"airbnb-base"
],
"parserOptions": {
"parser": "@babel/eslint-parser",
"ecmaVersion": 2022,
"sourceType": "module"
},
"rules": {
"default-param-last": 0,
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"import/prefer-default-export": 0,
"no-underscore-dangle": 0,
"import/extensions": [2, "always"],
"indent": ["error", "tab"],
"max-len": 0,
"no-console": 0,
"no-param-reassign": ["error", {
"props": true,
"ignorePropertyModificationsFor": ["state", "acc"]
}],
"no-tabs": "off",
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
"prefer-destructuring": 0,
"template-curly-spacing": "off",
},
"globals": {
"CONFIG": true
}
}