mirror of
https://github.com/LightAir/turbo-rss.git
synced 2026-02-04 12:06:20 +00:00
cleaning repo
This commit is contained in:
@@ -1,16 +0,0 @@
|
|||||||
# Get the plugin for your editor and your
|
|
||||||
# tab settings will be set automatically.
|
|
||||||
# http://EditorConfig.org
|
|
||||||
|
|
||||||
# top-most EditorConfig file
|
|
||||||
root = true
|
|
||||||
|
|
||||||
# Unix-style newlines with no newline ending every file
|
|
||||||
[*]
|
|
||||||
end_of_line = lf
|
|
||||||
insert_final_newline = false
|
|
||||||
|
|
||||||
# Indentation override for all JS under lib directory
|
|
||||||
[*.js]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
51
Gruntfile.js
51
Gruntfile.js
@@ -1,51 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
module.exports = function(grunt) {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* grunt release or grunt release:patch increment the patch number
|
|
||||||
* grunt release:minor increments the minor version number
|
|
||||||
* grunt release:major increments the major version number
|
|
||||||
*
|
|
||||||
|
|
||||||
* grunt readme to generate the readme (you might need to do grunt repos first)
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
require('time-grunt')(grunt);
|
|
||||||
|
|
||||||
grunt.initConfig({
|
|
||||||
jshint: {
|
|
||||||
options: {
|
|
||||||
jshintrc: '.jshintrc'
|
|
||||||
},
|
|
||||||
all: [
|
|
||||||
'Gruntfile.js',
|
|
||||||
'lib/**/*.js',
|
|
||||||
'test/**/*.js'
|
|
||||||
]
|
|
||||||
},
|
|
||||||
release: {
|
|
||||||
github: {
|
|
||||||
repo: 'dylang/node-rss',
|
|
||||||
accessTokenVar: 'GITHUB_ACCESS_TOKEN'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
require('load-grunt-tasks')(grunt);
|
|
||||||
|
|
||||||
grunt.registerTask('lint', [
|
|
||||||
'jshint'
|
|
||||||
]);
|
|
||||||
|
|
||||||
grunt.registerTask('default', [
|
|
||||||
'lint'
|
|
||||||
]);
|
|
||||||
|
|
||||||
grunt.registerTask('pre-publish', [
|
|
||||||
'lint',
|
|
||||||
'repos',
|
|
||||||
'readme'
|
|
||||||
]);
|
|
||||||
};
|
|
||||||
Binary file not shown.
Reference in New Issue
Block a user