-
Notifications
You must be signed in to change notification settings - Fork 463
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial clang-format auto cleanup #2324
base: master
Are you sure you want to change the base?
Conversation
Considering this is causing compilation failures, it's clear this isn't a simple noop like a JS linter would be. I have very mixed feelings, I'm all for some kind of new formatting, but I've been burnt over and over again by these massive commits. |
I'd rather incrementally formatting files as we touch them rather than a big bang commit. My suggestion would be to commit the configuration, and for us to configure our editors to apply the formatting as we work. |
Yeah, this was more to discuss the settings, then it can be layered in. I'll go back and see about the include re-ordering since i think that might be a chunk of the failures |
559ee8b
to
a3fc4e5
Compare
Yup, turning off the |
This is great! I actually started prototyping it that day and so far achieved https://gist.github.com/am11/39a65404651f310966d646932c623dd6. I was using Two things that I found are:
I like your approach @nschonni to obtain latest, greatest |
Off topic. @am11 you might be interested in this if you haven't seen it
https://github.com/medialize/sass.js/
…On 9 Feb. 2017 6:32 am, "Adeel Mujahid" ***@***.***> wrote:
This is great! I actually started prototyping it that day and so far
achieved https://gist.github.com/am11/39a65404651f310966d646932c623dd6. I
was using clang-format which comes packed with Emscripten (installed few
weeks ago; was experimenting WebAssembly version of node-sass with binaryen
wasm-sass .. which is at least theoretically very possible goal to
achieve 😜).
Two things that I found are:
- The latest version of clang-format (which usually is not available
on many Unices OOTB) has most features / options, so the help from
google/stackoverflow is bit challenging as we need to concentrate on which
version the OP is using
- It is hard to deduce the LibSass code formatting style, as in some
places, we have custom styles .. which is tricky (if not impossible) to
configure in clang-format
I like your approach @nschonni <https://github.com/nschonni> to obtain
latest, greatest clang-format via npm pipeline. 👍
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#2324 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAjZWOWJUV4P__k5CyPa-f0mg8NrRmM9ks5rahhegaJpZM4L6cRg>
.
|
The travis failure looks like it's just a timeout, but I can't reset it. |
The other option is to adopt on of the company cofigs ( |
@xzyfer, hool! 😻 I will focus on something else then 😜 @nschonni, my effort was barely a start of beginning; I was trying to adjust the options so it matches majority of our existing codebase style. I started with ast.cpp, but some styles are challenging to keep, like: if ((has_ns_ == r.has_ns_) ||
(has_ns_ && ns_.empty()) ||
(r.has_ns_ && r.ns_.empty())
) {
if (ns_.empty() && r.ns() == "*") return false;
else if (r.ns().empty() && ns() == "*") return false;
else return ns() == r.ns();
} With couple of tweaks, the multiline if-condition was getting flattened and single line if-statement was getting braces but couldn't keep the ditto styles. Wonder if it is possible for such linters+autoformatters to provide "auto-detect style" feature as well (based on the majority of style in code)? Analyze style and emit |
AlignEscapedNewlinesLeft: true | ||
AlignTrailingComments: false | ||
AllowAllParametersOfDeclarationOnNextLine: false | ||
AllowShortFunctionsOnASingleLine: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Think this should be Empty
to remove the splitting of {}
Just my 2 cents: I'm not a fan of autmated code formatting. IMO humans can format code better than machines to point out the relevant bits. None the less I agree that we should stick to a certain code style, but I personally don't believe it should be too strict. I personally like to work with smart tabs and linux kernel styles in general, but I sometimes also vary this if it makes sense in the given context (ie. putting a block opener on a new line if that block carries important lexical variables). |
Not really tuned, just opening for discussion. Just
brew install clang-format
and thenls **/*.cpp | xargs clang-format -i -style=file
with the changes to the config to test stuff out.Used the main defaults from https://clangformat.com/ with a few minor changes to indenting and spacing to minimize some of the diff.
The second part of this should be to add the CI component from https://github.com/citra-emu/citra/blob/6e5e5be/.travis-build.sh that @am11 pointed out