Skip to content

Commit

Permalink
chore: moved prettier settings from prettierrc to eslintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
atepem committed Oct 1, 2024
1 parent f939bf0 commit 6cf42fc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
14 changes: 13 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,19 @@
"prettier/prettier": ["error", {
"endOfLine": "auto",
"semi": true,
"singleQuote": true
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"importOrder": [
"<THIRD_PARTY_MODULES>",
"^@autonolas/(.*)$",
"^libs/*",
"^(store|util|common-util|components|data|hooks|context|types)/(.*)$",
"^[./]"
]
}]
},
"overrides": [
Expand Down
16 changes: 0 additions & 16 deletions .prettierrc

This file was deleted.

0 comments on commit 6cf42fc

Please sign in to comment.