coders-school / site

Content, configuration and build action for Coders School website
https://coders.school
3 stars 22 forks source link

replit clang-format not working #139

Closed kprzygod closed 10 months ago

kprzygod commented 10 months ago

~/GrotesqueOutstandingValue$ clang-format -style=webkit -dump-config > .clang-format ~/GrotesqueOutstandingValue$ clang-format -style=file:.clang-format -i .cpp .hpp Invalid value for -style No such file or directory

lukasz-ziobron-more commented 10 months ago

You should use double dash -- before style and dump-config

~/GrotesqueOutstandingValue$ clang-format --style=webkit --dump-config > .clang-format
~/GrotesqueOutstandingValue$ clang-format --style=file -i *.cpp *.hpp
kprzygod commented 10 months ago

with -- all is working, you can add update to the text below the video