Skip to content

Commit

Permalink
chore(lint): use strict rule
Browse files Browse the repository at this point in the history
  • Loading branch information
blond committed Aug 7, 2016
1 parent b51685b commit 9eee0d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
parserOptions:
ecmaVersion": 6,
sourceType: module
ecmaVersion": 6

env:
node: true
es6: true

extends: pedant

rules:
strict: [error, global]
2 changes: 2 additions & 0 deletions test/empty.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

const test = require('ava');

const empty = require('../lib/empty');
Expand Down

0 comments on commit 9eee0d9

Please sign in to comment.