chore: update .eslintrc.json to disable import/order rule and enable simple-import-sort rules

chore: update .prettierignore to include /out directory
docs: update LICENSE file to include link to author's GitHub profile
chore: update tsconfig.json to move resolveJsonModule above moduleResolution for consistency
This commit is contained in:
di-sukharev
2023-05-22 12:22:37 +08:00
parent 1a1134a010
commit 0b8dc12047
4 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -21,8 +21,8 @@
"rules": {
"prettier/prettier": "error",
"no-console": "error",
"sort-imports": "off",
"import/order": "off",
"sort-imports": "off",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"import/first": "error",