Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: polymer_1.0.4/bower_components/hydrolysis/.editorconfig

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/bin/bash
2 #
3 # @license
4 # Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 1 # Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
5 # This code may only be used under the BSD style license found at http://polymer .github.io/LICENSE.txt 2 # This code may only be used under the BSD style license found at http://polymer .github.io/LICENSE.txt
6 # The complete set of authors may be found at http://polymer.github.io/AUTHORS.t xt 3 # The complete set of authors may be found at http://polymer.github.io/AUTHORS.t xt
7 # The complete set of contributors may be found at http://polymer.github.io/CONT RIBUTORS.txt 4 # The complete set of contributors may be found at http://polymer.github.io/CONT RIBUTORS.txt
8 # Code distributed by Google as part of the polymer project is also 5 # Code distributed by Google as part of the polymer project is also
9 # subject to an additional IP rights grant found at http://polymer.github.io/PAT ENTS.txt 6 # subject to an additional IP rights grant found at http://polymer.github.io/PAT ENTS.txt
10 #
11 7
12 # tags sorted semver style 8 # Polymer EditorConfig
13 TAGS=($(git tag -l | sort -k1,1r -k2,2r -k3,3r -t.))
14 9
15 TO=(${TAGS[@]}) 10 root = true
16 11
17 FROM=(${TAGS[@]:1}) 12 [*]
18 FROM+=(`git rev-list --max-parents=0 HEAD`) 13 charset = utf-8
14 indent_size = 2
15 indent_style = space
16 trim_trailing_whitespace = true
19 17
20 for i in ${!FROM[@]}; do 18 [*.md]
21 echo "### ${TO[$i]}" 19 trim_trailing_whitespace = false
22 git log ${FROM[$i]}..${TO[$i]} --pretty="- %s"
23 done
OLDNEW
« no previous file with comments | « polymer_1.0.4/bower_components/hydrolysis/.bower.json ('k') | polymer_1.0.4/bower_components/hydrolysis/.gitattributes » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698