mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-01 04:50:59 +08:00
Removing error-logger exclude as it didn't actually work. Removing linter for now
Summary: Almost there ... Test Plan: ... run the build Reviewers: evan Reviewed By: evan Differential Revision: https://phab.nylas.com/D3597
This commit is contained in:
parent
dc25d1f180
commit
beae37a26c
2 changed files with 2 additions and 2 deletions
|
@ -67,5 +67,5 @@ module.exports = (grunt) => {
|
|||
|
||||
grunt.registerTask('build', ['setup-travis-keychain', 'packager']);
|
||||
grunt.registerTask('lint', ['eslint', 'lesslint', 'nylaslint', 'coffeelint', 'csslint']);
|
||||
grunt.registerTask('ci', ['lint', 'build'].concat(postBuildSteps));
|
||||
grunt.registerTask('ci', ['build'].concat(postBuildSteps));
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ module.exports = (grunt) => {
|
|||
grunt.config.merge({
|
||||
eslint: {
|
||||
options: {
|
||||
ignore: ['src/K2/packages/local-private/src/error-logger-extensions/*.js'],
|
||||
ignore: false,
|
||||
configFile: 'build/config/eslint.json',
|
||||
},
|
||||
target: grunt.config('source:es6'),
|
||||
|
|
Loading…
Reference in a new issue