You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
873 B
Plaintext

{
"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,
"require-atomic-updates": 0,
"@shopify/prefer-early-return": 0,
" import/no-unresolved": 0
}
}