2021-10-28 20:25:01 +00:00
|
|
|
{
|
|
|
|
"root": true,
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"plugins": [
|
|
|
|
"@typescript-eslint",
|
|
|
|
"no-loops"
|
|
|
|
],
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:@shopify/esnext"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"import/resolver": {
|
|
|
|
"node": {
|
|
|
|
"extensions": [
|
|
|
|
".ts",
|
|
|
|
".tsx"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"no-undef": 0,
|
|
|
|
"no-process-env": 0,
|
|
|
|
"no-unused-vars": 0,
|
|
|
|
"require-await": 0,
|
|
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
|
|
"id-length": 0,
|
|
|
|
"@typescript-eslint/explicit-module-boundary-types": 0,
|
|
|
|
"@typescript-eslint/no-var-requires": 0,
|
|
|
|
"no-console": 0,
|
|
|
|
"import/no-unresolved": 0,
|
2021-10-31 06:59:18 +00:00
|
|
|
"require-atomic-updates": 0,
|
|
|
|
"@shopify/prefer-early-return": 0,
|
2021-10-28 20:25:01 +00:00
|
|
|
" import/no-unresolved": 0
|
|
|
|
}
|
|
|
|
}
|