Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
27 changes: 24 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,37 @@
{
"extends": [
"@bigcommerce/eslint-config"
],
"extends": ["@bigcommerce/eslint-config"],
"parser": "@typescript-eslint/parser",
"root": true,
"plugins": ["@nrwl/nx"],
"env": {
"browser": true
},
"settings": {
"import/resolver": {
"typescript": {
"project": "./tsconfig.*?.json"
}
}
},
"parserOptions": {
"project": "./tsconfig.*?.json"
},
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {
"prettier/prettier": [
"error",
{
"tabWidth": 4
}
],
"no-restricted-syntax": [
"off",
{
"selector": "ForOfStatement"
}
],
"@nrwl/nx/enforce-module-boundaries": [
"error",
{
Expand Down
Loading