Moved contents of seasoned_api up to root folder

This commit is contained in:
2022-08-19 01:03:27 +02:00
parent 0efc109992
commit 56262a45c8
134 changed files with 885 additions and 32 deletions

View File

@@ -1,14 +1,18 @@
{
"extends": [
"airbnb-base"
],
"rules": {
"indent": ["error", 3],
"prefer-destructuring": 0,
"camelcase": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"object-shorthand": 0,
"comma-dangle": 0
}
"root": true,
"parserOptions": {
// "parser": "@typescript-eslint/parser",
"sourceType": "module"
},
// "plugins": ["@typescript-eslint"],
"extends": [
"eslint-config-airbnb-base",
// "plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"no-underscore-dangle": "off",
"no-shadow": "off"
// "@typescript-eslint/no-shadow": ["error"]
}
}