Skip to content
This repository has been archived by the owner on Apr 28, 2020. It is now read-only.

Commit

Permalink
Remove final newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowled committed Oct 25, 2016
1 parent aec149d commit 5a4e734
Show file tree
Hide file tree
Showing 69 changed files with 69 additions and 69 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
insert_final_newline = false
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ src/*.html
src/img/sprite.svg
src/sitemap.xml
src/scripts/master.*
src/styles/
src/styles/
2 changes: 1 addition & 1 deletion .htmlhintrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"id-class-ad-disabled": true,
"href-abs-or-rel": false,
"attr-unsafe-chars": true
}
}
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"browser": true,
"jquery": true,
"node": true
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ You'll need [node.js](http://nodejs.org) and [Grunt](http://gruntjs.com). Clone

## License

Please note that this project includes components that all have their own licenses which may differ from the license of this project. Everything that was developed specifically for this project is under [MIT license](https://github.com/yellowled/yl-bp/blob/master/LICENSE.md).
Please note that this project includes components that all have their own licenses which may differ from the license of this project. Everything that was developed specifically for this project is under [MIT license](https://github.com/yellowled/yl-bp/blob/master/LICENSE.md).
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@ module.exports = {
uglify: {
dest: 'dist/scripts/master.js'
}
};
};
2 changes: 1 addition & 1 deletion docs/basic-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ See [JS structure](javascript.md)

## Misc

To avoid CSS hacks, [conditional classes](http://www.paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/) are available (optionally); also, [Modernizr](http://modernizr.com) is included for feature detection. A customized build of Modernizr will be created by the build script.
To avoid CSS hacks, [conditional classes](http://www.paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/) are available (optionally); also, [Modernizr](http://modernizr.com) is included for feature detection. A customized build of Modernizr will be created by the build script.
2 changes: 1 addition & 1 deletion docs/grunt.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ Note that due to the way that paths are specified in the HTML templates, a build
* [cssnano](https://www.npmjs.com/package/cssnano)
* [pixrem](https://www.npmjs.com/package/pixrem)
* [postcss-reporter](https://www.npmjs.com/package/postcss-reporter)
* [postcss-scss](https://www.npmjs.com/package/postcss-scss)
* [postcss-scss](https://www.npmjs.com/package/postcss-scss)
2 changes: 1 addition & 1 deletion docs/javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ Most of the JS assets are concatenated into a single file (`src/scripts/master.j
* [lazysizes](https://github.com/aFarkas/lazysizes)
* [respimage](https://github.com/aFarkas/respimage)
* [Responsive Nav](https://github.com/viljamis/responsive-nav.js)
* [svg4everybody](https://github.com/jonathantneal/svg4everybody)
* [svg4everybody](https://github.com/jonathantneal/svg4everybody)
2 changes: 1 addition & 1 deletion docs/scss-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ The only SCSS partials you might want to exclude if you don't use it (by comment

## Settings

All other SCSS any given project might not require is either encapsulated in mixins or placeholder selectors or can be excluded in `src/scss/project/_settings.scss` by setting boolean variables accordingly.
All other SCSS any given project might not require is either encapsulated in mixins or placeholder selectors or can be excluded in `src/scss/project/_settings.scss` by setting boolean variables accordingly.
2 changes: 1 addition & 1 deletion docs/scss.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ All partials in `mixins/_mixins.scss` and `base/_base.scss` should *always* be i

## `modules`

This is the part of the SCSS where “actual work is done”, meaning it's where SCSS is actually being written using a modular approach. Apart from `modules/_global.scss` which is really just a placeholder, partials for every project-specific module are supposed to be created and included here.
This is the part of the SCSS where “actual work is done”, meaning it's where SCSS is actually being written using a modular approach. Apart from `modules/_global.scss` which is really just a placeholder, partials for every project-specific module are supposed to be created and included here.
2 changes: 1 addition & 1 deletion docs/setting-up.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ In the project directory:

## Removing stuff

If a project doesn't require some of the [JS assets](javascript.md), comment them out in the `concat` section of `config.js` before running `grunt`. Optionally, also remove them from `package.json` before install.
If a project doesn't require some of the [JS assets](javascript.md), comment them out in the `concat` section of `config.js` before running `grunt`. Optionally, also remove them from `package.json` before install.
2 changes: 1 addition & 1 deletion grunt/bs-init.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ module.exports = function(grunt) {
done();
});
});
};
};
2 changes: 1 addition & 1 deletion grunt/bs-inject-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ module.exports = function(grunt) {
grunt.registerTask('bs-inject-css', function () {
browserSync.reload(['src/styles/master.css']);
});
};
};
2 changes: 1 addition & 1 deletion grunt/bs-inject-js.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ module.exports = function(grunt) {
grunt.registerTask('bs-inject-js', function () {
browserSync.reload(['src/scripts/master.js']);
});
};
};
2 changes: 1 addition & 1 deletion grunt/cache-bust.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ module.exports = function(grunt) {
}]
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/contrib-clean.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ module.exports = function(grunt) {
deploy: config.clean.deploy,
srcdir: config.clean.srcdir
});
};
};
2 changes: 1 addition & 1 deletion grunt/contrib-compress.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ module.exports = function(grunt) {
}]
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/contrib-concat.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ module.exports = function(grunt) {
dest: config.concat.dest
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/contrib-copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ module.exports = function(grunt) {
}]
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/contrib-imagemin.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ module.exports = function(grunt) {
}]
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/contrib-jshint.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ module.exports = function(grunt) {
},
all: config.jshint.srcfiles
});
};
};
2 changes: 1 addition & 1 deletion grunt/contrib-uglify.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ module.exports = function(grunt) {
dest: config.uglify.dest
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/contrib-watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ module.exports = function(grunt) {
tasks: ['concat', 'bs-inject-js'],
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/htmlhint.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ module.exports = function(grunt) {
src: ['src/*.html']
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ module.exports = function(grunt) {
'postcss:dev',
'concat'
]);
};
};
2 changes: 1 addition & 1 deletion grunt/modernizr.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ module.exports = function(grunt) {
]
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/postcss.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ module.exports = function(grunt) {
}]
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/processhtml.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ module.exports = function(grunt) {
}]
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/sass.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ module.exports = function(grunt) {
}]
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/sitemap.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ module.exports = function(grunt) {
changefreq: config.sitemap.changes
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/svgmin.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ module.exports = function(grunt) {
}]
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/svgstore.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ module.exports = function(grunt) {
}
}
});
};
};
2 changes: 1 addition & 1 deletion grunt/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ module.exports = function(grunt) {
'jshint',
'postcss:lint'
]);
};
};
2 changes: 1 addition & 1 deletion gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ module.exports = function(grunt) {
'sitemap',
'compress'
]);
};
};
2 changes: 1 addition & 1 deletion src/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -981,4 +981,4 @@ FileETag None
# RewriteEngine On
# RewriteCond %{REQUEST_FILENAME} !-f
# RewriteRule ^(.+)\.(\d+)\.(bmp|css|cur|gif|ico|jpe?g|js|png|svgz?|webp|webmanifest)$ $1.$3 [L]
# </IfModule>
# </IfModule>
2 changes: 1 addition & 1 deletion src/includes/doctype.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<!DOCTYPE html>
<html class="no-js" lang="de">
<html class="no-js" lang="de">
2 changes: 1 addition & 1 deletion src/includes/head.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="dns-prefetch" href="https://code.jquery.com">
<link rel="stylesheet" href="styles/master.css">
<script src="scripts/modernizr/modernizr.js"></script>
<script src="scripts/modernizr/modernizr.js"></script>
2 changes: 1 addition & 1 deletion src/includes/jmsg.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<p class="enable-js">Um diese Website in vollem Funktionsumfang anzuzeigen wird JavaScript benötigt. <a href="http://www.enable-javascript.com/de/">Wie Sie JavaScript in Ihrem Browser einschalten</a>.</p>
<p class="enable-js">Um diese Website in vollem Funktionsumfang anzuzeigen wird JavaScript benötigt. <a href="http://www.enable-javascript.com/de/">Wie Sie JavaScript in Ihrem Browser einschalten</a>.</p>
2 changes: 1 addition & 1 deletion src/includes/legacy/doctype.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="de"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="de"> <!--<![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="de"> <!--<![endif]-->
2 changes: 1 addition & 1 deletion src/includes/legacy/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
<script src="scripts/modernizr/modernizr.js"></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<![endif]-->
2 changes: 1 addition & 1 deletion src/includes/legacy/scripts.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>window.jQuery || document.write('<script src="scripts/jquery/dist/jquery.min.js"><\/script>')</script>
<script src="scripts/master.js"></script>
<script src="scripts/master.js"></script>
2 changes: 1 addition & 1 deletion src/includes/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
<li><a href="index.html">Start</a></li>
</ul>
</div>
</nav>
</nav>
2 changes: 1 addition & 1 deletion src/includes/scripts.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script>window.jQuery || document.write('<script src="scripts/jquery/dist/jquery.min.js"><\/script>')</script>
<script src="scripts/master.js"></script>
<script src="scripts/master.js"></script>
2 changes: 1 addition & 1 deletion src/robots.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# robotstxt.org/

User-agent: *
User-agent: *
2 changes: 1 addition & 1 deletion src/scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ $(function() {
customToggle: "#open-nav",
closeOnNavClick: true,
});
});
});
2 changes: 1 addition & 1 deletion src/scss/base/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
@import 'images';
@import 'messages';
@import 'navigation';
@import 'print';
@import 'print';
2 changes: 1 addition & 1 deletion src/scss/base/_constants.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ $black: #111;
$off-white: #fcfcfc;
$lite-grey: #eee;
$greyed-out: #888;
$off-black: #222;
$off-black: #222;
2 changes: 1 addition & 1 deletion src/scss/base/_defaults.scss
Original file line number Diff line number Diff line change
Expand Up @@ -204,4 +204,4 @@ img {
.no-js {
padding-top: 32px;
}
}
}
2 changes: 1 addition & 1 deletion src/scss/base/_images.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ $svg-icon-dims: 1.5rem !default;
height: $svg-icon-dims;
width: $svg-icon-dims;
}
}
}
2 changes: 1 addition & 1 deletion src/scss/base/_messages.scss
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ $msg-class-question: question !default;
border-color: $question-bc;
color: $question-fg;
}
}
}
2 changes: 1 addition & 1 deletion src/scss/base/_navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ nav ol {
visibility: hidden;
}
}
}
}
2 changes: 1 addition & 1 deletion src/scss/base/_print.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ $print-color: #000 !default;
h3 {
page-break-after: avoid;
}
}
}
2 changes: 1 addition & 1 deletion src/scss/master.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
@import '../../node_modules/slick-carousel/slick/slick.scss';

// Modules
@import 'modules/global';
@import 'modules/global';
2 changes: 1 addition & 1 deletion src/scss/mixins/_accordion.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@
visibility $panel-fade-time;
}
}
}
}
2 changes: 1 addition & 1 deletion src/scss/mixins/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@ $button-padding: .1875rem .625rem !default;
box-shadow: none;
z-index: auto;
}
}
}
2 changes: 1 addition & 1 deletion src/scss/mixins/_embed.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
top: 0;
width: 100%;
}
}
}
2 changes: 1 addition & 1 deletion src/scss/mixins/_figure.scss
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,4 @@
}
}
}
}
}
Loading

0 comments on commit 5a4e734

Please sign in to comment.