Skip to content

Commit 0b8dc12

Browse files
committed
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
1 parent 1a1134a commit 0b8dc12

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"rules": {
2222
"prettier/prettier": "error",
2323
"no-console": "error",
24-
"sort-imports": "off",
2524
"import/order": "off",
25+
"sort-imports": "off",
2626
"simple-import-sort/imports": "error",
2727
"simple-import-sort/exports": "error",
2828
"import/first": "error",

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/build
2-
/dist
2+
/dist
3+
/out

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) Dima Sukharev
3+
Copyright (c) Dima Sukharev, https://github.com/di-sukharev
44

55
Permission is hereby granted, free of charge, to any person obtaining a
66
copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
"module": "ESNext",
77
// "rootDir": "./src",
8-
"moduleResolution": "node",
98
"resolveJsonModule": true,
9+
"moduleResolution": "node",
1010

1111
"allowJs": true,
1212

0 commit comments

Comments
 (0)