Skip to content

Commit

Permalink
🐛 Fix invalid config
Browse files Browse the repository at this point in the history
  • Loading branch information
gluons committed May 24, 2017
1 parent bb0132c commit d375cff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import isProd from './utils/is-prod';

const config = require('./tslint.json');

config['no-console'] = [isProd()];
config['no-debugger'] = isProd();
config.rules['no-console'] = [isProd()];
config.rules['no-debugger'] = isProd();

export default config;

0 comments on commit d375cff

Please sign in to comment.