Skip to content

Commit

Permalink
feat: add .prettierrc.{cjs,js,mjs} (#495)
Browse files Browse the repository at this point in the history
* feat: add .prettierrc.mjs

* feat: add .prettierrc.js

* feat: add .prettierrc.cjs
  • Loading branch information
ttytm authored Sep 12, 2024
1 parent 9793801 commit 9154484
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lua/nvim-web-devicons/icons-default.lua
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,18 @@ local icons_by_filename = {
cterm_color = "33",
name = "PrettierConfig",
},
[".prettierrc.cjs"] = {
icon = "",
color = "#4285F4",
cterm_color = "33",
name = "PrettierConfig",
},
[".prettierrc.js"] = {
icon = "",
color = "#4285F4",
cterm_color = "33",
name = "PrettierConfig",
},
[".prettierrc.json"] = {
icon = "",
color = "#4285F4",
Expand All @@ -161,6 +173,12 @@ local icons_by_filename = {
cterm_color = "33",
name = "PrettierConfig",
},
[".prettierrc.mjs"] = {
icon = "",
color = "#4285F4",
cterm_color = "33",
name = "PrettierConfig",
},
[".prettierrc.toml"] = {
icon = "",
color = "#4285F4",
Expand Down
18 changes: 18 additions & 0 deletions lua/nvim-web-devicons/icons-light.lua
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,18 @@ local icons_by_filename = {
cterm_color = "25",
name = "PrettierConfig",
},
[".prettierrc.cjs"] = {
icon = "",
color = "#3264b7",
cterm_color = "25",
name = "PrettierConfig",
},
[".prettierrc.js"] = {
icon = "",
color = "#3264b7",
cterm_color = "25",
name = "PrettierConfig",
},
[".prettierrc.json"] = {
icon = "",
color = "#3264b7",
Expand All @@ -161,6 +173,12 @@ local icons_by_filename = {
cterm_color = "25",
name = "PrettierConfig",
},
[".prettierrc.mjs"] = {
icon = "",
color = "#3264b7",
cterm_color = "25",
name = "PrettierConfig",
},
[".prettierrc.toml"] = {
icon = "",
color = "#3264b7",
Expand Down

0 comments on commit 9154484

Please sign in to comment.