UNPKG

362 BJavaScriptView Raw
1var config = require('./config');
2var ERROR = config.ERROR;
3
4/**
5 * ### Ruleset: Strict Mode
6 *
7 * These rules relate to using strict mode.
8 *
9 * @see http://eslint.org/docs/rules/#strict-mode
10 */
11module.exports = {
12 rules: {
13 // `'use strict';` is a job for transform tools
14 // and using it explictly will break them.
15 strict: [ERROR, 'never']
16 }
17};