Skip to content

Commit

Permalink
Showing 2 changed files with 20 additions and 3 deletions.
20 changes: 18 additions & 2 deletions boilerplates/lerna-workspace/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -16,8 +16,24 @@
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "simple-import-sort", "unused-imports"],
"plugins": [
"@typescript-eslint",
"simple-import-sort",
"unused-imports"
],
"rules": {
"indent": [
"error",
2
],
"quotes": [
"error",
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"simple-import-sort/imports": 1,
"simple-import-sort/exports": 1,
"unused-imports/no-unused-imports": 1,
@@ -36,4 +52,4 @@
"no-implicit-globals": 0,
"@typescript-eslint/no-unsafe-declaration-merging": 0
}
}
}
3 changes: 2 additions & 1 deletion boilerplates/lerna-workspace/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -2,5 +2,6 @@
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"useTabs": false,
"singleQuote": false
}
}

0 comments on commit 5fbe901

Please sign in to comment.