Skip to content

Commit

Permalink
Remove jscs
Browse files Browse the repository at this point in the history
  • Loading branch information
TooAngel committed Jul 17, 2018
1 parent ceb6080 commit 980d3f0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 458 deletions.
8 changes: 0 additions & 8 deletions .jscsrc

This file was deleted.

14 changes: 5 additions & 9 deletions Gruntfile.js
Expand Up @@ -19,7 +19,6 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-screeps');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.loadNpmTasks('grunt-jscs');
grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-uglify');
Expand Down Expand Up @@ -48,9 +47,6 @@ module.exports = function(grunt) {
mochaTest: {
src: ['test/**/*.js'],
},
jscs: {
src: 'src/*.js',
},
eslint: {
check: {
src: 'src/*.js',
Expand Down Expand Up @@ -220,11 +216,11 @@ module.exports = function(grunt) {
});

grunt.log.writeln(new Date().toString());
grunt.registerTask('default', ['eslint:fix', 'jshint', 'jscs', 'clean', 'copy:uglify', 'copy:main', 'copy:profiler', 'screeps']);
grunt.registerTask('release', ['eslint:fix', 'jshint', 'jscs', 'clean', 'uglify', 'copy:main', 'requireFile', 'sync']);
grunt.registerTask('local', ['eslint:fix', 'jshint', 'jscs', 'clean', 'copy:uglify', 'copy:main', 'copy:profiler', 'sync']);
grunt.registerTask('test', ['eslint:check', 'jshint', 'jscs', 'exec:test_on_private_server']);
grunt.registerTask('dev', ['eslint:fix', 'jshint', 'jscs']);
grunt.registerTask('default', ['eslint:fix', 'jshint', 'clean', 'copy:uglify', 'copy:main', 'copy:profiler', 'screeps']);
grunt.registerTask('release', ['eslint:fix', 'jshint', 'clean', 'uglify', 'copy:main', 'requireFile', 'sync']);
grunt.registerTask('local', ['eslint:fix', 'jshint', 'clean', 'copy:uglify', 'copy:main', 'copy:profiler', 'sync']);
grunt.registerTask('test', ['eslint:check', 'jshint', 'exec:test_on_private_server']);
grunt.registerTask('dev', ['eslint:fix', 'jshint']);
grunt.registerTask('deploy', ['clean', 'copy:uglify', 'copy:main', 'copy:profiler', 'screeps']);
grunt.registerTask('requireFile', 'Creates an empty file', () => {
grunt.file.write('dist/require.js', '');
Expand Down

0 comments on commit 980d3f0

Please sign in to comment.