-
Notifications
You must be signed in to change notification settings - Fork 281
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
Parentheses instead of brackets in ns declaration. #64
Comments
I think there's fairly good precedent for using vectors instead of lists for NS directive arguments. This is a tools problem and the formatting behavior should be fixed in clojure-mode (and the equivalent for other editors). |
What is the precedent? Do you just mean that it is most common? If so, I don't think that we should be talking about preserving the most common approach just yet. It's early days still, and we should be pushing for correctness first. I don't believe that this is a tools problem. |
I like approach with vectors since it clearly helps me to denote where are special forms of ns macro and where are arguments for those special forms. That's why we have [] for arguments declaration. For better readability.
As far as I can see it is the only argument to use such approach (and it is tooling issue, not language style issue). At the same time I bet you can teach emacs to understand and indent seqs as you want in ns macro in clojure code. Personally I never had any issues with indention in ns macro. It's not so hard to indent things manually. |
Most codebases and reasonably experienced folks use square brackets. |
I would argue that It might be possible to teach every editor to special-case this instance, but for what gain? You would be creating technical debt for everyone. I'm hoping that the eventual pylint/rubocop equivalent doesn't need to look for things like this. If we do believe that the first element is special, we should treat it as such ourselves. Apart from readability (which I would challenge), why do we use square brackets? |
By using |
That's interesting. Playing the counterpoint, would we be comfortable with: (ns examples.ns
[:refer-clojure :exclude [next replace remove]]
[:require [clojure [string :as string
:refer [capitalize]]
[set :as set]]]) I'm wondering if the community opinion is that it is desirable to use parentheses around the Should we be doing: (ns examples.ns
(:refer-clojure :exclude [next replace remove])
(:require [clojure [string :as string
:refer [capitalize]]
[set :as set]])) To drive my point further, consider: (ns examples.ns
(:refer-clojure :exclude [next replace remove])
(:require (clojure (string :as string
:refer [capitalize])
set))) We've already special cased out the single designation |
Square brackets describe data,
Special case for single form is to reduce amount of brackets (Clojure is better lisp, remember?). Thinking about innermost form as a form will increase amount of parenthesis, mix data with forms, and it doesn't sound like Clojure way to me. |
I disagree wholeheartedly on most accounts, but I've made my claims so no need to reiterate. That said, would you advocate for a change in style from |
@ToBeReplaced this issue is not something worth arguing about. Use what the majority of the codebases use. For the Continuing this conversation is a time waste. @bbatsov if I were you I'd close this issue. |
I actually just cloned few repos from github.com/clojure and I can't No offence, but I think that conversation is going nowhere already. Just Cheers, On Sat, 2013-08-17 at 08:03 -0700, ToBeReplaced wrote:
|
@Gonzih: I meant the current recommendation in the style guide. You are right, I have heard two arguments as counterpoints:
Now, I disagree with 1) entirely considering the popularity of Clojure -- it seems way too early to take on technical debt here (ex. require every tool, linter, etc. to adjust for "consistency", if it's even possible.). However, that's a fair place to disagree, so if the viewpoint is that we need to be backwards consistent with our style, fine. I seem to always be the idealist here. As for 2), the argument being presented suggests that a change needs to be made to the style guide. Either: (ns examples.ns
(:refer-clojure :exclude [next replace remove])
(:require [clojure [string :as string
:refer [capitalize]]
[set :as set]])) Or: (ns examples.ns
(:refer-clojure :exclude [next replace remove])
(:require [clojure.string :as string
:refer [capitalize]]
[clojure.set :as set]])) The most popular is actually the second option. Doing nothing is incorrect. Both @Gonzih and @michaelklishin have made arguments that recommend a change in the style guide. |
According to conversation in issue bbatsov#64 better to use [] in ns declaration after special forms (:require, :use) since it's data. I think same can be applied to :import and any other form in ns macro.
According to conversation in issue bbatsov#64 there is better to use [] in ns declaration after special forms (:require, :use) since it's clearly describes data. I think same can be applied to :import and any other form in ns macro. I think both forms (short and long) are ok to use in real code. Short form: ```Clojure (:require [clojure [string :refer :all] [xml :refer :all]]) ``` Long form: ```Clojure (:require [clojure.string :refer :all]] [clojure.xml :refer :all]]) ```
Just send pull request, guys please take a look and tell me what do you think. |
According to conversation in issue bbatsov#64 there is better to use [] in ns declaration after special forms (:require, :use) since it's clearly describes data. I think same can be applied to :import and any other form in ns macro. I think both forms (short and long) are ok to use in real code. Short form: ```Clojure (:require [clojure [string :refer :all] [xml :refer :all]]) ``` Long form: ```Clojure (:require [clojure.string :refer :all]] [clojure.xml :refer :all]]) ```
According to conversation in issue bbatsov#64 there is better to use [] in ns declaration after special forms (:require, :use) since it's clearly describes data. I think same can be applied to :import and any other form in ns macro.
Changes in example ns according to issue #64
I think it can be closed now. |
Originally posted in this issue.
I believe that we should use parentheses instead of brackets inside of namespace declarations. The first word of the inner form is special, and thus it should be a list, keeping consistent with the rest of clojure. An example is below; notice where we use both
:as
and:refer
in the same declaration.Notably, emacs will automatically indent this properly, which it will not do with a vector. One downside of this approach is that it does not work for namespaces without packages (rare). Another is that it is not compatible with clojurescript.
I have been using this approach for months and have found it agreeable.
The text was updated successfully, but these errors were encountered: