Skip to content

Commit

Permalink
add strict statements for node 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean King committed Aug 1, 2017
1 parent cac4e3c commit 8abe091
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/cmd.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/usr/bin/env node
/*eslint no-console: 0, no-undef: 0*/

'use strict';

const fs = require('fs');
const read = require('read-file-stdin');
const write = require('write-file-stdout');
Expand Down
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

const postcss = require('postcss');

const PLUGINS = [
Expand Down
2 changes: 2 additions & 0 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* eslint-disable */

'use strict';

const postcss = require('postcss');
const expect = require('chai').expect;
const fs = require('fs');
Expand Down

0 comments on commit 8abe091

Please sign in to comment.